
Article Title           : aixterm_and_numlock
Creation Date           : unknown
Author                  : unknown
Last Update             : 6-23-93
Last Update By          : NCD Technical Support
Expiration Rules        : 
Location		: NCD-Articles/Host_Systems/IBM
=============================================================================

Some people complain about a NCD 101 Keyboard on which
Num_Lock does not work in a aixterm, like it does on the HFT
console. The solution is very simple:

The modifier keys are different! Aixterm expects Num_Lock to
be modifier 5 so clear mod4 and add mod5 = Num_Lock. Once you
do that Num_Lock will work but your ALT_R key will not switch
to third functions on the foreign keyboards (like @ below Q on
a GERMAN keyboard) so you have to delete mod4 and add mod2 =
Mode_switch



Example xmodmap command:

	xmodmap -e "remove mod4 = Num_Lock" \
		-e "add mod5 = Num_Lock"

