sudo 권한설정방법이다.#vi /etc/sudoers 접속하면 여러가지 설정이 있다. 계정으로 권한 설정test ALL=(ALL) ALL특정 계정을 권한을 주고 싶다면 위와 같이 계정을 추가하면 된다. 그룹으로 권한 설정%users ALL=(ALL) ALL그룹명은 앞에 %을 붙이고 그룹설정을 하면 그룹에 해당하는 모든 users 가 권한을 가지게 된다. 특정명령어로 권한 설정 %users ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdromtest ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom 위와 같이 특정 그룹이나 특정 계정으로 mount / cdrom/ umount 등을 이용할수 있는 권한을 줄수 있다.