Linux 관련 운영 명령어 모음
리눅스 서버 운영 기본 정리시간대 설정 (UTC -> KST)리눅스 기본 시간대는 UTC이며, 한국(KST) 기준으로 맞춰야 로그 시간 등이 일치함.timedatectl # 현재 시간/시간대 확인sudo timedatectl set-timezone Asia/Seoul # 한국 시간대로 설정systemctl 명령어 정리 (서비스 관리)sudo systemctl list-units # 서비스 목록 확인sudo systemctl is-active # 서비스 상태(active 여부)sudo systemctl enable # 부팅 시 자동 시작 등록sudo systemctl start ..