1. 쿼터 지원 확인
# dmesg | grep quota
VFS: Disk quotas dquot_6.5.1
2. fstab 수정(usrquota,grpquota) 추가
# vi /etc/fstab
/dev/sdb1 /home ext3 defaults,usrquota,grpquota 1 2
# shutdown -r now
3.1 /home 디렉토리에 aquota.user aquota.group파일을 생성하고 퍼미션을 600으로 설정(자동)
# quotacheck -ugm /home
3.2 /home 디렉토리에 aquota.user aquota.group파일을 생성하고 퍼미션을 600으로 설정(수동)
# touch /home/aquota.user /home/aquota.group
# chmod 600 /home/aquota.*
4. remount
# mount -o remount /home
# quotaon -avug // 쿼터 활성화
/dev/sdb [/home]: group quotas turned on
/dev/sdb [/home]: user quotas turned on
# quotaon -p -a
group quota on /home (/dev/sdb) is on
user quota on /home (/dev/sdb) is on
5. isbyeon 사용자 쿼터 설정
# edquota -u username
Disk quotas for user isbyeon (uid 500):
Filesystem blocks soft hard inodes soft hard
/dev/hdb1 XXXXX 102400 102400 XXXXX 0 0
6. edquota -p isbyeon newuser // isbyeon과 동일한 쿼터값을 newuser에게 할당
7. repquota -a // Quota 확인
'Linux > CentOS' 카테고리의 다른 글
CentOS 6 em1을 eth0로 변경 (0) | 2012.11.07 |
---|---|
maximum open file limit (0) | 2012.10.31 |
CentOS 6.2에서 6.3으로 업데이트 (0) | 2012.10.30 |
특정 사용자 권한으로 명령어 실행 (0) | 2012.10.10 |
패스워드를 한줄로 변경 (0) | 2012.10.10 |
최근댓글