http://www.ahinc.com/linux101/users.htm
Options:
- -d 홈 디렉토리
- -s 시작할 쉘(shell)
- -p 패스워드
- -g 주그룹
- -G 부그룹
- -m 사용자 디렉토리 생성
Example: To add a new user with
- 주그룹 users
- 부그룹 mgmt
- 시작 쉘 /bin/bash
- 패스워드 xxxx
- 디렉토리 roger
- 디렉토리생성
- 유저이름 roger
useradd -gusers -Gmgmt -s/bin/shell -pxxxx -d/home/roger -m roger
Options:
- -d 홈 디렉토리
- -s 시작할 쉘(shell)
- -p 패스워드
- -g 주그룹
- -G 부그룹
Example: To add the group 'others' to the user roger
usermod -Gothers roger
Options:
- -r 홈 디렉토리 제거
Example: To remove the user 'roger' and his home directory
userdel -r roger
Options:
- user's name
Example: To change the password for the account you are currently logged in as...
passwd
Enter existing password
Enter new password
Enter new password again (to validate)
Example: To change the password for the user 'roger' (only you are logged in as root)...
passwd roger
Enter existing password (can be either roger's password or root's password)
Enter new password
Enter new password again (to validate)
Options:
- user's name
Example: To change the password for the account you are currently logged in as...
id
'리눅스' 카테고리의 다른 글
Give root password for maintenance 해결방법 및 fstab 수정 방법 (0) | 2011.06.14 |
---|---|
리눅스/파일 위치 검색 (0) | 2011.04.15 |
리눅스/관리자용 명령어 (0) | 2011.02.13 |
리눅스/mount(마운트) (0) | 2010.11.19 |
리눅스/대용량 파일 시스템 포멧(Format) (0) | 2010.11.04 |