Here's how to set up an APPX/Linux Client (character-based, and as opposed to a Windows or Java Client) to run against an NT APPX/Server, and how to map its keymap:
1) Set up four environment variables under Linux: APPX_USER=UserID/root/appx/appx.sh contains:cd /root/appx ./appx.sh exit
What is nice in this situation is that I only need one generic user id on the Linux box. Everything in the directories is read and execute only. Note that I use a different port number. Very important 'cause I set up another WinAppxD using that port which actually runs a batch file to set the APPX_KEYMAP for everyone coming through that port. I did have to rewrite a bunch of screens and some of my own SCAN routines to compensate for the smaller screen.echo -n "APPX UID : " ; read A_UID stty -echo echo -n "APPX PWD : " ; read A_PWD stty echo export APPX_HOST=1.2.3.4 export APPX_PORT=8061 export APPX_USER=$A_UID export APPX_PSWD=$A_PWD ./appx -c
Copyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.