[ubuntu] 서비스 리스트 표시하기
출처
현재 실행중인 서비스 리스트 표시
root@localhost:~# systemctl -t service
모든 서비스 리스트 표시하기
root@localhost:~# systemctl -t service --all
시스템 부팅시 서비스의 자동 실행 여부 리스트 표시
root@localhost:~# systemctl list-unit-files -t service
서비스 정지
ufw 서비스를 예로 표시합니다.
서비스 이름 뒤에 붙는 `.service`는 생략 가능합니다.
root@localhost:~# systemctl stop ufw
시스템 부팅시 자동 실행 설정 및 해제
# 자동실행 설정
root@localhost:~# systemctl enable ufw
# 자동실행 해제
root@localhost:~# systemctl disable ufw