Installation
Linux
Install GhostFS on Linux
Installing on Linux
Prerequisites
Install FUSE:
# Ubuntu/Debian
sudo apt install libfuse-dev
# Fedora
sudo dnf install fuse-devel
# Arch
sudo pacman -S fuse2Quick Install
curl -fsSL https://ghostfs.com/install.sh | shManual Download
# Default (Ubuntu 24.04 / generic x86_64)
curl -fSL https://ghostfs.com/release/latest/GhostFS-linux-amd64 -o ghostfs
# Ubuntu 22.04
curl -fSL https://ghostfs.com/release/latest/GhostFS-linux-ubuntu-22.04 -o ghostfs
# Ubuntu 24.04
curl -fSL https://ghostfs.com/release/latest/GhostFS-linux-ubuntu-24.04 -o ghostfs
chmod +x ghostfs
sudo mv ghostfs /usr/local/bin/Verify Installation
ghostfs --versionAllow Non-Root Mounts (Optional)
To mount without sudo, add yourself to the fuse group:
sudo usermod -aG fuse $USER
# Log out and back in for changes to take effect