0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Arduino IDE 2.x の AppImage を Ubuntu 24.04 以降で起動させる

Posted at

そのままで起動しない問題

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

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?