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