Linked by Thom Holwerda on Mon 12th Dec 2005 15:38 UTC
Windows Microsoft is banking on enhancements to what it has dubbed the fundamentals to entice enterprises to upgrade to the next version of Windows, known as Vista. The company will use upcoming industry shows to sing the praises of improvements to the Windows networking stack and secure networking techniques such as server and domain isolation to sell both Vista and Longhorn, the planned update to Windows Server.
Thread beginning with comment 71626
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[20]: hahaha hehe
by Anonymous. on Mon 12th Dec 2005 22:51 UTC in reply to "RE[19]: hahaha hehe"
Anonymous.
Member since:
2005-12-04

ever tried pressing ctrl+c? you'd probably have a hard time writing a fake console login manager that that wouldn't kill... and ctrl+alt+backspace would take care of any x-based ones...

Reply Parent Bookmark Score: 1

RE[21]: hahaha hehe
by on Mon 12th Dec 2005 22:57 in reply to "RE[20]: hahaha hehe"
Member since:

> ever tried pressing ctrl+c? you'd probably have a
> hard time writing a fake console login manager
> that that wouldn't kill...

Not at all. Ctrl-C is easily trapped. I can even trap Ctrl-C from a shell script. Don't even even need C to do that. And no, I don't need to be root to trap Ctrl-C.

The only signal I can't trap is SIGKILL. All other signals can be trapped. And you don't need to be root to do so.

Reply Parent Bookmark Score: 0

RE[22]: hahaha hehe
by on Mon 12th Dec 2005 23:34 in reply to "RE[21]: hahaha hehe"
Member since:

@24.118.179.---

So you say Ctrl+C is trappable, what about Ctrl+Alt+Backspace, which logs the user out of their current session? If one were really paranoid they could do that before every Linux login.
I don't see how touting Ctrl+Alt+Del from Windows is all that great, it's just pressing extra keystrokes, which I believe Ctrl+Alt+Backspace will replicate fine on Linux. Let me know if it is trappable though.

Reply Parent Bookmark Score: 0

RE[21]: hahaha hehe
by on Mon 12th Dec 2005 23:10 in reply to "RE[20]: hahaha hehe"
Member since:

> ever tried pressing ctrl+c? you'd probably have a
> hard time writing a fake console login manager
> that that wouldn't kill...

And just to prove it to you,

Try running this shell script:

#!/bin/sh
trap noctrlc 2

noctrlc()
{
echo "You can't get out of here with Ctrl-C"
}

read foo

Reply Parent Bookmark Score: 0