Xorg zum laufen gebracht. WLAN vor konfiguriert.

This commit is contained in:
Steffen Probst
2021-08-10 14:41:31 +02:00
parent 732e37e563
commit b22b438f2f
5 changed files with 30 additions and 4 deletions

16
etc/X11/Xwrapper.config Normal file
View File

@ -0,0 +1,16 @@
# Xwrapper.config (Debian X Window System server wrapper configuration file)
#
# This file was generated by the post-installation script of the
# xserver-xorg-legacy package using values from the debconf database.
#
# See the Xwrapper.config(5) manual page for more information.
#
# This file is automatically updated on upgrades of the xserver-xorg-legacy
# package *only* if it has not been modified since the last upgrade of that
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command as root:
# dpkg-reconfigure xserver-xorg-legacy
allowed_users=anybody
needs_root_rights=yes

View File

@ -4,9 +4,9 @@ i# If you change this file, run 'update-grub' afterwards to update
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_TIMEOUT=1
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 quiet"
GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 quiet splash acpi_osi="
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs

View File

@ -0,0 +1,4 @@
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid ESSID
wpa-psk PASSWORD

View File

@ -35,7 +35,7 @@ echo thin$(cat /sys/class/net/wlan0/address | sed '/://g') > /tmp/hostname && ho
# start X environment
if [ -f /boot/client-cfg/xinitrc ]; then
ln -fs /boot/client-cfg/xinitrc /home/thinnote/.xinitrc;
su -l thinnote -s /bin/bash -c 'startx' &
su -l thinnote -s /bin/bash -c 'startx -- vt1' &
fi
exit 0