반응형
[리눅스 명령어]CentOS : man usermod
1. 용도 및 목적
사용자 계정 수정
2. 자주 쓰는 옵션
-보안취약점 su 계정 제한 시 test 계정을 wheel 그룹 등록
#usermod -G wheel test
3. 활용 방법
-test계정 만료일 제거
#usermod -e -1 test
확인
chage -l test
-test계정의 uid=505, group=test, groups=telsuer,ftpuser , shell=bash, expires=2019-04-05 로 설정한다.
usermod -u 505 -g test -G teluser,ftpuser -s /bin/bash -e 2019-04-05 test
반응형
'OS (RHEL,CentOS) > Linux Command' 카테고리의 다른 글
[리눅스 명령어]CentOS : man useradd (0) | 2023.01.26 |
---|---|
[리눅스 명령어]CentOS : man groupdel (0) | 2023.01.26 |
[리눅스 명령어]CentOS : man ls (0) | 2023.01.26 |
[리눅스 명령어]CentOS : man echo (0) | 2023.01.26 |
[리눅스 명령어]CentOS : man wall (0) | 2023.01.20 |