You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
#!/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
|
|
}
|
|
|
|
if dpkg -l box86 &>/dev/null ;then
|
|
sudo apt purge -y box86
|
|
fi
|
|
|
|
sudo rm -f /etc/apt/sources.list.d/box86.list
|
|
echo "Adding box86 repo..."
|
|
sudo wget https://itai-nelken.github.io/weekly-box86-debs/debian/box86.list -O /etc/apt/sources.list.d/box86.list || error "Failed to download /etc/apt/sources.list.d/box86.list"
|
|
|
|
echo "Adding key..."
|
|
wget -qO- https://itai-nelken.github.io/weekly-box86-debs/debian/KEY.gpg | sudo apt-key add - || error "Failed to add key to box86 repo!"
|
|
|
|
echo "Installing box86..."
|
|
"${DIRECTORY}/pkg-install" "box86-no-binfmt-restart" "$(dirname "$0")" || exit 1
|
|
|
|
if ! sudo systemctl restart systemd-binfmt ;then
|
|
echo -e "\nWarning: systemd-binfmt failed to restart. Getting debug info..."
|
|
echo "Running command: 'systemctl status systemd-binfmt.service'"
|
|
systemctl status systemd-binfmt.service
|
|
echo "Still exiting with success, but you will have to manually run all x86 applications with box86 as binfmt isn't there to do it for you."
|
|
fi
|