web-dev-qa-db-fra.com

Comment tuer un processus qui dit "Opération non autorisée" lors d'une tentative?

J'ai un processus que j'aimerais tuer:

computer@ubuntu:~$ ps aux | grep socat
root      2092  0.0  0.0   5564  1528 pts/1    T    14:37   0:00 Sudo socat TCP:xxx.17.29.152:54321 PTY,link=/dev/ttyGPS0,raw,echo=0,mode=666
computer@ubuntu:~$ kill 2092
-bash: kill: (2092) - Operation not permitted   <--------------- How to kill ??
22
jdl

essayez la commande kill avec le signal -9 si Sudo kill 'pid' ne marche pas: Sudo kill -9 2092

23
Gr33n

Cette commande s'exécute sous Sudo en tant que root, votre commande kill doit également:

Sudo kill 2092

16
wingedsubmariner