This repository was archived by the owner on Dec 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
44 lines (44 loc) · 2.48 KB
/
setup.sh
File metadata and controls
44 lines (44 loc) · 2.48 KB
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
34
35
36
37
38
39
40
41
42
43
44
echo Installing Proot-Distro
pkg install pulseaudio -y
pkg install proot-distro -y
clear
echo Downloading scripts...
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/install-ubuntu20.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/install-ubuntu18.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/install-debian.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/remove-debian.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/remove-ubuntu18.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/remove-ubuntu20.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/reset-ubuntu20.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/reset-ubuntu18.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/reset-debian.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/start-ubuntu20.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/start-ubuntu18.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/start-debian.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/removeall.sh
wget https://github.com/Win81VMUser/ProotLinuxInstallFast/blob/main/Stuff/install-alpine.sh
wget https://github.com/Win81VMUser/ProotLinuxInstallFast/blob/main/Stuff/remove-alpine.sh
wget https://github.com/Win81VMUser/ProotLinuxInstallFast/blob/main/Stuff/reset-alpine.sh
wget https://github.com/Win81VMUser/ProotLinuxInstallFast/blob/main/Stuff/start-alpine.sh
wget https://raw.githubusercontent.com/Win81VMUser/ProotLinuxInstallFast/main/Stuff/audio-termux.sh
clear
echo Creating dirs and moving files into it & sleep 2
mkdir debian
mkdir ubuntu20
mkdir ubuntu18
mkdir alpine-linux
mv *-ubuntu18* ubuntu18
mv *-ubuntu20* ubuntu20
mv *-debian* debian
mv *-alpine alpine-linux
clear
echo Now launch scripts by typing ex. debian/install-debian.sh and debian/start-debian.sh & sleep 3
echo Creating shortcuts for fast access ONLY START COMMANDS!
cp debian/start-debian.sh ~
cp ubuntu18/start-ubuntu18.sh ~
cp ubuntu20/start-ubuntu20.sh ~
echo Chmoding it for fast access - ./start-debian.sh
chmod +x start*
clear
echo Done! Have fun on Proot-Distro!
echo You can remove every file by typing bash removeall.sh!