Kommndozeile starten, Eingabe ps aux und ermitteln wo der Prozess läuft und welche PID er hat, eingabe kill Id und weg sollte er sein.
repi@repi1:~/Desktop> ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 864 328 ? Ss 10:32 0:00 init [5]
root 2 0.0 0.0 0 0 ? S root 3 0.0 0.0 0 0 ? S root 4 0.0 0.0 0 0 ? S root 5 0.0 0.0 0 0 ? S root 6 0.0 0.0 0 0 ? S root 7 0.0 0.0 0 0 ? S root 8 0.0 0.0 0 0 ? S root 9 0.0 0.0 0 0 ? S root 10 0.0 0.0 0 0 ? S root 11 0.0 0.0 0 0 ? S root 12 0.0 0.0 0 0 ? S root 13 0.0 0.0 0 0 ? S root 14 0.0 0.0 0 0 ? S root 15 0.0 0.0 0 0 ? S root 16 0.0 0.0 0 0 ? S root 17 0.0 0.0 0 0 ? S ::::
postfix 3386 0.0 0.0 39744 2204 ? S 10:33 0:00 pickup -l -t fifo -u
postfix 3387 0.0 0.0 39792 2292 ? S 10:33 0:00 qmgr -l -t fifo -u
root 3407 0.0 0.0 12420 620 ? Ss 10:33 0:00 /usr/sbin/cron
root 3428 0.0 0.0 4316 732 tty1 Ss+ 10:33 0:00 /sbin/mingetty --noclear tty1
root 3429 0.0 0.0 4316 732 tty2 Ss+ 10:33 0:00 /sbin/mingetty tty2
root 3432 0.0 0.0 4316 704 tty3 Ss+ 10:33 0:00 /sbin/mingetty tty3
root 3434 0.0 0.0 4316 708 tty4 Ss+ 10:33 0:00 /sbin/mingetty tty4
root 3436 0.0 0.0 4316 728 tty5 Ss+ 10:33 0:00 /sbin/mingetty tty5
root 3438 0.0 0.0 4316 708 tty6 Ss+ 10:33 0:00 /sbin/mingetty tty6
root 3471 0.0 0.0 11812 720 ? S 10:33 0:00 /usr/sbin/smartd
root 3474 0.0 0.0 0 0 ? S gdm 3525 0.0 0.0 57684 3612 ? Ssl 10:33 0:00 /usr/lib/bonobo/bonobo-activation-server --ac-activate --ior-
Die genau Syntax für ps musst Du mal mit ps --help für Deine Distri ergründen, die weicht manchmal ein wenig ab.
P.S. kennt man den Prozessnamen, so kann man diesen auch gleich rausfiltern, nämlich mit: ps aux | grep "prozessname" bzw. Teilstring des Prozessnamens reicht schon.