I need to install fuse on Ubuntu 22.04. I've tried installing via snap install fuse
but that didn't work, so what is the safest way to install fuse on Ubuntu 22.04? Thanks!
Asked
Active
Viewed 8.2k times
14

Guy
- 144
- 1
- 17
2 Answers
17
fuse
is present in the Ubuntu repositories, and therefore can be safely installed.
However, it conflicts with a newer version of fuse, fuse3
, which is installed by default. If you choose to use fuse
rather than fuse3
, you will lose some functionality that depends on fuse3
.
Installing fuse
indeed will cause the removal of
fuse3 gnome-shell-extension-desktop-icons-ng gvfs-fuse ntfs-3g
xdg-desktop-portal xdg-desktop-portal-gnome
xdg-desktop-portal-gtk
In addition, the metapackages ubuntu-desktop
and ubuntu-desktop-minimal
will be removed.
fuse
is in the software repository. Installation therefore is safe:
sudo apt install fuse
but you have to accept the consequences on functionality of the default desktop.
15
See this: https://github.com/AppImage/AppImageKit/wiki/FUSE
For example, on Ubuntu (>= 22.04):
Warning: Do not install the fuse package as of 22.04 or > you may break your system
sudo add-apt-repository universe sudo apt install libfuse2

ile
- 293
-
It seems that this may not work very well. I could not run one AppImage app. I got these: "error: ac63-[2022-06-06 13:59:07] GPU process crashed" – ile Jun 06 '22 at 14:22
-
For me it did work.
Tried with BalenaEtcher and worked fine. We never know :) – Lv2eof Sep 13 '22 at 17:49 -
2Yes,
libfuse2
NOTfuse
for >= 22.04 If you already installedfuse
remove it. Then reinstallubuntu-gnome-desktop
. Don't forget to reselect theGnome
window manager at login (which disappeared when you installedfuse
causing logins to FAIL.) – Dominic Cerisano Nov 07 '23 at 23:32
--just_do_it
and not allow inadvertent removal of packages required for proper desktop operation! I inadvertently installed fuse thengnome-settings
disappeared and I wondered why until I checked/var/log/apt/history.log
and saw the error of my ways... – AnthonyK Mar 20 '23 at 04:06rm -rf /
asks you to do to avoid damaging your system - so that a user doesn't inadvertently uninstall packages as important asubuntu-desktop
on a desktop. – AnthonyK Mar 20 '23 at 09:55fuse
on gnome will borkgdm
and prevent login (removes theGnome
option for login). Dropping to the command line you cansudo apt reinstall ubunutu-gnome-desktop
then login again BUT make sure you select theGnome
window manager from the GDM settings. Also "GDM" lol - obvious anagram. – Dominic Cerisano Nov 07 '23 at 23:28