【Linux】Linux檔案系統管理7 磁碟配額管理
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 『學了就忘』Linux檔案系統管理 — 63、磁碟配額介紹Linux
- 『學了就忘』Linux檔案系統管理 — 64、磁碟配額的配置步驟Linux
- 在Linux中,如何管理磁碟配額?Linux
- Linux 磁碟分割槽及檔案系統管理Linux
- Linux磁碟管理與檔案系統(關於磁碟方面)Linux
- Linux—磁碟配額,管理LVM邏輯卷LinuxLVM
- 【Linux基礎入門】Linux磁碟與檔案系統管理命令!Linux
- Linux系統磁碟管理Linux
- Linux Centos系統 磁碟分割槽和檔案系統管理 (深入理解)LinuxCentOS
- Linux磁碟配額配置Linux
- 磁碟管理與檔案系統
- 『學了就忘』Linux檔案系統管理 — 57、Linux檔案系統介紹Linux
- Linux磁碟管理Linux
- Linux 磁碟管理Linux
- Linux檔案管理Linux
- Linux使用者資訊查詢及磁碟與檔案系統管理命令!Linux
- linux之磁碟管理Linux
- Linux 磁碟操作管理Linux
- Linux 下的檔案管理&管理系統中的輸出輸入Linux
- linux系統管理Linux
- Linux系統上常見的檔案管理類命令Linux
- Linux的LVM與磁碟配額(理論+配寫)LinuxLVM
- 在Linux中,如何在Linux中進行資源配額管理?Linux
- K8S-磁碟配額管理-整理K8S
- LVM與磁碟配額管理 so easy come onLVM
- Linux之檔案管理(一)Linux
- Linux系統管理——Linux簡介Linux
- Linux系統管理之程式管理Linux
- Linux系統管理之硬碟管理Linux硬碟
- 『學了就忘』Linux檔案系統管理 — 58、常用硬碟管理相關命令Linux硬碟
- Linux系統管理-系統概述Linux
- Linux指令入門-磁碟管理Linux
- Linux QtFM 檔案管理器LinuxQT
- Linux基礎之檔案管理Linux
- Linux檔案和目錄管理Linux
- Linux檔案管理相關命令Linux
- Linux檔案及目錄管理Linux
- Linux指令入門-檔案管理Linux
- 『學了就忘』Linux檔案系統管理 — 60、Linux中配置自動掛載Linux