How to kill a purenasic task

Linux specific forum
User avatar
Brujah
Enthusiast
Enthusiast
Posts: 237
Joined: Mon Nov 03, 2003 7:45 pm
Location: Germany
Contact:

How to kill a purenasic task

Post by Brujah »

Hy Programmers,

sometimes I start a purebasic program and I can't quit it because my routine to examine the keyboard has an error, or the like.

How can I kill that task ?

I know how to use "ps ax",
but when I kill the task named "purebasic" nothing happens.
My program is still running.

What do I have to do ?
Saboteur
Enthusiast
Enthusiast
Posts: 272
Joined: Fri Apr 25, 2003 7:09 pm
Location: (Madrid) Spain
Contact:

Post by Saboteur »

Have you tried with: ???

kill -15 pid

or

kill -9 pid

(I don't remember exact number) where pid is the process_id showed in 'ps ax'.
[:: PB Registered ::]

Win10 Intel core i5-3330 8GB RAM Nvidia GTX 1050Ti
User avatar
Brujah
Enthusiast
Enthusiast
Posts: 237
Joined: Mon Nov 03, 2003 7:45 pm
Location: Germany
Contact:

Post by Brujah »

Yes I just tried it.
It eally kills the task.

BUT after that my resolution is 640x480, thats what I use in the game.
And my mouse is not working anymore...

How can I restart he mouse and change screen resolution ?
dmoc
Enthusiast
Enthusiast
Posts: 739
Joined: Sat Apr 26, 2003 12:40 am

Post by dmoc »

Ctrl+Alt+Backspace kills X, then restart again with "startx"
Post Reply