そのままで起動しない問題
Ubuntu 25.04 で Arduino IDE を使おうとしたら素直に起動しなかったので対処方法の備忘録
libfuse2
libfuse が無くてコケる
$ ./arduino-ide_2.3.6_Linux_64bit.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
libfuse2 を入れる
sudo apt install libfuse2
参考: https://qiita.com/7mpy/items/9963aa648929a6d0bc43
sandbox
ごちゃごちゃ言われる(言い方)
$ ./arduino-ide_2.3.6_Linux_64bit.AppImage
[16872:0921/234355.416937:FATAL:setuid_sandbox_host.cc(158)] 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_arduinkxGs2h/chrome-sandbox is owned by root and has mode 4755.
Trace/breakpoint trap (コアダンプ)
--no-sandbox を付けて起動する
$ ./arduino-ide_2.3.6_Linux_64bit.AppImage --no-sandbox
参考: Ubuntu 24.04 でリリース版がそのままで動作しなくなっている · Issue #2071 · VOICEVOX/voicevox