Other Help Topics :: how to switch between consoles(in textmode)?



Quote (mikshaw @ Mar. 25 2006,10:11)
That seems like it would be kinda messy.

Actually it is, that should be matter for another thread I'm writing. This is a cheap hack and works for me, but only in qemu+ dsl.iso, not in standard embedded.
My .bash_profile
Code Sample

dsl@box:~$ cat .bash_profile                                                  
#!/bin/bash
export IRCNICK=DSL

#added for my own use
export http_proxy=http://proxy1.XXXXXX.com:80

SSH=`env | grep SSH_CONNECTION`
RUNLEVEL=`runlevel|cut -f2 -d' '`
if [ -z "$SSH" ]; then
  if [ $RUNLEVEL -eq 5 ]; then
      (startx & 2>/dev/null ) 
  fi
fi


original here.