/etc/sudoers
## Drivers
Cmnd_Alias DRIVERS = /sbin/modprobe
# Defaults specification
#
# Disable "ssh hostname sudo ", because it will show the password in clear.
# You have to run "ssh -t hostname sudo ".
#
Defaults requiretty
Defaults env_reset
Defaults env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR \
LS_COLORS MAIL PS1 PS2 QTDIR USERNAME \
LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION \
LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \
LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS \
_XKB_CHARSET XAUTHORITY"
## Next comes the main part: which users can run what software on
## which machines (the sudoers file can be shared between multiple
## systems).
## Syntax:
##
## user MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
## Allows members of the 'sys' group to run networking, software,
## service management apps and more.
# %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL
## Same thing without a password
# %wheel ALL=(ALL) NOPASSWD: ALL
## Allows members of the users group to mount and unmount the
## cdrom as root
# %users ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom
## Allows members of the users group to shutdown this system
# %users localhost=/sbin/shutdown -h now
저번에도 sudo 관련(http://kldp.org/node/85690)으로 질문 올렸는데, 그때 어떤분께서
#usr privilege specification
root ALL=(ALL) ALL
pjh ALL=(ALL) ALL
을 /etc/sudoers에 넣으면 된다고 하셨는데, 저 내용을 그냥 아무자리에나 끼어넣으면 되는건가요?
질문이 너무
질문이 너무 어렵네요.
조금만 성의를 더 들이시면 답변이 잘 달릴겁니다.
저같은 경우는 이렇게 하고 있습니다.
yundorri ALL=(ALL) NOPASSWD:ALL
예를들어 sudo mount /dev/sda1 /mnt/exthdd 라고 하면
yundorri의 계정 Password를 묻습니다.
인증이 끝나면 수행이 됩니다. root 권한으로요.
저는 원문 관련성이
저는 원문 관련성이 있는곳에 끼워 넣는게 찾기도 쉽고 좋던데요. 그냥 맨아래에다가 넣을수 도 있지만요.
# echo "pjh ALL=(ALL) ALL" >> /etc/sudoers
# %wheel ALL=(ALL) ALL
에서 주석 풀고 쓰는게 좋다고 저만 생각해봅니다.
냐옹~~
------------------------
냐옹~~
댓글 달기