21 lines
494 B
Makefile
21 lines
494 B
Makefile
fix-permissions:
|
|
sudo usermod -a -G dialout $USER
|
|
echo "Please reboot to finish process"
|
|
|
|
setup-distrobox:
|
|
distrobox-create --name HamBox --image ubuntu:24.04
|
|
|
|
done-goofed:
|
|
distrobox-rm HamBox
|
|
|
|
run-73Linux: run-73Linux-Pull
|
|
distrobox-enter --name HamBox -- bash 73-run.sh
|
|
|
|
run-73Linux-Pull:
|
|
distrobox-enter --name HamBox -- bash 73-pull.sh
|
|
|
|
export-apps:
|
|
distrobox-enter --name HamBox -- bash export.sh
|
|
|
|
setup: setup-distrobox run-73Linux export-apps fix-permissions
|