forked from SimonDevelop/scripts-auto-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-install.sh
executable file
·33 lines (29 loc) · 1.22 KB
/
all-install.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
30
31
32
33
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Simon Micheneau
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
echo "Starting maintenance"
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
echo "Starting full install"
sh 1-install-core-software.sh
sh 2-install-extra-software.sh
sh 3-install-theme.sh
echo "Starting maintenance after install"
sudo apt-get install -f -y
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
echo "################################################################"
echo "#################### T H E E N D #######################"
echo "################################################################"