Ah, thanks very much Endolith What's happened is that when /boot was created, it wasn't properly cleaned up so it's not possible for blkid to determine the filesystem type (and thus the UUID)
Here's how to fix that: sudo -s (will give you a root shell) # tar czf /boot.tar.gz /boot # umount /boot # dd if=/dev/zero of=/dev/sda5 # mke2fs /dev/sda5 # blkid -p /dev/sda5 (this will give you a new UUID you can put in /etc/fstab) # mount /boot # tar xzf /boot.tar.gz -- Mounts in /etc/fstab cannot yet be mounted https://bugs.launchpad.net/bugs/505751 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
