mikshaw
  
 
 
  
 
 
Group: Members 
Posts: 4856 
Joined: July 2004 | 
  | 
Posted: Feb. 17 2006,21:33 | 
   | 
 
 
  
mc.uci: The info file fails to mention an important part of getting the subshell to work.
  It says to "chmod 664 /dev/ptmx" and add dsl to group 'tty', but i forgot that /dev/ptmx is owned by root.root instead of root.tty, so in addition to that you'd also need to "chown root.tty /dev/ptmx".
  Here's what I have in bootlocal.sh to get it working properly:
 | Code Sample  |  usermod -G staff,dialout,fax,voice,cdrom,floppy,tape,sudo,audio,dip,video,games,users,usb,tty dsl chmod 664 /dev/ptmx chown root.tty /dev/ptmx |    
  -------------- http://www.tldp.org/LDP/intro-linux/html/index.html
 |