Ubuntu Upgrade: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 58: Line 58:
| valign="top" |
| valign="top" |
* [https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/2055012 Ubuntu » Upgrade from 22.04 to 24.04 DNS Failed]
* [https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/2055012 Ubuntu » Upgrade from 22.04 to 24.04 DNS Failed]
* [https://askubuntu.com/questions/134946/ Ubuntu » Install Packages From an ISO File]
* [https://askubuntu.com/questions/134946/ Ubuntu » Install Packages From an ISO]
* [https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-all-packages-from-iso-file-without-physical-cd-779371/ Ubuntu » Install All Packages From ISO]
* [https://askubuntu.com/questions/67764/ Ubuntu » Remove & Reinstall GNOME]
* [https://askubuntu.com/questions/67764/ Ubuntu » Remove & Reinstall GNOME]
* [https://sypalo.com/how-to-upgrade-ubuntu Ubuntu » Upgrade to 24.04]
* [https://sypalo.com/how-to-upgrade-ubuntu Ubuntu » Upgrade to 24.04]

Revision as of 12:33, 31 May 2024

sudo apt update
sudo apt upgrade

Upgrade » 22.04 » 24.04

sudo sed -i 's|jammy|noble|g' /etc/apt/sources.list
sudo apt update && sudo apt upgrade
sudo apt dist-upgrade
sudo apt autoremove
sudo apt clean 
sudo reboot
sudo apt install xorg gnome gnome-shell --no-install-recommends
sudo apt install --reinstall ubuntu-gnome-desktop
sudo reboot

Upgrade » 23.10 » 24.04

sudo sed -i 's|mantic|noble|g' /etc/apt/sources.list
sudo apt update && sudo apt upgrade
sudo apt dist-upgrade
sudo apt autoremove
sudo apt clean 
sudo reboot
sudo apt install xorg gnome gnome-shell --no-install-recommends
sudo apt install --reinstall ubuntu-gnome-desktop
sudo reboot

References