charliez
  
 
  
 
 
Group: Members 
Posts: 33 
Joined: April 2006 | 
  | 
Posted: Aug. 17 2006,23:13 | 
   | 
 
 
  
For a remastered DSL into a kiosk of course.  
  Funny you should mention control+alt+delete because I wanted to strip that out too.  What I ended up doing was create a loop script in /usr/bin and called it xlock.
 | Code Sample  |  #!/bin/sh while $(/bin/true) do startx done |  
  Then I
 | Code Sample  |  |  chown root:root /usr/bin/xlock  |  
  and
 | Code Sample  |  |  chmod 755 /usr/bin/xlock  |  
  and then 
 | Code Sample  |   perl -pi -e 's/startx/xlock/g' $source/etc/skel/.bash_profile 
  |  
  The beauty is, that looping actually kills both ctrl+alt+backspace AND ctrl+alt+delete so win/win for my setup. My end result will be a frugal hard drive install so people can use some aging pc's for Citrix Metaframe access. 
 |