【Linux】Linux檔案系統管理7 磁碟配額管理

海星星hktk發表於2016-01-01

Linux檔案系統管理7

磁碟配額管理

 

 作業系統:RHEL6.4 - 64位


1   掛載屬性中增加usrquota 

編輯/etc/fstab 開啟/software 磁碟配額

[root@rhel64 ~]# vi /etc/fstab

 

2   重新掛載檔案系統

[root@rhel64 ~]# mount

[root@rhel64 ~]# mount -o remount /software

[root@rhel64 ~]# mount

 

 

3   quotacheck對檔案系統進行磁碟配額檢查

[root@rhel64 ~]# quotacheck -cum /software


[root@rhel64 ~]# ll /software/

4    啟用檔案系統磁碟配額

[root@rhel64 ~]# quotaon /software

 

 

5   編輯使用者磁碟配額限制

[root@rhel64 ~]# edquota tom


block
單位是K  

 

6   tom使用者使用檔案系統 並檢視磁碟配額

[root@rhel64 ~]# chmod a+w /software/


[tom@rhel64 software]$
mkdir tomdir

[tom@rhel64 software]$ touch tomfile

[tom@rhel64 software]$ quota

 

 

7   root使用者檢視磁碟配額

[root@rhel64 ~]# repquota -a

 

8   實驗1 檔案大小達到磁碟配額限制

[tom@rhel64 software]$ dd if=/dev/zero of=/software/tomfile2 bs=1M count=110

 

[tom@rhel64 software]$ ls -lh

[tom@rhel64 software]$ quota

 

9   實驗2 i節點數達到磁碟配額限制

[tom@rhel64 software]$ rm -rf tom*

[tom@rhel64 software]$ quota

 

[tom@rhel64 software]$ mkdir tomdir{1,2,3,4}-{1,2,3,4,5}-{1,2,3,4,5}

[tom@rhel64 software]$ quota

 

[tom@rhel64 software]$ mkdir tomdir

 

 

10 關閉磁碟配額

[root@rhel64 ~]# quotaoff /software

 

修改/etc/fstab 刪除usrquota

[root@rhel64 ~]# vi /etc/fstab

[root@rhel64 ~]# mount -o remount /software/

[root@rhel64 ~]# mount

 


呂星昊
2016.1.1

 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29475508/viewspace-1969404/,如需轉載,請註明出處,否則將追究法律責任。

相關文章