I have a question about /etc/fstab

Dr.php

Verified User
Joined
Jun 12, 2009
Messages
5
Hi,

If i wan to add usrquota,grpquota in /etc/fstab.

this is the content of this file :

========================================

/dev/xvda1 / ext3 defaults,errors=remount-ro 1 1
/dev/xvda2 swap swap defaults 0 0
tmpfs /dev/shm tmpfs defaults 0 0


=====================================

how can i add it in ?

the names of the files which are inside "/dev/ " are in attachment ..

I hope you to help me in this

Thank you
 

Attachments

Just put it next to the other options on the partition you want. Edit the file with an editor like nano or vi. You will have to reboot after making changes.

Like:

Code:
/dev/xvda1 / ext3 defaults,errors=remount-ro[COLOR="#FF0000"],usrquota,grpquota[/COLOR] 1 1
 
Back
Top