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
Hi! As far as I understood I have to call docker run --rm --privileged aptman/qus -s -- -p after I do docker system prune -af. Is that correct? Is there a way to make qus "survive" a system prune or have it restart automatically?
Btw thanks everyone for this extremely useful piece of software!
The text was updated successfully, but these errors were encountered:
My guess is that you should not need to register the interpreter again after a docker system prune. Did you try it?
When you register the interpereter the first time, it is done persistently, so the interpreter (the QEMU static binary) is loaded into memory. Then, the container exits and it's removed. From there on, it should not matter what you do with docker. You should be able to even uninstall it and still execute foreign binaries on the host (which will be handled by the interpreter still loaded into memory).
Hi! As far as I understood I have to call
docker run --rm --privileged aptman/qus -s -- -p
after I dodocker system prune -af
. Is that correct? Is there a way to make qus "survive" a system prune or have it restart automatically?Btw thanks everyone for this extremely useful piece of software!
The text was updated successfully, but these errors were encountered: