The latest benchmarks of filesystem performance at Phoronix seem appealing. Using the Jaunty development version and the latest Linux 2.6.28 kernel, I was able to upgrade my filesystem from EXT3 to EXT4. So far, I haven’t really noticed anything vastly different, but it’s only been a short time with this new filesystem. Here’s wishing you a painless transition like mine.

Supposedly it’s best to refrain from doing this to your /boot filesystem

First, figure out what partition you want to change. You may first list the partitions to see what the device name is.
sudo fdisk -l
Look for the /dev/sd@# of your Linux partition where @ is a letter and # is a number. For example, mine was /dev/sda6. Once we know this, just run a few commands.
tune2fs -O extents,uninit_bg,dir_index /dev/sd@#
fsck -pf /dev/sd@#

Then we need to edit /etc/fstab so that it mounts as ext4 when we boot.

gksudo gedit /etc/fstab

Find the device that you converted to ext4 and change the ext3 reference to ext4. Save. Reboot. Enjoy ext4.

Note to self: file bug report in launchpad since gparted doesn’t recognize my ext4

screenshot-dev-sda-gparted