OSDN Git Service

Create LICENSE
[instantos/instantARCH.git] / manjaro.sh
1 #!/bin/bash
2
3 ##################################
4 ## an instantOS install script  ##
5 ## using calamares as a wrapper ##
6 ##################################
7
8 echo "installing instantOS manjaro edition"
9
10 cd /root
11 [ -e instantARCH ] && rm -rf instantARCH
12 git clone --depth=1 https://github.com/instantos/instantARCH.git
13 cd instantARCH
14 chmod +x *.sh
15 chmod 755 ./*/*.sh
16
17 ./depend/depend.sh
18 ./init/init.sh
19
20 pacman -S --noconfirm --needed base \
21     linux linux-headers \
22     linux-lts linux-lts-headers \
23     linux-firmware
24
25 ./depend/system.sh
26 ./user/modify.sh
27 ./instantos/install.sh
28
29 echo "done installing instantOS"