Como habilitar cotas no arquivo fstab?

1

Desejo ativar cotas.

Meu fstab atualmente tem:

# <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
$ 

Se eu quiser adicionar usrquota,grpquota para ativar cotas de usuários e grupos, eu as coloco depois de errors=remount-rov , por exemplo, errors=remount-rov,usrquota,grpquota

    
por Michael Durrant 12.09.2013 / 14:28

1 resposta

2

Como na página man de mount

Podemos definir apenas três opções em errors , ou seja, continue|remount-ro|panic

errors={continue|remount-ro|panic}

Define the behaviour when an error is encountered. (Either ignore errors and just mark the filesystem erroneous and continue, or remount the filesystem read-only, or panic and halt the system.) The default is set in the filesystem superblock, and can be changed using tune2fs(8).

Você só precisa adicionar assim:

/dev/sda1  /mount_point               ext4    usrquota,grpquota,errors=remount-ro 0       1

depois é só remontar a partição:

mount -o remount /mount_point

depois, verifique o comando mount

    
por 12.09.2013 / 14:33

Tags