無法在 Ubuntu 20.04 上執行 AppImage

無法在 Ubuntu 20.04 上執行 AppImage

我無法在 Ubuntu 20.04 上執行 AppImages。所有權限都可以(見圖1)我也嘗試過終端(見圖2)。終端機中的消息是dlopen(): error loading libfuse.so.2AppImages require FUSE to run.但保險絲已安裝(見圖3), 它說fuse is already the newest version (2.9.9-3)。我嘗試使用--reinstallapt 選項重新安裝 fusion,結果相同。

有什麼想法嗎?

先感謝您 :)

權限沒問題

嘗試過終端

保險絲已安裝

答案1

我解決了與錯誤訊息相關的問題:

dlopen(): error loading libfuse.so.2

AppImages require FUSE to run.

透過安裝保險絲。

對於 Ubuntu < 22.04 使用:

sudo apt-get install fuse libfuse2

對於 Ubuntu >= 22.04 使用:

sudo apt install libfuse2

來源:https://docs.appimage.org/user-guide/troubleshooting/fuse.html

答案2

您必須下載適合您實際 CPU 架構的 appimage。

最流行的是 amd64。所以 BalenaEtcher 的下載連結是https://github.com/balena-io/etcher/releases/download/v1.5.122/balenaEtcher-1.5.122-x64.AppImage

答案3

如果您正在努力在 Ubuntu 上將 Etcher 作為 AppImage 運行,我建議合適的方式正如作者所指出的。

搞亂fuse/libfuse2導致我的 Jammy 主機出現依賴地獄,所以要小心。

dpkg: fuse3: dependency problems, but removing anyway as you requested:
 kio-fuse depends on fuse3.
 encfs depends on fuse; however:
  Package fuse is not installed.
  Package fuse3 which provides fuse is to be removed.
 cryfs depends on fuse; however:
  Package fuse is not installed.
  Package fuse3 which provides fuse is to be removed.

相關內容