-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathloader.sh
executable file
·55 lines (51 loc) · 1.73 KB
/
loader.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
function buildscript(){
echo " exit" >> arch.sh
echo "}" >> arch.sh
echo "if [ \$# != 0 ] && [ "\$1" == "--config" ]; then" >> arch.sh
echo " hostname=\$2" >> arch.sh
echo " username=\$3" >> arch.sh
echo " password=\$4" >> arch.sh
echo " step2;" >> arch.sh
echo "else" >> arch.sh
echo " step1;" >> arch.sh
echo "fi" >> arch.sh
}
function uefi(){
curl -fsSL https://raw.githubusercontent.com/m85091081/arch_install_script/master/arch.part > arch.sh
echo " echo 'Configure Grub-UEFI:'">> arch.sh
echo " pacman -Sy --noconfirm grub efibootmgr os-prober" >> arch.sh
echo " grub-install -target=x86_64-efi --efi-directory=/boot --bootloader-id=grub ">> arch.sh
echo " grub-mkconfig -o /boot/grub/grub.cfg" >> arch.sh
buildscript;
chmod +x arch.sh
./arch.sh
}
function bios(){
curl -fsSL https://raw.githubusercontent.com/m85091081/arch_install_script/master/arch.part > arch.sh
echo " echo 'Configure Grub-BIOS:'">> arch.sh
echo " pacman -Sy --noconfirm grub-bios os-prober" >> arch.sh
echo " grub-install --target=i386-pc --recheck --debug /dev/sda">> arch.sh
echo " grub-mkconfig -o /boot/grub/grub.cfg" >> arch.sh
buildscript;
chmod +x arch.sh
./arch.sh
}
echo "==archlinux install script loader =="
echo "==Please choose verison to install"
echo "1.UEFI Mode"
echo "2.BIOS Mode"
echo "0.End"
echo "==archlinux install script loader =="
read -p ": " choose
if [[ "$choose" =~ ^[0-2]+$ ]]; then
if [[ "$choose" == 1 ]]; then
rm -f arch.sh
uefi;
elif [[ "$choose" == 2 ]]; then
rm -f arch.sh
bios;
elif [[ "$choose" == 0 ]]; then
exit
fi
fi