diff options
author | Kablersalat <crt@adastra7.net> | 2025-02-24 18:20:36 +0100 |
---|---|---|
committer | Kablersalat <crt@adastra7.net> | 2025-02-24 18:20:36 +0100 |
commit | 746c592645272cc28a2c5315ea29b0df5ad8d78c (patch) | |
tree | 1c0d81e359d96ad85c3b167bf557443c17b5f5b6 | |
parent | b743530ece8af3aecffe4367d0456c993149a1a1 (diff) |
actually maybe install netstat
-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 } |