1) group 생성 (일반적으로 wheel 그룹 사용)
groupadd wheel
2) /usr/bin/su 파일의 그룹을 wheel 그룹으로 변경
chgrp wheel /usr/bin/su
3) /usr/bin/su 파일의 권한변경 (4750)
chmod 4750 /usr/bin/su
4) su 명령어 사용이 필요한 계정을 wheel 그룹에 추가
usermod -G wheel [계정명]
'DEV' 카테고리의 다른 글
Linux - session timeout 설정 (0) | 2014.05.08 |
---|---|
Linux - su 제한 조치 방법 (0) | 2014.04.25 |
configure: error: --with-readline=yes (default) and headers/libs are not available (R 설치) (0) | 2014.03.26 |
configure: error: C++ preprocessor "/lib/cpp" fails sanity check (0) | 2014.03.26 |
configure: error: No F77 compiler found (0) | 2014.03.26 |