--- title: Linux icon: linux description: Set up FUSE on Linux for MIRAGE. --- ## FUSE Setup FUSE mode mounts virtual filesystems as real directories, allowing any tool (not just MIRAGE commands) to access mounted data. ### Install FUSE ```bash sudo apt-get install fuse3 libfuse3-dev ``` ```bash sudo dnf install fuse3 fuse3-devel ``` ```bash sudo pacman -S fuse3 ``` ### Allow User Mounts Edit `/etc/fuse.conf` and uncomment `user_allow_other`: ```bash sudo sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf ``` ### Verify ```bash fusermount3 --version ```