Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| sysadmin:linux:format_appimage [2025/11/23 15:20] – [Erreur "The SUID sandbox helper binary was found, but is not configured correctly."] yoann | sysadmin:linux:format_appimage [2025/11/23 15:41] (Version actuelle) – [Erreur "The SUID sandbox helper binary was found, but is not configured correctly."] yoann | ||
|---|---|---|---|
| Ligne 88: | Ligne 88: | ||
| Normalement les images s' | Normalement les images s' | ||
| - | Dans certains cas il peut être utile de lancer l' | + | Dans certains cas il peut être utile de lancer l' |
| <code bash> | <code bash> | ||
| + | ./ | ||
| </ | </ | ||
| Ligne 98: | Ligne 99: | ||
| - | ===== Dépannages | + | ===== Dépannage |
| ==== Erreur "The SUID sandbox helper binary was found, but is not configured correctly." | ==== Erreur "The SUID sandbox helper binary was found, but is not configured correctly." | ||
| Certaines applications refusent de se lancer et retourne un message du type : | Certaines applications refusent de se lancer et retourne un message du type : | ||
| + | |||
| < | < | ||
| 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 / | 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 / | ||
| </ | </ | ||
| - | Décompresser l'image et modifier les droits sur le fichier **chrome-sandbox** présent à la racine de l' | + | Deux possibilités : |
| + | |||
| + | * Lancer l' | ||
| + | * Décompresser l'archive AppImage et corriger le problème de droit ; | ||
| + | |||
| + | |||
| + | Pour corriger le problème lié au droit, décompresser l' | ||
| <code bash> | <code bash> | ||
| + | # Créer un répertoire dédié pour l' | ||
| + | mkdir pia | ||
| + | |||
| + | # Déplacer l' | ||
| + | mv pia-3.0.3.AppImage pia | ||
| + | |||
| # Décompresser l' | # Décompresser l' | ||
| - | / | + | cd pia |
| + | ./ | ||
| + | |||
| + | # Modifier les droits du fichier chrome-sandbox | ||
| cd squashfs-root/ | cd squashfs-root/ | ||
| sudo chown root: chrome-sandbox | sudo chown root: chrome-sandbox | ||
| sudo chmod 4755 chrome-sandbox | sudo chmod 4755 chrome-sandbox | ||
| + | </ | ||
| + | |||
| + | |||
| + | Pour lancer l' | ||
| + | <code bash> | ||
| + | ./ | ||
| </ | </ | ||