Posts

Showing posts with the label Updates

Can't Upgrade Ubuntu 18.04 To 20.04 Because Of "Please Install All Available Updates For Your Release Before Upgrading" Error

Answer : sequence from 18.04 to 20.04 sudo apt update sudo apt upgrade sudo apt dist-upgrade sudo apt autoremove sudo do-release-upgrade -d -f DistUpgradeViewGtk3 Follow onscreen instruction. Good luck! I was also experiencing the same issue. However, when I ran the usual upgrade commands ( sudo apt upgrade , sudo apt full-upgrade , sudo apt-get dist-upgrade ), they were all reporting that there are no packages to upgrade and no held packages : 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. In the end, I copied the file /usr/bin/do-release-upgrade to my home and modified it as follows: for pkg in upgradable: if 'Phased-Update-Percentage' in pkg.candidate.record: # P-U-P does not exist if it is fully phased continue else: install_count += 1 print(pkg) # <--- ADD THIS LINE # one upgradeable package is enough to stop the dist-upgrade # break # <--- COMMENT THIS LINE OUT This change will print the names of all ...