背景
最近使用基于wsl2的ubuntu22.04 安装jetbrains全家桶 在安装toolbox,运行./jetbrains-toolbox 时发生如下报错
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
原因:
Ubuntu 22.04 不再默认安装 libfuse2
解决方案:
运行命令: sudo apt install libfuse2
`