15 lines
394 B
Bash
Executable File
15 lines
394 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# https://unetbootin.github.io/linux_download.html
|
|
|
|
#add-apt-repository ppa:gezakovacs/ppa
|
|
#apt update
|
|
#apt install -y unetbootin
|
|
|
|
VERSION=661
|
|
|
|
cd /var/tmp
|
|
wget -c http://github.com/unetbootin/unetbootin/releases/download/${VERSION}/unetbootin-linux64-${VERSION}.bin
|
|
chmod +x ./unetbootin-linux64-${VERSION}.bin
|
|
apt install -y p7zip-full
|
|
./unetbootin-linux64-${VERSION}.bin
|