2013년 12월 25일 수요일

useradd안쓰고 계정만들기

useradd가 생성될때에는 다음파일과 디렉토리를
참고하면서 생성한다.

/etc/passwd
/etc/group
/etc/shadow
/var/spool/mail
/home
/etc/skel

그러므로 첫번째 단계로 /etc/passwd , /etc/group에 가서
정보를 추가한다.
vi /etc/passwd
test:x:502:502:/home/test:bin/bash 추가
vi /etc/group
test:x:502 추가

두번째는 /var/spool/mail에 test파일을 만들고 권한 변겅
cd /var/spool/mail
touch test
chown test:mail test

세번째는 /home에 test 디렉토리를 만들고 /etc/skel의 내용복사
cd /home
cp -r /etc/skel test

위의 과정을 거치면 계정이 완성된다.
Categories:

0 개의 댓글:

댓글 쓰기

Subscribe to RSS Feed Follow me on Twitter!