有馬総一郎のブログ

(彼氏の事情)

2025年06月28日 18:28:50 JST - 1 minute read - Linux

Applmageを実行しようとするとエラーになる

ChromebookのLinuxでちなみにApplmageを実行しようとするとエラーが出たので、メモしておく。

$ chmod +x Bitwarden-2025.3.1-x86_64.AppImage 
$ ./Bitwarden-2025.3.1-x86_64.AppImage 
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://github.com/AppImage/AppImageKit/wiki/FUSE
for more information

と駄目だった。

LinuxでAppImageが起動しないときの対応(その3) - エクシードシステム テックブログにあるとおりsudo apt install fuseで解決される。

しかし、これで終わりでなかった。

$ ./Feishin-0.12.3-linux-x86_64.AppImage 
/tmp/.mount_Feishiw5YGoI/feishin: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory

error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory #Chrome - Qiitaにあるとおり、これも解決法は既に提示されていて、sudo apt install -y libnss3で解決される。

しかし、Applmageってどんなディストリビューションでも初期設定のまますぐ使えると思ったら、そうではないんだな…Debianだからなのか、Chromebook内のLinuxだからなのか、分からないが。