磁碟配額
阿新 • • 發佈:2020-10-04
配置配額系統 。概述 在核心中實現 啟用時基於每個檔案系統的 可以為組或使用者設定單獨的策略 限制塊或節點數量 同時實現軟和硬限制 。初始化 分割槽掛載選項:usrquota,grpquota 初始化資料庫:quotacheck -cugm /filesystem //c建立,u使用者,g組,m網路裝置媒體裝置等
操作步驟: #parted /dev/sda mkpart logical ext3 16.4GB 20GB //建立一個分割槽 #mkfs.ext3 /dev/sda5 //格式化分割槽 #mkdir /shared //建立共享資料夾 #mount /dev/sda5 /shared //掛載sda5到掛載點 #mount -o remount,usrquota /shared //重新掛載並配置磁碟配額 #quotacheck -cum /shared/ //配額掃描 #file /shared/aquota.user #quotaon /shared/ //開啟磁碟配額,啟用
設定對使用者的配額 實現 啟動或停止配額:quotaon,quotaoff 直接編輯配額:edquota username //這種編輯方式是在vim中編輯 從shell中: setquota username 4096 5120 40 50 /foo //通過非互動式程式設計更方便 從已定義使用者的原型中複製: edquota -p user1 user2 //將user1的配額方式複製到user2使用者
報告磁碟配額的狀態 。列印報告 。使用者的檢視:quota 。Quota摘要資訊:repquota -a 。其他工具:warnquota
#touch for.visitor.{1...17}.txt //建立for.visitor.*.txt檔案17個