disk quotas are a constant hassle for me and I don't need them, what is the best way to permanently disable them on an entire server? Does:
quotaoff -av
work and will this keep the quotas disabled even after a reboot?
thanks!
disk quotas are a constant hassle for me and I don't need them, what is the best way to permanently disable them on an entire server? Does:
quotaoff -av
work and will this keep the quotas disabled even after a reboot?
thanks!
No. You should remove the usrquota parameter from your disks in /etc/fstab to achieve that.
Jonathan Michaelson
Need your cPanel servers secured and tuned?
cPanel Server Configuration, Security, Recovery and Antivirus/AntiSpam Services
Developers of the most effective (and free) Firewall & Security Solution for cPanel Servers - csf
http://www.configserver.com
To achieve this goal, you'll need to re-compile your Kernel with quota off.Originally Posted by chilihost
Andy Reed
RHCE and CCNA
ServerTune.com
AFAIK, No, you don't. You only need to make the fstab modification I mentioned and then turn off quotas and remove the quota files as I mentioned.
Jonathan Michaelson
Need your cPanel servers secured and tuned?
cPanel Server Configuration, Security, Recovery and Antivirus/AntiSpam Services
Developers of the most effective (and free) Firewall & Security Solution for cPanel Servers - csf
http://www.configserver.com
thank you I will try removing that parameter.
My /etc/fstab file looks like this:
so should I just remove that ,usrquota bit?Code:LABEL=/ / ext3 defaults,usrquota 1 1 LABEL=/boot /boot ext2 defaults 1 2 none /dev/pts devpts gid=5,mode=620 0 0 LABEL=/home2 /home2 ext3 defaults 1 2 none /proc proc defaults 0 0 none /dev/shm tmpfs defaults 0 0 /dev/hda2 swap swap defaults 0 0 /dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
thanks again.
Hello,Originally Posted by chilihost
Run the command
quotaoff -a
Then remove the entry userquota from fstab, It will help you![]()
perfect, thanks!