Building a Chrome Browser only Ubuntu Kiosk
Download Ubuntu Server Installer ISO and install http://releases.ubuntu.com/16.04/ubuntu-16.04-server-amd64.iso Install xorg & chromium-browser apt-get install xorg chromium-browser Modify grub parameters sudo vim /etc/default/grub GRUB_TIMEOUT=0 GRUB_CMDLINE_LINUX_DEFAULT=”quiet loglevel=3 rd.systemd.show_status=false rd.udev.log-priority=3 acpi=off apm=off consoleblank=0” sudo update-grub Create ~/.xinitrc with the content XAUTHORITY=/home/<user>/.Xauthority DISPLAY=:0.0 xset -dpms XAUTHORITY=/home/<user>/.Xauthority DISPLAY=:0.0 […]