I took the jump from Dapper (6.06) to Edgy (6.10) with quite a flawless upgrade initiated by:
$ gksu "update-manager -c"
Had to comment out the PLF repositories before I could do the upgrade.
## PLF REPOSITORY
# deb http://packages.freecontrib.org/ubuntu/plf dapper free non-free
# deb-src http://packages.freecontrib.org/ubuntu/plf dapper free non-free
The first thing I did after the upgrade was to enable the universe and multiverse repositories via Synaptics and run an upgrade and autoclean via aptitude to clean out any unused and downloaded packages:
$ sudo aptitude upgrade
$ sudo aptitude autoclean
Also noticed that the default shell had been changed to dash instead of the familiar bash on linux distros, so I removed the symbolic link for "/bin/sh" from dash to bash:
$ sudo rm -rf /bin/sh
$ sudo ln -s /bin/bash /bin/sh
The default video driver didn't quite work too well with my nvidia card and so installed nvidia-glx and enabled it.
$ sudo aptitude install nvidia-glx
$ sudo nvidia-glx-config enable
$ sudo nvidia-xconfig
With the nvidia glx driver and the new kernel installed, I edited "/etc/grub/grub.conf" to point to the new kernel:
title Ubuntu Edgy 386
root (hd0,2)
kernel /vmlinuz-2.6.17-10-386 ro root=/dev/mapper/vg00-lv00
initrd /initrd.img-2.6.17-10-386
Gave the system a reboot and everything seemed to be back to normal... but not until I opened up firefox and noticed the font rendering was blurred and ugly, unlike the crisp fonts on other application. Checked on some of the bug reports at launchpad.net and indeed found a fix there. The fix mentioned was to create a ".font.conf" file with the below contents in the home directory:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintfull</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>
Tomboy -- a wiki for the desktop had been made available by default with Edgy but did not show up anywhere in the Applications list so added it to the top panel from the list of Accessories available.
Last but not the least my boot time is now about 12 seconds on a 1.75Ghz cpu laptop with 1Gig of memory... all due to the new init system, upstart which is now the default.