Why Mount Your Seedbox? #
Mounting makes your seedbox appear as a local drive on your computer. Browse, play, and manage seedbox files as if they were on your hard drive.
Method 1: SSHFS (Linux/macOS) #
# Installnsudo apt install sshfs # Linuxnbrew install macfuse sshfs # macOSnn# Mountnmkdir ~/seedboxnsshfs username@seedbox-ip:/home/username ~/seedboxnn# Unmountnfusermount -u ~/seedbox # Linuxnumount ~/seedbox # macOS
Method 2: WebDAV #
WebDAV works natively on Windows without extra software:
- Open File Explorer → right-click This PC → Map Network Drive
- URL:
https://your-seedbox-ip/webdav/ - Enter your seedbox credentials
- Your seedbox appears as a drive letter
Method 3: rclone mount #
rclone mount seedbox: ~/seedbox --vfs-cache-mode full
See Rclone Setup Guide for full configuration.