Home > Article > Operation and Maintenance > How to install linux software
How to install linux software
Linux software needs to be installed on the Linux system. The installation method is introduced below:
1. Install through the graphical interface
First download the installation package, and then double-click it
It will open it in the application market, and then click to install it
2. Install it in the terminal
Download the binary package with a suffix such as .tar
Use the command to move the software package to the /usr/local directory.
mv packageName.tar /usr/local
Decompression
tar -xvf packageName.tar
After execution, the contents of the compressed package will be in packageName. At this time, we can establish a soft link to access the program from all paths
ln -s /usr/local/packageName/bin/可执行文件 /use/local/bin/可执行文件
Note: The above executable file is the main program.
This way you can open the program through executable file.
Recommended: linux basic tutorial
The above is the detailed content of How to install linux software. For more information, please follow other related articles on the PHP Chinese website!