DEV Community

wanglei
wanglei

Posted on

Obtaining and Verifying an Installation Package

Procedure
Download the installation package of the corresponding platform from the openGauss community.

Log in to the openGauss community and download the latest installation package of the corresponding platform. For individual developers or non-enterprise-level environments, download the simplified installation package (without installing components such as the OM).
Click Download.
Check the installation package.

Decompress the installation package and check whether the installation directory and files are complete. Run the following commands in the directory where the installation package is stored:

mkdir openGauss
tar -jxf openGauss-x.x.x-openEuler-64bit.tar.bz2 –C openGauss
ls -lb openGauss/
Enter fullscreen mode Exit fullscreen mode

Run the ls command to display information similar to the following:

total 90296
drwx------ 3 root root     4096 Mar 31 21:18 bin
drwx------ 3 root root     4096 Mar 31 21:18 etc
drwx------ 3 root root     4096 Mar 31 21:18 include
drwx------ 4 root root     4096 Mar 31 21:18 jre
drwx------ 5 root root     4096 Mar 31 21:18 lib
drwx------ 5 root root     4096 Mar 31 21:18 share
drwx------ 2 root root     4096 Mar 31 21:18 simpleInstall
-rw------- 1 root root       32 Mar 31 21:18 version.cfg
Enter fullscreen mode Exit fullscreen mode

Top comments (0)