Hi, I'm doing a perfect install on a centos 5 distro and the fstab file is not exactly like the perfect install documentation. My fstab file looks like this : LABEL=/ / ext3 defaults 1 1 LABEL=/boot1 /boot ext3 defaults 1 2 devpts /dev/pts devpts gid=5,mode=620 0 0 tmpfs /dev/shm tmpfs defaults 0 0 proc /proc proc defaults 0 0 sysfs /sys sysfs defaults 0 0 LABEL=/tmp1 /tmp ext3 defaults 1 2 LABEL=SWAP-hda2 swap swap defaults 0 0 I'm trying to do the quota setup part on page 4, so is the line I edit to add quota the very first line? It looks like this on the perfect install : /dev/VolGroup00/LogVol00 / ext3 defaults,usrquota,grpquota 1 1 So I'm guessing I need to add the ",userquota,grpquota" to the first line of my fstab file essentially making it like this : LABEL=/ / ext3 defaults,usrquota,grpquota 1 1 Thanks for yoru help, I'm just confused as to why the first column is different. Thanks