Upgrade Ubuntu Hardy Heron Server 8.04 To Ubuntu Server 8.10 Intrepid Ibex

Q. How do I upgrade my server system from Ubuntu hardy heron version 8.04 to Ubuntu Linux server 8.10 Intrepid Ibex over ssh session?

A. You can do network upgrade for Ubuntu Servers from 8.04 to 8.10 using a shell prompt over remote ssh session as follows:

Ubuntu Server 8.10 Network Upgrade

Login using ssh for remote server or open console for local server

WARNING! These examples are for SERVER edition. For desktop upgrade see this FAQ.

Apply patches

First, make sure your server is up to date with 8.04 version. Type the following two command to apply all upgrades:
$ sudo apt-get update
$ sudo apt-get upgrade

Change release

Open /etc/update-manager/release-upgrades file:
$ sudo bash
# vi /etc/update-manager/release-upgrades

Find line:
Prompt=lts
Change to:
Prompt=normal
Save and close the file. This will set release update from LTS (long support version) to latest 8.10 version.

Ubuntu 8.10 Server Upgrade

Type the following command to upgrade update manager, enter:
$ sudo apt-get install update-manager-core
Above will install / update update-manager-core if it is not already installed. Once installed just update system using the following command. Make sure you have backup of all important data:
$ sudo do-release-upgrade
Now, just follow the on-screen instructions.

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 6 comments… read them below or add one }

1 barryp 10.31.08 at 4:23 pm

I tried this but on running do-release-upgrade got:

Checking for a new ubuntu release
No new release found

Editing /etc/update-manager/release-upgrades to change Prompt=lts to Prompt=normal allowed do-release-upgrade to offer an update to 8.10

2 vivek 10.31.08 at 4:49 pm

barryp,

The faq has been updated. I appreciate your post.

3 nme 11.03.08 at 1:03 pm

after

do-release-upgrade

i got

Checking for a new ubuntu release
No new release found

which is a bit misleading

reason – machine had no network access through NAT, what was required nor documented anywhere, instead try:

http_proxy="http://ip:port" do-release-upgrade

should work.

4 Eric 11.05.08 at 5:52 pm

Thanks!

5 Serg 02.17.09 at 1:09 pm

sudo http_proxy=”http://kc.zenit.ru:3128″ do-release-upgrade
Checking for a new ubuntu release
No new release found

6 0x3333 04.10.09 at 1:38 pm

sudo http_proxy=”http://USER:PASS@kc.zenit.ru:3128″ do-release-upgrade

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tagged as: , , , , , , , , , , , , , , , ,

Previous post: Upgrade From Ubuntu Hardy Heron 8.04 To Ubuntu 8.10 Intrepid Ibex

Next post: Bash For Loop Examples