Debian 11 Bulleye ist auf meinem MSI Wind U100 installiert.
Installing Debian On MSI Wind U100
https://wiki.debian.org/InstallingDebianOn/MSI/WindU100
Hilfe wie aktiviere ich die Drahtlosfunktion bei msi netbook u100?
https://forum-de.msi.com/index.php?topic=100049.0
Nach einem "Stromlos" sind jedesmal die Taste FN+F11 zu drücken damit das wifi / wlan eingeschaltet wird.Fn + F11 ist schon richtig. Durch mehrmaliges drücken von F11 (FN halten) schaltet es zwischen BT, WLAN, BT+WLAN und alles aus immer weiter. WLAN läßt sich nicht aktivieren, wenn dein U100 kein WLAN-Modul haben sollte.
Wie muss ein autmatisches Startscript aussehen, damit wifi immer eingeschaltet ist?
"Stecker 230 Volt in die Stecker, Gerät bootet mit eingeschaltetem wifi"
Multimediatasten und Sondertasten
https://www.linuxmaker.com/tutorials/sondertasten.html
/etc/rc.localSetzen der Keycodes beim Booten
Damit die Keycodes automatisch mit dem Bootvorgang bekanntgemacht werden können, verwendet man hierfür bei Debian die Datei /etc/rc.local und trägt hier den setkeycodes-Befehl mit den passenden Keycodes ein.
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
setkeycodes e033 231 # '€' character
setkeycodes e034 253 # '@' character instead of '$'
setkeycodes e055 $KEY_ # Orange Wireless On (hardware, led, informational only)
setkeycodes e056 $KEY_ # Orange Wireless Off (hardware, led, informational only)
exit 0
Code: Alles auswählen
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
setkeycodes e033 231 # '€' character
setkeycodes e034 253 # '@' character instead of '$'
#setkeycodes e055 $KEY_ # Orange Wireless On (hardware, led, informational only)
#setkeycodes e056 $KEY_ # Orange Wireless Off (hardware, led, informational only)
exit 0
Wie muss ich das Script anpassen?
Wie komme ich zu den erforderlichen Parametern (setkeycodes)?
Welche Lösung sind noch möglich?
MfG
AxelMD