1. Update the software database:
Sudo apt-Get update
2. Search for the software you want:
Sudo apt-cache searchSoftwarename
3. Find the software you want to install from the search results, and then:
Sudo apt-Get installSoftwarenameyoufound
Note: The ITALIC is a command parameter and needs to be changed based on the software name you need to install.
---------------------------------------------------------
You can run the following command:
Sudo apt-Cache-H
To get more information.
---------------------------------------------------------
For example:
I want to install eclipse, but I don't know if it can be installed using the apt-GET command. The following operations:
1. sudo apt-Get update.
2. sudo apt-cache search eclipse
At this time, we can see that
3. Run the following command to install Eclipse:
Sudo apt-Get install eclipse
--- End