在Linux中限制用戶(hù)空間
⒈開(kāi)啟系統(tǒng)Quota功能:
1 修改/etc/fstab文件,2 下面是我在我的系統(tǒng)上設(shè)定的值:
#device directory type options
/dev/hda1 / ext2 default 1 1
/dev/hda2 /usr ext2 default 1 1
/dev/hda3 /home ext2 default,usrquota,grpquota 1 1
下畫(huà)線(xiàn)部分(usrquota,grpquota)為另加的部分
3 修改/etc/rc.d/rc.local文件,在文件的最后面加入下面語(yǔ)句:
if
[ -x /usr/sbin/quotaon ]
then
echo Quota now is turning on
/usr/sbin/quotaon -avug
4 在quota所在目錄(本例為/usr/local/bin)執(zhí)行quotacheck -avug,這時(shí)Quota開(kāi)始檢查所有子目錄并建立兩個(gè)文件:quota.user,quota.group
5 建立 quota.user 記錄
quota 記錄檔(quota.user) 應(yīng)該由 root 擁有,即 root 有讀寫(xiě)的權(quán)限而其他任何 人都沒(méi)有。以 root身份登錄Linux服務(wù)器,進(jìn)入想要啟用 quota 分區(qū)最上層,即如想在/usr建立quota管理:
[root@Server/usr]#touch /partition/quota.user
#chmod 600 /partition/quota.user
6 重新啟動(dòng)計(jì)算機(jī)
⒉設(shè)定用戶(hù)或用戶(hù)組的空間限定
?、僭O(shè)定用戶(hù)的磁盤(pán)限制:edquota -u 用戶(hù)名
如我系微機(jī)室設(shè)有一帳戶(hù)wlx01,當(dāng)使用命令edquota -u wlx01后出現(xiàn)Vi界面,如下所示:
Quotaa for user wlx01:
/dev/hda3:blocks in use:0,limits(soft=0,hard=0)
inodes in use:9,limits(soft=0,hard=0)
blocks in use 是使用者在某個(gè)分割區(qū)上已經(jīng)使用的區(qū)塊總數(shù)(以千位元組為單位) , “inodes in use 是使用者在某個(gè)分割區(qū)上所擁有的文件總數(shù)。其中只需修改soft和hard兩項(xiàng)后的值,單位都是kb。Soft指定占用空間達(dá)到多少時(shí)給以警告,hard則是為用戶(hù)分配的可用空間大小
?、谠O(shè)定用戶(hù)組的磁盤(pán)限制:edquota -g 用戶(hù)組
?、壑貜?fù)操作:當(dāng)以設(shè)定某個(gè)用戶(hù)而想重復(fù)在其他用戶(hù)上時(shí):
edquota -p 已設(shè)定用戶(hù) 需設(shè)定用戶(hù)
當(dāng)使用 edquota -p wlx01 * 時(shí)所有用戶(hù)都會(huì)與wlx01一樣
⒊常用命令:
Repquota
edquota ?Ct:對(duì) quota 使用者實(shí)行軟性限制之前的時(shí)間限制??梢允褂玫臅r(shí)間單位是秒、分、小時(shí)、日、星期、以及月。軟性限制指出 quota 使用者在分割區(qū)上擁有的磁盤(pán)用量總數(shù)。但是合并使用緩沖期間的時(shí)候,它的動(dòng)作就如同一道臨界線(xiàn),當(dāng) quota
使用者超越時(shí)便發(fā)出有關(guān)他即將違犯 quota 的警告。
Time units may be: days, hours, minutes, or seconds
Grace period before enforcing soft limits for users:
/dev/hda2: block grace period: 0 days, file grace period: 0days
0 days 這個(gè)部份可變更為覺(jué)得合理的任何期限。
repquota -a : Repquota 產(chǎn)生文件系統(tǒng)關(guān)于的quota信息
Block limits File limits
User used soft hard grace used softhard grace
root -- 175419 0 0 14679 00
bin -- 18000 0 0 735 00
uucp -- 729 0 0 23 00
man -- 57 0 0 10 00
user1 -- 13046 15360 19200 806 15002250
user2 -- 2838 5120 6400 377 10001500
Quotaon 用來(lái)打開(kāi) quota 的計(jì)算; quotaoff 則是將其關(guān)閉,它們是在系統(tǒng)啟動(dòng)與關(guān)機(jī)時(shí)執(zhí)行的。
Quota :顯示用戶(hù)的磁盤(pán)使用情況和上限。
參數(shù) 使用說(shuō)明
-g 顯示用戶(hù)所在組的組配額
-u 顯示用戶(hù)配額
-v 顯示沒(méi)有空間分配的文件系統(tǒng)情況
-q 顯示使用情況超過(guò)配額的簡(jiǎn)要信息
評(píng)論