[Allgemein] - Umgang mit AppImage - Druckversion +- Joopi (https://forum.hermann-splitthoff.de) +-- Forum: Wissenswertes (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=1) +--- Forum: Linux (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=3) +--- Thema: [Allgemein] - Umgang mit AppImage (/showthread.php?tid=36) |
Umgang mit AppImage - Joopi - 06-01-2023 Heute wollte ich ein AppImage starten, aber es funktionierte nicht. Es ist darauf zu achten, dass die Datei mit der Endung appimage ausführbar ist. Dann habe ich gelernt, dass die Datei wie folgt aufzurufen ist: Code: ./datei.appimage Doch darauf erschien folgende Fehlermeldung: Zitat:[7056:0612/001959.458244:FATALetuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_Obsidib35jwa/chrome-sandbox is owned by root and has mode 4755. Die Lösung ist, dass diese komische Sandbox ausgeschaltet werden muss: Code: ./datei.appimage --no-sandbox Gefunden habe ich die Info hier: https://github.com/standardnotes/forum/issues/722 |