Linux) sudo password 없이 사용하기
2021. 7. 19. 23:50ㆍ꿀팁 분석 환경 설정/Linux 관련 팁
목차
sudo 그룹에 사용자 추가
usermod -aG sudo username
확인 방법
# user로 접속한 상태에서 확인
sudo whoami
# root
삭제 방법
sudo deluser username
sudoers 파일에 사용자 추가하기
sudoers 수정 권한 부여
# 수정권한 주기 (root 계정)
chmod +w /etc/sudoers
sudo 사용자 추가
# 편집기 열기
vi /etc/sudoers
## 권한 부여하기
username ALL=(ALL) ALL
## 비번 없이 들어가기
username ALL=NOPASSWD: ALL
sudoers 수정 권한 부여
# 수정권한 뺏기 (root 계정)
chmod -w /etc/sudoers
확인 방법
# user로 접속한 상태에서 확인
sudo whoami
# root
Visudo (TODO)
https://oyeahhh.tistory.com/103
https://www.unixtutorial.org/how-to-use-visudo/
728x90
'꿀팁 분석 환경 설정 > Linux 관련 팁' 카테고리의 다른 글
git 에러) remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. ... The requested URL returned error (0) | 2021.12.02 |
---|---|
Ubuntu) GPU 확인 방법 (0) | 2021.07.31 |
How to: Linux / UNIX create soft link with ln command (3) | 2021.07.18 |
mpi4py 설치 에러 해결하기 (0) | 2021.03.28 |
Library "GLU" not found 해결 방법 (0) | 2021.03.28 |