description | icon |
---|---|
Setting up Fuse |
eject |
{% hint style="info" %}
- AppImage has official Guide: https://github.com/appimage/appimagekit/wiki/fuse
Note
: If you havefuse(2)
, consider upgrading tofuse3
, some distros may require eitherfuse(2)
ORfuse(3)
NOT both, choosefuse3
- Your distro should already come with the kernel modules, and generally, only the libraries/programs need to be installed: {% endhint %}
{% code overflow="wrap" %}
!#Use doas/sudo wherever applicable
apk update --no-interactive
apk add fuse fuse3 --latest --upgrade --no-interactive
{% endcode %}
{% code overflow="wrap" %}
!#Use doas/sudo wherever applicable
pacman -y --sync --refresh --noconfirm
#Ideally, having both fuse2 & fuse3 side by side works, if it doesn't only install fuse3
pacman -Sy fuse2 fuse3 --noconfirm
{% endcode %}
{% code overflow="wrap" %}
!#Use doas/sudo wherever applicable
sudo apt update -y -qq
sudo apt install fuse3 -y
{% endcode %}
{% hint style="info" %}
- Fusermount: https://command-not-found.com/fusermount
- Fusermount3: https://command-not-found.com/fusermount3 {% endhint %}