나는 Linux 터미널에서 다음 코드를 작성했습니다.
test@kali:~$ service tor status
bash: service: command not found
뭐가 문제 야?
답변1
오류가 발생했습니다
bash: service: command not found
service
명령을 찾을 수 없기 때문입니다. (@JdeBP에게 감사드립니다)
whereis service
그것이 어디에 있는지 알려줄 것입니다 (아마도)
/usr/sbin/service
$PATH에 '/usr/sbin`을 추가할 수 있습니다.
PATH=/usr/sbin:$PATH
@PierreAlainToret이 설명했듯이 service
올바르게 실행되면 실행 중일 때 다른 오류가 발생해야 합니다.systemd
Unit tor.service could not be found.
답변2
따라서페이지, Kali Linux를 구성하려면 systemd를 사용해야 합니다.
따라서 명령이 systemctl
대체 service
되고 예제가 systemctl status tor.service
.service가 자동으로 systemd에 추가됩니다.systemctl status tor