계정 생성
testuser 계정생성
UID 와 GID는 501 이며, 홈폴더는 /home/testuser
bash 셀 사용이 가능
[root@localhost ~]# useradd testuser [root@localhost ~]# cat /etc/passwd | grep testuser testuser:x:501:501::/home/testuser:/bin/bash
패스워드 설정
testuser 계정의 패드워드를 1234 로 설정
[root@localhost ~]# echo '1234' | passwd --stdin testuser Changing password for user testuser. passwd: all authentication tokens updated successfully.
계정 삭제 (홈폴더 포함)
[root@localhost ~]# userdel -r testuser
계정 삭제 (홈폴더 미 포함)
[root@localhost ~]# userdel testuser
생성된 계정을 목록으로 확인
bash 사용자 목록
useradd 를 이용하여 계정을 만들면 기본적으로 /bin/bash 환경이 적용
[root@localhost ~]# grep /bin/bash /etc/passwd | cut -f1 -d:
전체 계정을 목록으로 확인
[root@localhost home]# cut -f1 -d: /etc/passwd
'Linux' 카테고리의 다른 글
Redis Service Stop::(error) NOAUTH Authentication required (0) | 2015.07.01 |
---|---|
리눅스(linux) CentOS 에 Remi 설치 방법 (0) | 2015.06.30 |
리눅스(linux) CentOS 에 Redis 설치 하는 방법 (0) | 2015.06.30 |
리눅스(linux) CentOS 에 epel 설치 방법 (0) | 2015.06.30 |
리눅스(linux) 예약 스케줄러 crontab 사용 방법 (0) | 2015.06.29 |