-
Notifications
You must be signed in to change notification settings - Fork 3
/
bootableusb.sh
executable file
·38 lines (28 loc) · 1.24 KB
/
bootableusb.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
#Bootable USB Maker for ALG
#!/bin/bash
#set -e
#=================================================================================
#Author: DemonKiller
#SPDX-License-Identifier: GPL-3.0
#=================================================================================
#Warning: Insert One USB at a time only. If you have any other USB either remove them from the system or change the script accordingly. Check size with lsblk (uncommment line 10 & 11).
echo "Welcome to Bootable USB Maker!"
echo "We are making ALG Bootable USB, please wait..."
echo " "
#echo "Printing Partitions in Drive:"
#lsblk
echo "unmounting drive..."
umount /dev/sdb*
echo "Checking for any mounted partitions & unmounting them...."
umount /dev/sdb*
echo "========================================================="
echo "Formatting with ext4.."
yes | sudo mkfs.ext4 /dev/sdb
echo "USB is Formatted.."
echo " "
echo "================================================================"
echo "Making ALG bootable USB, this may take sometime...."
cd out
sudo dd if=alg-xfce-$(date +%Y.%m)-x86_64.iso of=/dev/sdb bs=2048 status='progress'
echo "D O N E! Your USB should be bootable now, with Arch Linux GUI."
echo "Thank YOU!"