> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mirage.strukto.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Linux

> 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

<Tabs>
  <Tab title="Ubuntu / Debian">
    ```bash theme={null}
    sudo apt-get install fuse3 libfuse3-dev
    ```
  </Tab>

  <Tab title="Fedora / RHEL">
    ```bash theme={null}
    sudo dnf install fuse3 fuse3-devel
    ```
  </Tab>

  <Tab title="Arch Linux">
    ```bash theme={null}
    sudo pacman -S fuse3
    ```
  </Tab>
</Tabs>

### Allow User Mounts

Edit `/etc/fuse.conf` and uncomment `user_allow_other`:

```bash theme={null}
sudo sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf
```

### Verify

```bash theme={null}
fusermount3 --version
```
