I would like to upgrade my Ubuntu installation to Budgie from the OS presently on my computer (Ubuntu 17.04). How do I get the upgrade using the command line? I tried sudo apt-get ubuntu
, but received an error message stating that "ubuntu" is an unrecognized (invalid) command. What is the correct syntax for upgrade requests using the terminal?
Asked
Active
Viewed 1,792 times
0

SurvivalMachine
- 2,783

Jeff5613
- 37
sudo apt-get update
(to update your software [repo] lists), followed bysudo apt-get upgrade
(orsudo apt-get dist-upgrade
to allow more updates). You'll however likely run into issues as 17.04 is now well-past EOL, and the repos that were inarchive.ubuntu.com
are no inold-releases.ubuntu.com
, plus the 17.04 upgrade path was to 17.10 (which itself is EOL now too; though only days ago and its archives haven't moved yet). I'd suggest downloading a 18.04 Ubuntu-Budgie ISO & install that... – guiverc Jul 28 '18 at 03:31archive.ubuntu.com
toold-releases.ubuntu.com
I mentioned in first comment; also you need to remove any country codes (eg.us.archive.ubuntu.com
becomesold-releases.ubuntu.com
as country mirrors only apply for current releases). To update from terminal you'll have to go this route, but a re-install is easier... – guiverc Jul 28 '18 at 03:34sudo apt-get install budgie-desktop
and that's it – Sergiy Kolodyazhnyy Jul 28 '18 at 04:20