Howto upgrade debian: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= update from 10 to 11 = list all packages in hold status: sudo apt-mark showhold if any packages appear in the list, remove the hold status for each package: sudo apt-mark unhold [package_name]") |
|||
Line 4: | Line 4: | ||
if any packages appear in the list, remove the hold status for each package: | if any packages appear in the list, remove the hold status for each package: | ||
sudo apt-mark unhold [package_name] | sudo apt-mark unhold [package_name] | ||
upgrade all packages to the latest version: | |||
sudo apt update && sudo apt upgrade -y |
Revision as of 01:00, 4 May 2023
update from 10 to 11
list all packages in hold status:
sudo apt-mark showhold
if any packages appear in the list, remove the hold status for each package:
sudo apt-mark unhold [package_name]
upgrade all packages to the latest version:
sudo apt update && sudo apt upgrade -y