[IT 알아보기]/IT 소식

[그린IDC]quota 설정

이호스트ICT 2011. 5. 17. 14:33

1. /etc/fstab수정
이전  LABEL=/home            /home                  ext3    defaults        1 2
이후  LABEL=/home            /home                  ext3    defaults,usrquota    1 2
이로서 각 계정마다 쿼터를 걸 수 있다.

2. /home에 aquota.user생성
[root@localhost home]# touch aquota.user

3. 파일 시스템 리마운트
[root@localhost home]# mount -o remount,rw /home

4. 쿼터 체크
[root@localhost home]# quotacheck -avug

5. 쿼터온
[root@localhost home]# quotaon -avug

6. 쿼터설정
[root@localhost home]# edquota test
[전]
Disk quotas for user test (uid 500):
 Filesystem                  blocks      soft      hard    inodes    soft    hard
 /dev/hda7                        20          0          0          5            0        0

[후]
Disk quotas for user lcm (uid 500):
 Filesystem                  blocks      soft      hard    inodes    soft    hard
 /dev/sdb                        20    100000    100000          5        0        0

lcm 계정의 용량을 100Mbyte로 제한 한다