자주 쓰는 리눅스 명령어 정리 / 리눅스 CentOS 사용법
리눅스 명령어 정리
서버 정보 확인 및 상태 관리
https://0songha0.github.io/op/2022-09-02-1
서버시간 확인 및 변경
https://0songha0.github.io/op/2022-08-26-1
네트워크 관련
https://0songha0.github.io/op/2022-08-03-1
방화벽 포트 허용
https://0songha0.github.io/op/2022-09-04-1
서비스 관리
https://0songha0.github.io/op/2022-08-06-1
파일 및 폴더 관련
https://0songha0.github.io/op/2022-08-16-1
패키지 설치
https://0songha0.github.io/op/2023-01-31-1
기타 리눅스 명령어
명령어 옵션 목록 및 설명 보기
명령어 --help
계정 전환
sudo su - 계정명
루트 계정 전환
sudo su -
root 계정으로 전환합니다.
현재 계정 비밀번호 입력 요구 메세지
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility.
[sudo] password for 현재로그인계정명:
비밀번호 입력 요구 해제 설정
sudo visudo
sudo 구성파일에 아래와 같이 추가하고 저장하면, 해당 유저에서 sudo su - 시 비밀번호를 입력하지 않아도 됩니다.
유저명 ALL=(ALL) NOPASSWD: ALL
crontab 실행 목록 확인
crontab -l
심볼릭 링크 생성
ln -s /상위폴더경로/실제폴더경로 /상위폴더경로/간소화된경로
심볼릭 링크 확인
ls -l /상위폴더경로/실제폴더경로
해당 경로에 생성된 심볼릭 링크를 확인할 수 있습니다.
심볼릭 링크 예시
mariadb -> /usr/local/mariadb-10.6.18-linux-systemd-x86_64
/usr/local/mariadb라는 심볼릭 링크로 실제 폴더명을 가리키고 있습니다.
심볼릭 링크 삭제
rm /상위폴더경로/간소화된경로
rm: remove symbolic link? 메세지가 나오면 y를 눌러 삭제합니다.
Leave a comment