방법 1
# vi /etc/passwd
기술된 유저 목록에서 목표 유저를 찾은뒤 /bin/sh 를 /sbin/nologin 으로 바꿔줌.
방법 2
usermod 명령어 사용
usermod -s /sbin/nologin account
man 에 기술된 정보
-s shell
The name of the user's new login shell. Setting this field to blank causes the system to select the default login shell.
-L Lock a user's password.
This puts a '!' in front of the encrypted password, effectively disabling the password. You can't use this option with -p or -U.
-U Unlock a user's password. This removes the '!' in front of the encrypted password. You can't use this option with -p or -L.
-L 과 -U 옵션을 활용해 보는 방법도 있다.
# vi /etc/passwd
기술된 유저 목록에서 목표 유저를 찾은뒤 /bin/sh 를 /sbin/nologin 으로 바꿔줌.
방법 2
usermod 명령어 사용
usermod -s /sbin/nologin account
man 에 기술된 정보
-s shell
The name of the user's new login shell. Setting this field to blank causes the system to select the default login shell.
-L Lock a user's password.
This puts a '!' in front of the encrypted password, effectively disabling the password. You can't use this option with -p or -U.
-U Unlock a user's password. This removes the '!' in front of the encrypted password. You can't use this option with -p or -L.
-L 과 -U 옵션을 활용해 보는 방법도 있다.
'도서관 I > 리눅스' 카테고리의 다른 글
[바람이] 간단한 Shell 명령어 정리 (0) | 2006.09.02 |
---|---|
[바람이] mm_struct 에 대한 개요 (0) | 2005.09.28 |
[바람이] task의 순환 (Running , Ready , Blocked) (0) | 2005.09.28 |
[바람이] linux-2.6.12.3 중에 sched.h안에 task_struct 분석 (0) | 2005.09.28 |
리눅스 시스템 IP 변경 (0) | 2005.08.22 |