I already had something similiar to what was in the /etc/fstab file in the guide.
I'm not sure what that UUID stuff in the example is
Code:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda1 during installation
UUID=92bceda2-5ae4-4e3a-8748-b14da48fb297 / ext3 errors=remount-ro,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0 0 1
# swap was on /dev/sda5 during installation
UUID=e24b3e9e-095c-4b49-af27-6363a4b7d094 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Here is my /etc/fstab/
Code:
/dev/xvda1 / ext3 errors=remount-ro,usrjquota=aquota.user,
grpjquota=aquota.group,jqfmt=vfsv0 0 1
/dev/xvda2 swap swap defaults 0 0
proc /proc proc defaults 0 0