Outils pour utilisateurs

Outils du site


sysadmin:linux:format_appimage

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
sysadmin:linux:format_appimage [2025/11/23 15:24] – [Exécution hors sandbox] yoannsysadmin: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 99: 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 :
 +
 <file> <file>
 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_pia-3.vvemOE/chrome-sandbox is owned by root and has mode 4755. 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_pia-3.vvemOE/chrome-sandbox is owned by root and has mode 4755.
 </file> </file>
  
-Décompresser l'image et modifier les droits sur le fichier **chrome-sandbox** présent à la racine de l'arborescence de l'application :+ Deux possibilités : 
 + 
 +  * Lancer l'application avec l'option ''%%--no-sandbox%%'' (non recommandé) ; 
 +  * Décompresser l'archive AppImage et corriger le problème de droit ; 
 + 
 + 
 +Pour corriger le problème lié au droit, décompresser l'archive AppImage et modifier les droits sur le fichier **chrome-sandbox** présent à la racine de l'arborescence de l'application :
  
 <code bash> <code bash>
 +# Créer un répertoire dédié pour l'application
 +mkdir pia
 + 
 +# Déplacer l'image dans le répertoire
 +mv pia-3.0.3.AppImage pia
 + 
 # Décompresser l'image # Décompresser l'image
-/pia-3.0.3.AppImage --appimage-extract +cd pia 
 +./pia-3.0.3.AppImage --appimage-extract 
 +  
 +# 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
 +</code>
 +
 +
 +Pour lancer l'application, invoquer le script AppRun  
 +<code bash>  
 +./AppRun  
 </code> </code>
  
sysadmin/linux/format_appimage.1763911479.txt.gz · Dernière modification : 2025/11/23 15:24 de yoann