"sudo /etc/init.d/"에 대한 별칭

"sudo /etc/init.d/"에 대한 별칭

별칭에 대한 표준이 있습니까 sudo /etc/init.d/? 많은 사람들이 이 17자를 2자로 줄이는 것을 고려했을 것이라고 확신합니다.

답변1

고려해야 할 점은 대부분의 시스템에는 sudo 명령의 /etc/init.d/ 부분을 대체하는 "service" 명령이 있다는 것입니다.

예를 들어 다음과 같이 할 수 있습니다.

alias sserv="sudo service"

예: (커튼 뒤의 뿌리에는 주의하지 마세요)

[root@talara javaWs.git]# sserv pdns restart
Restarting PowerDNS authoritative nameserver: stopping and waiting..done
Starting PowerDNS authoritative nameserver: started

답변2

Linux에서 SysVinit 사용(기존내부에구현), service명령은 를 호출하는 쉘 스크립트입니다 /etc/init.d.

sudo service wibble restart

service찾는 방법도 알아두세요갑자기 나타나다취업 기회(있는 경우) Upstart에는 start및 명령 stop도 함께 제공됩니다 .reloadrestart

sudo restart wibble

sudo이 작업은 루트로 수행되고 있음을 지속적으로 상기시키는 것이 좋습니다 .

답변3

보세요이 조각Grmls zshrc에서. Start Stop Restart Reload Force-Reload데몬 프로세스를 시작/중지하는 5가지 함수를 정의합니다 .

관련 정보