Domande taggate «start-stop-daemon»

1
start-stop-daemon non funziona come previsto, non è stato scritto alcun file pid
Sto cercando di controllare un programma basato su Python (che non si stacca dalla console) #!/bin/bash user=nobody pid=/var/run/xx.pid name=xx prog=/xx.py case $1 in start) /sbin/start-stop-daemon --start -b --oknodo --user "$user" --name "$name" --pidfile "$pid" --startas "$prog" --chuid nobody -- --daemon ;; stop) /sbin/start-stop-daemon --stop --oknodo --user "$user" --name "$name" --pidfile …

1
impossibile riavviare il demone di rete
Quando digito sudo service networking restart, ricevo un errore come mostrato di seguito: edward@computer:~$ sudo service networking restart stop: Job failed while stopping start: Job is already running: networking Ho ricevuto questo errore quando volevo riavviare networkingdopo aver cambiato l'indirizzo mac e anche dopo aver impostato l'IP statico nel /etc/network/interfacesfile. …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.