diff options
Diffstat (limited to 'kiosk.sh')
-rw-r--r-- | kiosk.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,13 +16,13 @@ execute_command() { # Function to install necessary packages for Debian install_packages_debian() { echo "Starting Package installation on Debian. Please check the terminal output." - sudo apt-get update && sudo apt-get install -y chromium tightvncserver xorg x11-xserver-utils unclutter openbox xdotool vnstat x11vnc + sudo apt-get update && sudo apt-get install -y net-tools chromium tightvncserver xorg x11-xserver-utils unclutter openbox xdotool vnstat x11vnc } # Function to install necessary packages for Raspberry Pi OS Lite install_packages_raspberry() { echo "Starting Package installation on Raspberry Pi OS Lite. Please check the terminal output." - sudo apt-get update && sudo apt-get install -y chromium-browser tightvncserver xorg x11-xserver-utils unclutter openbox xdotool vnstat x11vnc + sudo apt-get update && sudo apt-get install -y net-tools chromium-browser tightvncserver xorg x11-xserver-utils unclutter openbox xdotool vnstat x11vnc sudo ln -s /usr/bin/chromium-browser /usr/bin/chromium } |