Related pages
Command | Objective | Example |
---|---|---|
apt install PACKAGE apt install -y PACKAGE | Performs the requested action on one or more packages specified via regex, glob or exact match. | |
apt -f install | ||
apt install --just-print PACAGE | Install test | |
apt update | update is used to download package information from all configured sources. | |
apt upgrade | upgrade is used to install available upgrades of all packages currently installed on the system | |
apt full-upgrade | full-upgrade performs the function of upgrade but will remove currently installed packages if this is needed to upgrade the system as a whole. |
apt-get update # Update list of packages apt-get upgrade # Update installed packages
Command | Objective | Example |
---|---|---|
apt remove PACKAGE | ||
apt remove --purge PACKAGE | ||
apt autoremove | ||
apt autoclean | ||
apt clean |
Command | Objective | Example |
---|---|---|
apt search PATTERN | apt search php | |
apt list PACKAGE | apt list php | |
apt list --installed | ||
apt list --upgradeable | ||
apt show PACAGE apt info PACAGE | Package Detail Infomation | apt show php apt info golang |
echo "PACAKAGE hold" | dpkg --set-selections | ||
echo "PACAGE install" | dpkg --set-selections | ||
cat /var/log/apt/history.log |