sudo apt remove
Second, use the rpm command to install the rpm installation package File
Installation steps:
1. Find the corresponding software package, such as xx.rpm, and download it to a directory;
2, cd the directory where xx.rpm is located;
3, sudo rpm -ivh xx.rpm. (Install and display the file information being installed and the installation progress)
Uninstallation steps:
1, sudo rpm -e xxSoftName. (-e can be replaced by –earse)
Use yum to install and uninstall online
sudo yum install sudo yum remove
3. Compile and install
1. Find the corresponding software package, such as xx.tar.gz, Download to a certain directory of this machine;
2, cd the directory where xx.tar.gz is located;
3, decompress: tar -xvf xx.tar.gz;
p>
4. cd into the decompressed file and: cd xx;
5. Configuration file: ./configure;
6. Start compiling: make;
p>
7. Install the generated binary file: make install.
Note: The specific installation method is subject to the README and other help files in the software source code.
Uninstallation steps:
1. In the source code package directory, the terminal executes: make uninstall.
The above is the software installation method of the more mainstream server Linux distributions, please Baidu for other Linux distributions.
For more Linux-related tutorials, please pay attention to the PHP Chinese website!
The above is the detailed content of the Linux installation software command. For more information, please pay attention to other related articles on 1024programmer.com!