LinuxLowerSoftware InstallationMethod summary:
1. Steps for installing the rpm package:
1. Find the corresponding software package, such as soft. version. rpm, and download it to a local directory;
2. Open a terminal and su-become the root user;
3. directory where cd soft. version. rpm is located;
4. Input rpm-ivh soft. version. rpm
Ii. deb package installation steps:
1. Find the corresponding software package, such as soft. version. deb, and download it to a local directory;
2. Open a terminal and su-become the root user;
3. directory where cd soft. version. deb is located;
4. Input dpkg-I soft. version. deb
How to install the third-party tar.gz source code package:
1. Find the corresponding software package, such as soft.tar.gz, and download it to a local directory;
2. Open a terminal and su-become the root user;
3. directory where cd soft.tar.gz is located;
4. tar-xzvf soft.tar.gz // a soft directory is usually generated.
5. cd soft
6../configure
7. make
8. make install
Installation Method of source code package of four slave tar.bz2:
1. Find the corresponding software package, such as soft.tar.bz2, and download it to a local directory;
2. Open a terminal and su-become the root user;
3. directory where cd soft.tar.bz2 is located;
4. tar-xjvf soft.tar.bz2 // a soft directory is usually generated.
5. cd soft
6../configure
7. make
8. make install
5. apt Installation:
1. Open a terminal and su-become the root user;
2. apt-cache search soft Note: soft is the name or related information of the software you are looking.
3. If soft. version is found in 2, use the apt-get install soft. version command to install the software.