Skip to content

Instantly share code, notes, and snippets.

@ndunks
Last active February 20, 2021 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndunks/f8551f152be0c4009121dbc5af214a0c to your computer and use it in GitHub Desktop.
Save ndunks/f8551f152be0c4009121dbc5af214a0c to your computer and use it in GitHub Desktop.
based on Debian 10 Netinstall Minimal Desktop

sudo qemu-system-x86_64 -enable-kvm -smp 4 -m 2G -drive file=/dev/sdc,format=raw -serial mon:stdio -cdrom debian-10.8.0-amd64-netinst.iso -boot d

Packages

apt install --no-install-recommends xorg
apt install lightdm openbox chromium

Disable tty2-6

systemctl mask getty-static

Auto Login

/etc/lightdm/lightdm.conf

[SeatDefaults]
autologin-user=kiosk-user
user-session=openbox

Auto Start KIOSK

.config/openbox/autostart

chromium \
    --no-first-run \
    --disable \
    --disable-translate \
    --disable-infobars \
    --disable-suggestions-service \
    --disable-save-password-bubble \
    --start-maximized \
    --kiosk "http://www.google.com" &

refs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment