1

Quota

· 18년 전 · 1822

Quota

22.1 디스크 quota 설정
사용자들이 디스크 공간을 제한된 이상으로 사용하거나 시스템상에서 무제한적으로 디스크 공간을 낭비하지 않도록 한다.
각 사용자에게 일정한 디스크 공간을 할당하여 시스템의 성능을 향상시키고 효율적으로 관리할 수 있다.
커널 컴파일시 y
Quota support(CONFIG_QUOTA)

현재는 ext2 파일시스템에사만 quota를 지원

quota는 디스크를 두가지로 제한
1) 사용자가 가질 수 있는 inode 수
2) 디스크 블록의 수
3) 소프트와 하드 limits로 설정

22.2 기본 설정 - 사용자별 디스크 할당량 지정
[root @edu00 linux]#useradd linux
[root @edu00 linux]#passwd linux
[root @edu00 linux]# vi /etc/fstab
-------------------------------------------
/dev/hda8 /home ext2 defaults,usrquota(grpquota) 1 2
--------------------------------------------
[root @edu00 linux]#mount -o remount /home
: or 시스템 재부팅
[root @edu00 linux]#touch /home/quota.user
: Database Binary File
  
[root @edu00 linux]#chmod 600 /home/quota.user
[root @edu00 linux]#ls -l /home/quota*
[root @edu00 linux]#quotacheck /home
: 반드시 quotaoff /home 한 후에 하거나  시스템 down시에 한다.

[root @edu00 linux]#quotaon /home or quotaon -a
: /etc/rc.d/rc.sysinit에 설정이 포함되어 있다.
[root @edu00 linux]#edquota -t
: grace period 설정
-----------------------------------------------
Time units may be: days, hours, minutes, or seconds
Grace period before enforcing soft limits for users:
/dev/hda8:block grace period: 7 days, file grace period: 0 days
------------------------------------------------
[root @edu00 linux]#edquota (-u) linux
------------------------------------------------
Edit block and inode quota for user linux:
Device /dev/hda8 (/home):
Used 7070KB, limits: soft=10240 hard=15360 
: soft limit은 10M(10240KB), hard limit은 15M(15360KB)
Used 54 inodes, limits: soft=1000 hard=1500
: soft limit은 1000개, hard limit은 1500개)

[root @edu00 linux]#quota (-v) linux
[root @edu00 linux]#telnet 0
login:linux
Password:
[linux @edu00 linux]$cp -R /usr/share .
[linux @edu00 linux]$du -sh .
[linux @edu00 linux]$exit
[root @edu00 linux]#quota -v
[root @edu00 linux]#quota -q

 

 


[root @edu00 linux]#edquota -p linux (-u) test wind
: linux에 대한 설정을 test, wind에도 적용
[root @edu00 linux]#quota (-v) wind
[root @edu00 linux]#repquota -a
[root @edu00 linux]#repquota /home
[root @edu00 linux]#quotaoff -a
[root @edu00 linux]#quotacheck -a

22.3 그룹별 디스크 할당량 지정
서버에 프로젝트를 위한 공간을 할당해 주거나, 각 부서별로 공간을 나누어 주고자 할 경우에 그룹별로 디스크 할당량을 정한다.
[root @edu00 linux]#mkdir /home/ICLUB
[root @edu00 linux]#chgrp ICLUB /home/ICLUB
[root @edu00 linux]#chmod 770 /home/ICLUB
[root @edu00 linux]#ls -ld /home/ICLUB
[root @edu00 linux]#vi /etc/fstab
-----------------------------------------
/dev/hda8 /home ext2 defaults,usrquota,grpquota 1 2
------------------------------------------
[root @edu00 linux]#touch /home/quota.group
[root @edu00 linux]#chmod 600 /home/quota.group
[root @edu00 linux]#ls -l /home/quota*
[root @edu00 linux]#reboot
[root @edu00 linux]#edquota -g -t
Time units may be: days, hours, minutes, or seconds
Grace period before enforcing soft limits for groups:
/dev/hda8:block grace period: 7 days, file grace period: 0 days

[root @edu00 linux]#edquota -g ICLUB
Quotas for group ICLUB:
/dev/hda8: blocks in use:0, limits (soft = 12000, hard = 13000)
inodes in use:0, limits ( soft = 0, hard = 0)

 


[root @edu00 linux]#quotaon /home
[root @edu00 linux]#edquota -v -g ICLUB
[root @edu00 linux]#telnet 0
login:open
Password:
[open @edu00 open]$groups
[open @edu00 open]$newgrp ICLUB
[open @edu00 open]$groups
[open @edu00 open]$cd /home/ICLUB
[open @edu00 open]$cp -R /usr/share .
[open @edu00 open]$du -sh
[open @edu00 open]$exit
[root @edu00 linux]#quota -v -g ICLUB
[root @edu00 linux]#quota -q -g ICLUB
[root @edu00 linux]#repquota -a

 

[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 2,555
18년 전 조회 3,071
18년 전 조회 2,536
18년 전 조회 3,713
18년 전 조회 2,375
18년 전 조회 2,161
18년 전 조회 2,028
18년 전 조회 1,852
18년 전 조회 3,417
18년 전 조회 4,752
18년 전 조회 5,022
18년 전 조회 2,321
18년 전 조회 3,786
18년 전 조회 3,490
18년 전 조회 4,775
18년 전 조회 3,437
18년 전 조회 4,432
18년 전 조회 4,112
18년 전 조회 3,801
18년 전 조회 3,211
18년 전 조회 3,093
18년 전 조회 3,680
18년 전 조회 2,333
18년 전 조회 2,279
18년 전 조회 5,704
18년 전 조회 2,867
18년 전 조회 2,624
18년 전 조회 2,913
18년 전 조회 2,265
18년 전 조회 3,259
18년 전 조회 1만
18년 전 조회 2,106
18년 전 조회 3,018
18년 전 조회 3,060
18년 전 조회 2,289
18년 전 조회 3,162
18년 전 조회 4,148
18년 전 조회 3,121
18년 전 조회 2,490
18년 전 조회 6,221
18년 전 조회 3,852
18년 전 조회 6,510
18년 전 조회 2,602
18년 전 조회 2,532
18년 전 조회 2,564
18년 전 조회 3,515
18년 전 조회 3,371
18년 전 조회 2,145
18년 전 조회 3,893
18년 전 조회 1,823
18년 전 조회 1,549
18년 전 조회 1,573
18년 전 조회 1,736
18년 전 조회 1,825
18년 전 조회 3,609
18년 전 조회 2,451
18년 전 조회 1,908
18년 전 조회 2,307
18년 전 조회 4,779
18년 전 조회 2,530
18년 전 조회 3,155
18년 전 조회 2,136
18년 전 조회 3,649
18년 전 조회 2,000
18년 전 조회 7,834
18년 전 조회 3,501
18년 전 조회 1,475
18년 전 조회 2,507
18년 전 조회 3,717
18년 전 조회 2,551
18년 전 조회 2,326
18년 전 조회 2,942
18년 전 조회 3,907
18년 전 조회 3,667
18년 전 조회 2,754
18년 전 조회 2,119
18년 전 조회 2,128
18년 전 조회 2,711
18년 전 조회 2,179
18년 전 조회 3,061
18년 전 조회 1,867
18년 전 조회 2,400
18년 전 조회 1,881
18년 전 조회 2,325
18년 전 조회 2,554
18년 전 조회 2,486
18년 전 조회 2,445
18년 전 조회 2,372
18년 전 조회 3,670
18년 전 조회 1,849
18년 전 조회 3,629
18년 전 조회 2,194
18년 전 조회 5,476
18년 전 조회 2,329
18년 전 조회 2,514
18년 전 조회 1,915
18년 전 조회 2,313
18년 전 조회 3,830
18년 전 조회 1,691
18년 전 조회 1,925