Answers for "raspberry pi stop an rc.local process"

1

raspberry pi stop an rc.local process

ps aux | grep 'the-name-of-your-program'
# The number in the second column is the pid.

# Use that pid to send the process a termination signal:
		sudo kill -KILL [put-your-pid-here]
Posted by: Guest on August-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language