Terminar un proceso en linux - Debian
12 Jul 2022 linux , kill , shell , commandComandos
# listar procesos
ps -ef
# matar por puerto usado
sudo lsof -t -i:3000
# finalizar por PID
sudo kill -9 12421
# si no tienes el comando, instalarlo
sudo apt-get install lsof
Referencias
- https://www.linuxquestions.org/questions/linux-newbie-8/lsof-command-not-found-914342/
- https://mr-khan.gitlab.io/linux/2018/05/02/kill-specific-port-on-linux.html