You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the script install.sh does not work on Debian. In particular, this line. In fact, apt install qemu gives this error:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package qemu is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'qemu' has no installation candidate
The following works:
if [ "$ID" = "debian" ]; then
apt-get -y install qemu-utils qemu-system-x86 qemu-system-gui ovmf
if [ "$ID_LIKE" = "debian" ]; then
apt-get -y install qemu ovmf
(Leaving this open just in case it can be helpful for others / to fix.)
The text was updated successfully, but these errors were encountered:
Hi,
the script
install.sh
does not work on Debian. In particular, this line. In fact,apt install qemu
gives this error:The following works:
(Leaving this open just in case it can be helpful for others / to fix.)
The text was updated successfully, but these errors were encountered: