Ubuntu无法使用JetBrains Toolbox
# 起因
上周我把系统从Ubuntu 20.04
升级到了22.04.1
,升级后发现一些问题,其中包括我一直在使用的JetBrains Toolbox
无法运行了。鉴于我又是一个 Linux 小白,只能是找找有没有人同我一样遇到问题,自己解决问题目前还达不到这个状态。
# 解决方案
其实官网上面已经有相关问题了Ubuntu 22.04 - Toolbox - IntelliJ Idea update (opens new window)
怎么解决呢,其实就是在Ubuntu 22.04
或者更高版本的系统千万不要安装fuse
,官方称这可能会影响系统。只需要安装libfuse2
即可。
sudo apt update
sudo apt install libfuse2
└─[$] <git:(master*)> sudo apt install libfuse2
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
app-install-data-partner g++-9 genisoimage gnome-screenshot libamtk-5-0 libamtk-5-common libboost-thread1.71.0 libbrlapi0.7 libcbor0.6 libextutils-pkgconfig-perl
libffi7 libheimbase1-heimdal libisl22 libjsoncpp1 libmpdec2 libobjc-9-dev libpcre2-posix2 libperl5.30 libprotobuf17 libsane libsnmp35 libssl1.1 libstdc++-9-dev
libtepl-4-0 libvpx6 libwebp6 libwmf0.2-7 libxmlb1 ltrace lz4 ncal perl-modules-5.30 popularity-contest python-pip-whl python3-entrypoints python3-simplejson
xul-ext-ubufox
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
libfuse2
0 upgraded, 1 newly installed, 0 to remove and 7 not upgraded.
Need to get 90.3 kB of archives.
After this operation, 330 kB of additional disk space will be used.
Get:1 http://cn.archive.ubuntu.com/ubuntu jammy/universe amd64 libfuse2 amd64 2.9.9-5ubuntu3 [90.3 kB]
Fetched 90.3 kB in 1s (61.0 kB/s)
Selecting previously unselected package libfuse2:amd64.
(Reading database ... 260059 files and directories currently installed.)
Preparing to unpack .../libfuse2_2.9.9-5ubuntu3_amd64.deb ...
Unpacking libfuse2:amd64 (2.9.9-5ubuntu3) ...
Setting up libfuse2:amd64 (2.9.9-5ubuntu3) ...
Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
问题解决:
更新时间: 2023/2/10 09:50:10