Synaptic Package Manager (also known as "New Software Package Manager ")View code1PuliceStatic Void
Synaptic)Is an advanced software package manager that manages every software and package component installed in your system. In addition, it can search for software packages that are closely related to you by keyword, so that you can easily "tag", "application", "Install", and "Uninstall ", you can quickly index and export the installation script ......
"Program"→" System Management "→" software management "→" new software management ".
After starting this program, we can see that it is a little more complicated to use than "gnome-app-install", but it is much more powerful. For how to use it, see this tutorial.
APT manager in the command line
This is a text-based software management method. You only need to open the terminal window:"Program" → "attachment tool" → "terminal"And then enter the following command:
Sudo apt-Get update
This command automatically updates the Software List and indexes in the system based on the address list in/etc/APT/sources. List. After this action is completed, you can run the following command:
Software Upgrade:
Sudo apt-Get upgrade
System Upgrade
Sudo apt-Get dist-Upgrade
Search for a software package (if you cannot remember the real name of the software package, you can use keywords ):
Apt-cache searchPackagename
In addition, you can save the search results in a text file(This file is saved in your current user directory by default ):
Apt-cache searchPackagename> software.txt
Install software:
Sudo apt-Get installPackagename
Force install software(Suitable for some special cases ):
Sudo apt-get-F installPackagename
Download Software source code:
Sudo apt-Get SourcePackagename
Compile the configuration for source code:
Sudo apt-Get build-DepPackagename
Download the software source code and package it into a deb package
Sudo apt-get-BPackagename
Directly compile and install the source code
First install the support package
Sudo apt-Get install apt-build
Then the compilation and installation will be automated.
Sudo apt-buildPackagename
Delete software:
Sudo apt-Get removePackagename
Automatically delete all unused software:
Sudo apt-Get autoremove
Delete the software package and configuration file:
Sudo apt-Get -- purge removePackagename
Diagnostic Problem software package:
Sudo apt-Get check
For more help, you can call up:
Apt-get help