-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01s_install-os-basics.sh
executable file
·29 lines (26 loc) · 1.1 KB
/
01s_install-os-basics.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
set +x # debug off
set -e # exit on error
# --------------------------------------------------------------------
echo ""
echo "APT update + upgrade"
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get -y dist-upgrade
# --------------------------------------------------------------------
echo ""
echo "APT clean up"
sudo apt-get -y autoclean
sudo apt-get -y autoremove
# --------------------------------------------------------------------
echo ""
echo "Download the scripts from Github individually:"
mkdir ~/kiosk-pi
cd ~/kiosk-pi
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/02_install-x11-basics.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/03_install-browser.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/03_install-browser.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/05_setup-x11.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/kiosk.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/screen_off.sh
wget https://raw.githubusercontent.com/frennkie/kiosk-pi/master/screen_on.sh