[Linux] repquota 명령어, 유저별 용량 제한해라
2021. 5. 12. 07:29이름 (NAME)
repquota 명령어는 report quota의 줄임말로. 파일시스템을 위해 quota들을 요약해라는 의미가 있습니다. 같이 볼 명령어로는 edquota, quota 명령어들이 있습니다.
quota는 한국말로 흔의 쿼터라고 읽는다. 그것의 뜻은 몫, 혹은 배당량, 한도량이다.
개요 (SYNOPSIS)
/usr/sbin/repquota [ -vspiug ] [ -c | -C ] [ -t | -n ] [ -F format-name ] filesystem...
/usr/sbin/repquota [ -avtpsiug ] [ -c | -C ] [ -t | -n ] [ -F format-name ]
옵션 (OPTIONS)
-u, --user
user들을 위한 quota들을 리포트합니다. 이것이 디폴트값 입니다.
-a, --all
/etc/mtab에 표시된 모든 파일 시스템을 quota들로 읽기-쓰기로 리포트합니다.
파일 (Files)
aquota.user or aquota.group
quota file at the filesystem root (version 2 quota, non-XFS filesystems)
quota.user or quota.group
quota file at the filesystem root (version 1 quota, non-XFS filesystems)
/etc/mtab
default filesystems
/etc/passwd
default set of users
/etc/group
default set of groups
설명 (DESCRIPTION)
repquota prints a summary of the disc usage and quotas for the specified file systems. For each user the current number of files and amount of space (in kilobytes) is printed, along with any quotas created with edquota(8).
예제 (EXAMPLES)
// quota 설치
$ apt-get install quota
// 유저전체 사용용량 확인
$ repquota -a
// 유저들을 위한 quota들 확인 (기본값)
$ repquota -u
// 유저 사용용량 확인 (kbytes로 출력)
$ quota -u [계정명]
// 유저 사용량 설정
$ edquota -u [계정명]
// [계정명1] 설정내용을 [계정명2]에 복사(hosting1, hosting2, hosting3을 미리 셋팅함)
$ edquota -p [계정명1] [계정명2]
출처
www.web-easy.kr/bbs/board.php?bo_table=server&wr_id=24
'Linux > Linux명령어' 카테고리의 다른 글
[Linux] Nohup 명령어, 세션 끊김 영향없이 명령어 실행해라. non-tty로 출력한채로. (0) | 2021.06.14 |
---|---|
[Linux] rtnetlink(3) (0) | 2021.05.31 |
[Linux] lsblk 명령어, 블록 디바이스들을 나열해라 [미완성] (0) | 2021.05.08 |
[Linux] growpart 명령어, 파티션 테이블 안에 있는 파티션을 확장해라 (0) | 2021.05.05 |
[Linux] fdisk 명령어, 리눅스용 파티션 테이블을 조작해라. (0) | 2021.05.05 |