- 전체보기
- user 비밀번호 변경
- 첫 ubuntu 서버 접속
- 첫 user 등록
- 비밀번호 접속 막기
- Root 접속 막기
- 비밀번호 대신 SSH key로 접속할 수 있게 설정
- Nginx 설치하기
- MySQL 설치하기
- 우분투 18.04에서 PHP 7.4 설치
- 매번 sudo 비밀번호 입력하지 않게 설정하기
- Apache2 포트 변경하기
- 현재 위치하고 있는 폴더 확인하기
- 우분투에 설치된 패키지 리스트 보기
- 우분투 20.04에서 PHP 8.1 설치하기
- SSH key 터미널에서 보이게 하기
- 우분투 유저 리스트 보기
- 우분투 MySQL user 추가하기
- 우분투 권한 변경하기
- 우분투 cron job 크론잡 설정
- 우분투에서 메모리 사용량 확인하기
- Nano Editor에서 제일 마지막 라인으로 가기
- 맥 터미널에서 SSH로 파일 업로드
- 파일 삭제
Ubuntu - 매번 sudo 비밀번호 입력하지 않게 설정하기
조회수: 1008sudo 비밀번호 매번 입력하기 아주 귀찮다.
설정을 해보자.
sudo visudo
실행하자. 아래와 같은 화면이 나온다.
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
마지막 자리에 james ALL=(ALL) NOPASSWD: ALL
입력하고 저장하면 된다.
james 공간에 본인 username을 넣으면 된다.