Add USBIUmager app
parent
c0b40617e7
commit
3d61f71357
@ -0,0 +1,4 @@
|
||||
A very minimal GUI app that can write compressed disk images to USB drives
|
||||
USBImager is a very useful and minimal app that works like etcher and RaspberryPi imager but needs less resources, (it's less then 400kb).
|
||||
|
||||
to run from terminal, type: usbimager.
|
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.0 KiB |
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
||||
cd Downloads || error 'Failed to change directory!'
|
||||
wget https://gitlab.com/bztsrc/usbimager/-/raw/binaries/usbimager_1.0.5-armhf.deb || error 'Failed to Download usbimager_1.0.5-armhf.deb!'
|
||||
sudo dpkg -i usbimager_1.0.5-armhf.deb || error 'Failed to install usbimager_1.0.5-armhf.deb!'
|
||||
rm usbimager_1.0.5-armhf.deb
|
||||
|
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd ~/Downloads || error "Failed to change directory to /home/pi!"
|
||||
git clone https://gitlab.com/bztsrc/usbimager.git
|
||||
cd usbimager/src/
|
||||
make deb
|
||||
cd ..
|
||||
sudo dpkg -i usbimager_1.0.5-arm64.deb
|
||||
cd ..
|
||||
rm -rf usbimager
|
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
sudo apt purge usbimager -y || error 'Failed to uninstall USBImager!'
|
||||
|
@ -0,0 +1 @@
|
||||
https://gitlab.com/bztsrc/usbimager/
|
Loading…
Reference in New Issue