A really basic Bash script that helps you display one or multiple websites Kiosk style on Debian based distros.
What you need
- sign in to your Debian machine using SSH and kiosk user
ssh kiosk@your.debian.host
- sign into your root account using
su
- install the basics :
apt update && apt upgrade -y && apt install sudo dialog git htop tmux screen screenfetch -y
- add sbin to bash paths for root
echo 'export PATH=$PATH:/sbin:/usr/sbin' | tee -a ~/.bashrc ~/.profile > /dev/null && bash
- Add kiosk user to sudo group
bash
usermod -aG sudo kiosk
exit
exit
exit
- Sign back in via ssh
ssh kiosk@your.debian.host
- add sbin to bash paths for kiosk user
echo 'export PATH=$PATH:/sbin:/usr/sbin' | tee -a ~/.bashrc ~/.profile > /dev/null && bash
- download the kiosk and go to its folder
git clone https://git.teleco.ch/crt/basic-kiosk.git/ && cd basic-kiosk
- run the installer