I am using ubuntu and some times it is going to hanged stage while running 2 or more webapps simultaneously. Is there any way similar Alt+Ctrl+Delete to Task manager in Windows for sudden terminations?
Asked
Active
Viewed 56 times
1 Answers
2
If your screen freezes completely you can do crtl + alt + f2
to get a terminal.
From there you can use top
which will display running proccesses. Press k and then enter the PID of the process you want to kill.
Or you can use ps aux | grep proccesYouWantToKill
to get the PID and then kill -9 PID
to terminate the process.
crtl + alt + f1 - f6
are comand line only crtl + alt + f7
will bring you back to your desktop.

Pabi
- 7,401
- 3
- 40
- 49
crtl + alt + f2
your complete computer crashed and you have to restart manually. – Pabi Jul 02 '14 at 10:09crtl + alt + f7
will bring you back to your desktop. – Pabi Jul 02 '14 at 10:20kill -9 -1
is useful if wanted to kill all process and this will back to login screen! – Pandya Jul 02 '14 at 11:04