返回列表 回復 發帖

急救!!Linux OS command...

有谁知道Linux OS terminal 杀children thread 的command??
anybody know the command for kill children thread in Linux OS??
you mean kill -9 id??
show the pid with
ps -ef

teminate a process with
kill -9 pid
pstree -u $(whoami)
# then will show PID + username + command
kill -9 PID  #choose PID you want to kill
返回列表