Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
| software:applications:joplin:installer-joplin-3.4.x-ubuntu [2025/11/23 13:53] – créée yoann | software:applications:joplin:installer-joplin-3.4.x-ubuntu [2025/11/23 16:35] (Version actuelle) – yoann | ||
|---|---|---|---|
| Ligne 2: | Ligne 2: | ||
| - | ====== Installer Joplin 3.4 sur Ubuntu ====== | + | ====== Installer Joplin 3.4 sur Ubuntu |
| ===== Environnement ===== | ===== Environnement ===== | ||
| Ligne 9: | Ligne 9: | ||
| * Joplin 3.4.12 | * Joplin 3.4.12 | ||
| + | |||
| + | ===== Prérequis ===== | ||
| + | |||
| + | Le fichier AppImage de Joplin ne s' | ||
| + | |||
| + | <code bash> | ||
| + | apt install -y libfuse2t64 | ||
| + | </ | ||
| ===== Installation ===== | ===== Installation ===== | ||
| + | |||
| + | L' | ||
| + | |||
| + | < | ||
| + | Sous Ubuntu (24.04 et 25.10), l' | ||
| + | </ | ||
| <code bash> | <code bash> | ||
| - | cd ~/ | + | mkdir -p ~/ |
| + | cd ~/ | ||
| wget -O Joplin-3.4.12.AppImage " | wget -O Joplin-3.4.12.AppImage " | ||
| chmod u+x Joplin-3.4.12.AppImage | chmod u+x Joplin-3.4.12.AppImage | ||
| + | |||
| + | # Décomprression de l' | ||
| + | ./ | ||
| + | |||
| + | # Correction des droits sue le SUID sandbox helper | ||
| + | cd squashfs-root/ | ||
| + | sudo chown root: chrome-sandbox | ||
| + | sudo chmod 4755 chrome-sandbox | ||
| </ | </ | ||
| ===== Intégration à l' | ===== Intégration à l' | ||
| + | <code bash> | ||
| + | mkdir -p ~/ | ||
| + | cd ~/ | ||
| + | wget -O joplin.png " | ||
| + | </ | ||
| + | |||
| + | Créer le fichier .desktop | ||
| + | <code bash> | ||
| + | vim ~/ | ||
| + | </ | ||
| + | |||
| + | <file desktop joplin.desktop> | ||
| + | [Desktop Entry] | ||
| + | Name=Joplin | ||
| + | Comment=Joplin for Desktop | ||
| + | Exec=env APPIMAGELAUNCHER_DISABLE=TRUE "/ | ||
| + | Icon=joplin | ||
| + | StartupWMClass=" | ||
| + | Type=Application | ||
| + | Categories=Office; | ||
| + | MimeType=x-scheme-handler/ | ||
| + | # should be removed eventually as it was upstream to be an XDG specification | ||
| + | X-GNOME-SingleWindow=true | ||
| + | SingleMainWindow=true | ||
| + | </ | ||
| + | |||
| + | |||
| + | <code bash> | ||
| + | update-desktop-database ~/ | ||
| + | update-desktop-database ~/ | ||
| + | </ | ||
| + | |||
| + | ===== Dépannage ===== | ||
| + | |||
| + | ==== Fichier manquant libfuse.so.2 ==== | ||
| + | |||
| + | Au lancement de l' | ||
| + | |||
| + | < | ||
| + | dlopen(): error loading libfuse.so.2 | ||
| + | |||
| + | AppImages require FUSE to run. | ||
| + | You might still be able to extract the contents of this AppImage | ||
| + | if you run it with the --appimage-extract option. | ||
| + | See https:// | ||
| + | for more information | ||
| + | </ | ||
| + | |||
| + | Sous Debian/ | ||
| + | |||
| + | <code bash> | ||
| + | apt install -y libfuse2t64 | ||
| + | </ | ||
| + | |||
| + | ==== Erreur SUID not configured correctly ==== | ||
| + | |||
| + | Le démarrage de l' | ||
| + | < | ||
| + | [29782: | ||
| + | Trappe pour point d' | ||
| + | </ | ||
| + | |||
| + | Deux possibilités : | ||
| + | - Lancer l' | ||
| + | - Décompresser l' | ||
| Ligne 25: | Ligne 113: | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||