我尝试在Ubuntu20.04上安装JB工具箱。我从官方网站下载了它,并将它提取出来供选择使用以下内容
sudo tar -xzf jetbrains-toolbox-1.21.9712.tar.gz -C /opt但是当我使用./jetbrains-toolbox命令打开它时,它会在后台打开并在大约10秒内关闭(使用top命令检查它)。在UI中看不到任何东西。甚至连最上面的条形图标也看不见。
我检查了这个位置的日志~/.local/share/JetBrains/Toolbox/logs,但是也找不到任何东西。
我在wayland和x11上试过这个,但仍然不起作用。
有人能帮我解决这个问题吗?
谢谢。
发布于 2022-12-01 02:04:05
对我来说,这是一个缺少libfuse的问题。
0728 Apr 4 2022 /opt/jetbrains-toolbox-1.23.11731/jetbrains-toolbox
sandeep@maystreet-work-pc:~$ /opt/jetbrains-toolbox-1.23.11731/jetbrains-toolbox
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在任何情况下,从命令行运行jetbrains-toolbox都有帮助,并且它位于/opt中。对我来说,完整的路径是/opt/jetbrains-toolbox-1.23.11731/jetbrains-toolbox
https://askubuntu.com/questions/1357297
复制相似问题