On 16.06.03 Christian Perle (perle@itm.tu-clausthal.de) wrote:
Hi,
Zusaetzlich solltest Du mit [ALT]+[Fx] auf eine andere virtuelle Konsole schalten, nachdem Du Dich ausgegloggt hast. So wird das Zurueckblaettern der Konsole mit [SHIFT]+[PGUP] verhindert.
#!/bin/bash
if [ -z "`tty|grep tty`" ]; then exit 0; fi
TTY=`tty|tail -c2` if [ $TTY = "1" ]; then chvt 2; chvt $TTY; else chvt 1 chvt $TTY fi
chvt gehört zu console-tools.
H.