Benutzer:Garibaldi

Aus DebianforumWiki
Zur Navigation springen Zur Suche springen


Zweite AltGr auf Caps_Lock

 
## Source: 'man Xsession', comments slightly augmented by ralfhdepot-linux@yahoo.com.
 
 # Here  is  an  example  of  how  one  might write a script, named 
 # "40cus‐tom_load-xmodmap" to invoke xmodmap(1). It is to be saved in 
 # "/etc/X11/Xsession.d/"

       SYSMODMAP="/etc/X11/Xmodmap"
       USRMODMAP="$HOME/.Xmodmap"

       if [ -x /usr/bin/X11/xmodmap ]; then
           if [ -f "$SYSMODMAP" ]; then
               xmodmap "$SYSMODMAP"
           fi
       fi

       if [ -x /usr/bin/X11/xmodmap ]; then
           if [ -f "$USRMODMAP" ]; then
               xmodmap "$USRMODMAP"
           fi
       fi

   #  Those writing scripts for Xsession to execute should  avail  themselves
   #  of its built-in shell functions, described below.

Die .Xmodmap:

keycode  66 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift
keycode 127 = Caps_Lock Break Caps_Lock Break
user@debian:~$ xev

Zur Bestimmung der Tastenbezeichnungen/-codes.

user@debian:~$ xmodmap -pke .Xmodmap

Erzeugt die aktuelle xmodmap in Datei zur Anpassung. Da das Einlesen der .Xmodmap ein wenig dauert, nur die geänderten Zeilen speichern und alles andere löschen.

Produktenschlüssel Windows 8 auslesen

So kann man in Linux durch den Standardbefehl "hexdump" den Product Key für eine Windows 8 Installation vom BIOS auslesen. Der Befehl muss als root oder mithilfe von "sudo" ausgeführt werden.

root@debian:~#  hexdump -C /sys/firmware/acpi/tables/MSDM

Die Ausgabe sieht dann beispielsweise so aus, unten rechts steht der Schlüssel.

00000000  4d 53 44 4d 55 00 00 00  03 65 57 4f 52 54 4d 41  |MSDMU....eWORTMA|
00000010  57 4f 52 54 4d 41 4e 4e  09 20 07 01 41 4d 49 20  |WORTMANN. ..AMI |
00000020  13 00 01 00 01 00 00 00  00 00 00 00 01 00 00 00  |................|
00000030  00 00 00 00 1d 00 00 00  39 50 51 4e 46 2d 43 42  |........9PQNF-CB|
00000040  59 47 39 2d 4d 52 32 36  51 2d 33 48 34 59 52 2d  |YG9-MR26Q-3H4YR-|
00000050  36 51 34 44 36                                    |6Q4D6|
00000055