blob: b80c0eb45514d5b0177c299064dbc34ffa7a24b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Enable the vbox service
systemctl enable vboxservice
# Create the amenthes user
useradd -m -s /bin/bash amenthes
# Setup the lxdm config
echo "session=/usr/bin/startlxde" >> /etc/lxdm/lxdm.conf
echo "autologin=amenthes" >> /etc/lxdm/lxdm.conf
# Enable the lxdm service
systemctl enable lxdm
|