linux sudo 권한 부여 하기 ※ su (switch user) 명령어 현재 계정을 로그아웃을 하지 않고 다른 계정으로 전환하는 명령어 ※ sudo (superuser do) 명령어 현재 계정에서 root 권한을 이용하여 명령어를 실행할 때 사용 ● sudo 명령의 실행 권한은 설정 파일 /etc/sudoers에서 사용자/그룹별 권한을 지정할수 있다. cat /etc/sudoers ## 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 = NE..