Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I would like to know how to upgrade to Ubuntu 10.10 from 10.04 from the cli?

share|improve this question

3 Answers

up vote 29 down vote accepted

You'll first need to make sure update-manager-core is present (it may already be installed):

sudo apt-get install update-manager-core

Next, run:

sudo do-release-upgrade

You may need to check /etc/update-manager/release-upgrades and change the line:

Prompt=lts

to:

Prompt=normal

for the release to show up.

share|improve this answer

You can do

sudo do-release-upgrade

for command line updating

(This is actually the same as for Ubuntu Server)

share|improve this answer

if you run the command 'sudo do-release-upgrade -d' through ssh then use a screen, because the upgrade process will turn off ssh -> close the default port and open a new one ( it will inform you of this new port ), so:

ssh USER@HOST

screen -S upgrade

sudo do-release-upgrade -d

open a new terminal on client computer:

ssh -p PORT USER@HOST

screen -d

screen -r upgrade

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.