Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.88 KB

File metadata and controls

57 lines (43 loc) · 1.88 KB
description icon
Setting up Fuse
eject

Fuse

{% hint style="info" %}


{% 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" %}