Meanie or anyone else out there that can help...
I followed Meanie's instructions by installing X/QT here:
http://www.users.on.net/~hluc/myZaurus/custom.html#xqtafter I did this:
# cd /opt/QtPalmtop/bin
# su
# ln -s Xqt X
# ln -s rxvt xterm
I skipped this:
add the following to /home/zaurus/.xinitrc
xmodmap -e "keycode 69 = slash comma"
xmodmap -e "keycode 70 = period question"
Hint: you can use the command line program xev from within X to determine the keycode of different keys on the SL-C3000 keyboard and add the mapping with xmodmap like I did, or alternatively, you can create a .xmodmaprc file to customize your keymaps instead.
You might also want to add the following to your .profile file:
export DISPLAY=:0.0
In addition, I modified .xinitrc and replaced the line:
rxvt &
with the following:
if [ -f $HOME/.xstart ]; then
XAPP=`cat $HOME/.xstart`
`$XAPP`&
rm $HOME/.xstart
else
rxvt &
fi
Then I replaced the content of /home/QtPalmtop/bin/startx-wrapper with the following:
#!/bin/sh
X=`ps -ef|grep X|grep qt`
if [ "$X" = "" ]; then
echo $1 > /$HOME/.xstart
startx
else
export DISPLAY=:0.0
$1 &
fi
becasuse of this:
Note: You can also install [xqt-debian-scripts_0.2_arm.ipk] instead of xqt-startup-scripts [xqt-startup-scripts_0.0.3_all.ipk] which will give you an even more enhanced .xinitrc and startx-wrapper and you don't need to do the above modifications manually. (It will also give you an additional Debian icon which you can delete if you don't intend to install Debian)
"Continued"