I want to enable quotas.
My fstab currently has:
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=97439827-cdb6-4406-8403-76ab1de7a3b0 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=194bd177-cba0-415d-b45d-bd87b7bf446e none swap sw 0 0
durrantm:~/Dropbox/96_2013/work/code
$
If I want to add usrquota,grpquota to enable user and group quotas, do I put them after errors=remount-rov, e.g.
errors=remount-rov,usrquota,grpquota
remount-rovis a typo, should beremount-ro- be very, very careful about typing and other mistakes when editing /etc/fstab - you can easily make your system unbootable. such problems are easily fixable, but require a good understanding of the linux boot process and at least intermediate level unix command-line skill, as well as a methodical non- panic-prone approach.