250x250
반응형
Notice
Recent Posts
Recent Comments
전산쟁이의 기억노트
리눅스에서 사용자 관리하기-1 본문
728x90
반응형
SMALL
- test 사용자를 test123으로 변경
$> usermod -l test123 test $> egrep 'test123' /etc/passwd test123:x:10000:10000::/data/test:/bin/sh
- uid를 10000에서 20000으로 변경하기
$> usermod -u 20000 test $> egrep 'test123' /etc/passwd test:x:20000:10000::/home/test:/bin/sh
- gid를 10000에서 20000으로 변경하기
$> usermod -u 20000 test $> egrep 'test' /etc/passwd test:x:20000:20000::/home/test:/bin/sh
- 홈디렉토리를 /data/test 를 /home/test로 변경
* 실제 데이터가 이동하진 않고, 설정만 바뀜$> usermod -d /home/test11 test $> egrep 'test' /etc/passwd test:x:20000:20000::/home/test11:/bin/sh
- 사용자 잠금
*사용자가 잠길경우, shadow파일에 !로 시작하며, 로그인이 안됨.$> usermod -L test $> grep 'test' /etc/shadow ... test:!aaaa::: ...
- 사용자 잠금해제
$> usermod -U test
- 그룹명을 test 그룹명을 test123으로 변경
$> groupmod -n test123 test $> grep 'test' /etc/group test123:x:10000:
- 그룹ID를 10000에서 20000으로 변경
$> groupmod -g 20000 test $> grep 'test' /etc/group test123:x:20000:
출처 - http://igoni.kr/books/linux/page/1
728x90
반응형
LIST
'Centos기술노트' 카테고리의 다른 글
Centos 방화벽 명령 실패 (0) | 2022.08.12 |
---|---|
리눅스에서 사용자 관리하기-2 (0) | 2022.08.12 |
Centos UUID확인방법 (0) | 2022.08.12 |
centos bonding Active 인터페이스 변경 (0) | 2022.08.12 |
Centos 4.x 리포지터리 변경 방법 (0) | 2022.08.12 |
Comments