Add QEMU app
parent
f50991405d
commit
f05e436f80
@ -0,0 +1,4 @@
|
|||||||
|
Added to Pi-Apps by Itai-Nelken
|
||||||
|
compiled by Itai-Nelken
|
||||||
|
armhf DEB packaged using QEMU2DEB (tool by Itai-Nelken) by Itai-Nelken.
|
||||||
|
arm64 DEB packaged with checkinstall by Itai-Nelken.
|
@ -0,0 +1,4 @@
|
|||||||
|
QEMU is a generic and open source machine emulator and virtualizer.
|
||||||
|
Latest version of QEMU, Not outdated like the repository's QEMU.
|
||||||
|
if you ever had trouble using the repository's QEMU, this version will work way better.
|
||||||
|
(for example the MacOS 9 dock doesn't appear using the repository's QEMU).
|
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
#!/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 $HOME
|
||||||
|
#Download QEMU
|
||||||
|
rm -f ./qemu-5.2.50-armhf.deb
|
||||||
|
wget https://archive.org/download/macos_921_qemu_rpi/qemu-5.2.50-armhf.deb || error 'Failed to Download QEMU!'
|
||||||
|
#Install QEMU
|
||||||
|
sudo apt install --fix-broken -y ./qemu-5.2.50-armhf.deb || error 'Failed to install QEMU!'
|
||||||
|
rm qemu-5.2.50-armhf.deb
|
@ -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 $HOME
|
||||||
|
#Download QEMU
|
||||||
|
wget https://archive.org/download/macos_921_qemu_rpi/qemu_5.2.50-1_arm64.deb || error 'Failed to Download QEMU!'
|
||||||
|
#Install QEMU
|
||||||
|
sudo apt install --fix-broken -y ./qemu_5.2.50-1_arm64.deb || error 'Failed to unstall QEMU!'
|
||||||
|
rm qemu_5.2.50-1_arm64.deb
|
@ -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 -y qemu
|
||||||
|
sudo apt autoremove -y
|
@ -0,0 +1 @@
|
|||||||
|
https://www.qemu.org/
|
Loading…
Reference in New Issue