LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-11-2002, 06:25 PM   #1
pekuekfir
Member
 
Registered: Jan 2002
Location: San Antonio, Texas
Distribution: mandrake 8.1
Posts: 90

Rep: Reputation: 15
ctl-alt-del equivalent in linux?


something I use in windoze quite alot is the ctl-alt-del to display what is currently running, and ending something if necessary. What's the linux way of doing this?
 
Old 01-11-2002, 06:32 PM   #2
therion12
Member
 
Registered: Dec 2001
Location: chicago, IL
Distribution: Gentoo 1.4_rc1
Posts: 913

Rep: Reputation: 30
You can use "Alt+Tab" to see your different applications, but you cannot close them this way like windows 9x can.
 
Old 01-11-2002, 06:51 PM   #3
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
well, in the console if you mean getting a list of running apps ("ps ax") and the killing 'em ("kill -s KILL $(pidof <offending appname>") should do (or use "top"). In IceWM we got a list of windows under the 3rd mousebutton, else use an app like "top", taskmgrs like qps or tkKillProc or xkill (only visible apps). ctrl+alt+del on most boxes is defined in /etc/inittab for rebooting, on my boxen it gives an explanation of SysRq...
 
Old 01-11-2002, 06:57 PM   #4
pekuekfir
Member
 
Registered: Jan 2002
Location: San Antonio, Texas
Distribution: mandrake 8.1
Posts: 90

Original Poster
Rep: Reputation: 15
ok on all that. but does just killing stuff in linux cause problems sometimes?
You know how, in windoze, when you cancel something, sometimes nothing works right afterwards... of course, thats windoze, not linux, just wondering though... In windoze, sometimes you try to get out of something gracefully, but...its "reset button time again..."
 
Old 01-11-2002, 06:57 PM   #5
bluecadet
Member
 
Registered: Oct 2001
Distribution: MD81 RH71
Posts: 555

Rep: Reputation: 30
in a console, you use 'ps aux' to get a full list of EVERYTHING running, then you can take the pid# and run

kill pid#

and if that don't work:

kill -KILL pid#

you can also use

killall name-of-program

but it's less powerful and flexible.

in X, you should be able to kill any app from the task bar (in gnome, kde) or there's a program called xkill which turns your mouse into a target, and then will destroy any program you click on.

anything else?
 
Old 01-11-2002, 06:59 PM   #6
therion12
Member
 
Registered: Dec 2001
Location: chicago, IL
Distribution: Gentoo 1.4_rc1
Posts: 913

Rep: Reputation: 30
Quote:
in X, you should be able to kill any app from the task bar (in gnome, kde) or there's a program called xkill which turns your mouse into a target, and then will destroy any program you click on.
I was wondering what that thing does!!!
 
Old 01-11-2002, 07:03 PM   #7
pekuekfir
Member
 
Registered: Jan 2002
Location: San Antonio, Texas
Distribution: mandrake 8.1
Posts: 90

Original Poster
Rep: Reputation: 15
yea, I love that xkill thing. Its just that in windoze when you look at what's running, there may be like 10 things listed and you dont know what hell some of them are. sometimes I just cancel everything except explorer & systray, like if I'm gonna burn a CD or something. In windoze things interfere with each other.
 
Old 01-11-2002, 07:07 PM   #8
therion12
Member
 
Registered: Dec 2001
Location: chicago, IL
Distribution: Gentoo 1.4_rc1
Posts: 913

Rep: Reputation: 30
Yeah thats what sux about windows 9x. Windows NT/2000/XP have a a very good process management system that pops up when you press "ctrl+alt+delete". Windows XP has even more cool stuff in there, and you can see whats it doing.
 
Old 01-11-2002, 08:11 PM   #9
pekuekfir
Member
 
Registered: Jan 2002
Location: San Antonio, Texas
Distribution: mandrake 8.1
Posts: 90

Original Poster
Rep: Reputation: 15
well, I have 98SE, and I think it will be the last one for me. I'll try to get to be a linux power-user. Course, that takes time and my wife is already saying "you go up there on your computer every day after work for HOURS!". I just say I'm tryin' to re-learn everything I know about computers.
I hope linux doesn't get too bloated like windoze, where it does everything for you even if you're a complete idiot.
I don't wanna be no sheep.
 
Old 01-12-2002, 05:33 AM   #10
bluecadet
Member
 
Registered: Oct 2001
Distribution: MD81 RH71
Posts: 555

Rep: Reputation: 30
Quote:
Originally posted by pekuekfir
Course, that takes time and my wife is already saying "you go up there on your computer every day after work for HOURS!".
Relationships, who needs em? ;-)
 
Old 01-12-2002, 06:40 AM   #11
ratface
LQ Newbie
 
Registered: Dec 2001
Location: Wiltshire UK
Distribution: SuSE 7.2 / Slackware 8
Posts: 25

Rep: Reputation: 15
Try using KDE Sytem Guard, ctrl+esc (from within KDE obviously)
 
Old 09-19-2003, 02:12 PM   #12
catherinedevlin
LQ Newbie
 
Registered: Sep 2003
Location: Dayton, Ohio
Distribution: Red Hat 9
Posts: 1

Rep: Reputation: 0
totally frozen

I similarly need to Ctrl-Alt-Del or something like that. The screen is utterly unresponsive - I have no way of getting to my command prompt to run a command there, I can't click onto the task bar (which won't render anyway).

This happened this time while doing an Oracle install (which seems to be stuck) and after the screensaver had come up - moving the mouse wiped the screensaver away, but the real screen only partially refreshed and won't show me so much as a mouse pointer. Basically, I need a way to get "beneath" the GUI... there's GOT to be a better way than the power switch. Things like this have happened a couple times before, but I don't remember the exact circumstances.

I've tried Ctrl+Alt+Del, Alt+Tab, Ctrl+Esc, Ctrl+Break, and smacking the keyboard with my face.

I'm using GNOME - everything pretty much out-of-the-box defaults.
 
Old 09-19-2003, 07:48 PM   #13
BigBadPenguin
Member
 
Registered: Jun 2003
Location: Warwick (.ac.uk)
Distribution: Arch, Slackware 9.0, (knoppix standing by)
Posts: 256

Rep: Reputation: 30
welcome to LQ! ctrl-alt-bkspace will kill X and return you to the console, but you should be able to get a console with alt-ctrl-f1up to ctrl-alt-f7 anyway. Does this not work? It's extremely rare for linux (as in the kernel) to seize up, so you can usually get rid of whatever program is fouling things up through the console.
 
Old 09-19-2003, 11:39 PM   #14
mychl
Member
 
Registered: Jul 2001
Location: Earth
Posts: 164

Rep: Reputation: 30
Ctrl + Alt + Esc turns your cursor into a skull and crossbones. Then click title bar of offending app and it'll die quite nicely....

If that doesn't work, I usuall go to Ctrl + Alt + F5 and ps -A to get pid of offending app/process and then just kill PID#....

If that doesn't work, I kill kdm, which makes X restart for me.....

If that doesn't work.... oh, wait, it always has....
 
Old 09-20-2003, 12:14 PM   #15
Jeff Foster
LQ Newbie
 
Registered: Sep 2003
Location: Linden, TN
Distribution: Suse 8.1
Posts: 19

Rep: Reputation: 0
If you use Windowmaker as your desktop manager you can hit F11 and that shows you what's running and allows you to maximize any of those windows and do whatever you want with it.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CTRL+ALT+DEL Equivalent? m3s3lf Linux - Newbie 15 11-06-2004 10:31 PM
Is there a Cntl-Alt-Del Equivalent? MSwal2846 Linux - Newbie 5 03-16-2004 01:06 AM
Linux equivalent of CTRL-ALT-DEL in Windows? ryancw Linux - Newbie 15 02-19-2004 09:58 PM
CTL+ALT+DEL logoff screen gone ScreeminChikin Linux - General 2 09-19-2002 04:16 AM
ctrl, alt, del in Linux psyklops Linux - General 5 04-23-2002 06:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 09:53 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration