tags:

views:

292

answers:

3

My development team uses a Ubuntu 6.06 LTS Server VMware image as our development environment. It has our development stack on it. I would like to upgrade that to Ubuntu 8.10 Desktop (Note: Desktop, not Server) . . . while not breaking any of the development stack in the original image. The development stack uses apt-get packages in the 6.06 distro.

+2  A: 

A direct upgrade from 6.06 to 8.10 is not supported. An upgrade from 6.06 to 8.04 should work, and an upgrade from 8.04 to 8.10 should work. Since you are using VMs I would strongly recommend that you take a snapshot before you attempt the upgrade.

Take time to check google, ubuntu forums, and ubuntu wiki for the specific packages you use. for upgrade issues before attempting this.

Zoredache
+6  A: 

sudo apt-get install ubuntu-desktop

And you're good to go! You might have a small number of things going awry in the upgrade - one thing that happened to me going to 8.04 was that trac was configured differently, but happiness was just a Google search away.

Paul Dixon
After doing the network upgrade to 8.04 Server LTS, my network connections do not work. eth0 exists. But, it does not have an IP addess. I think this could be a solutions. But, there is something breaking my network connectivity.
Fred
Double check /etc/network/interfaces and try /etc/init.d/networking restart after making any changes.
Paul Dixon
yep. checked and restarted. Still no good. Have Googled and tried a lot of different solutions. Not sure what to do. I am going to try the network upgrade again. There may have been something I chose during the install process that was wrong.
Fred
A: 

You will also need to install another kernel, because Ubuntu Server comes with a kernel configured for servers, not desktops. You can do this with, for example, sudo apt-get install linux-image-generic

dmityugov