[Linux] Ubuntu sudo (관리자권한 받기)

Debian / Ubuntu / Kali 등의Debian기반의 리눅스는

보통 sudo사용자로 못만들게 해놨습니다. 
그래서 일반사용자도 sudo가 가능하게 바꿔놓는 작업은

/etc/sudoers 파일을 열어서(nano나 vi로 열어서)

아래는 sudoers파일의 내용입니다.

# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#

Defaults    env_reset

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root,apple,pear  ALL=(ALL) ALL 
@@@@@

이부분에 원래는 root만 있었는데, 
일반사용자 이름을 콤마를 사이에 두고 
써넣고 저장하면 sudo가 가능한 터미널을 띠울수있게 바뀝니다. 

# Allow members of group sudo to execute any command
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d