How to Mount Your Seedbox as a Network Drive (Windows, Mac, Linux)How to Mount Your Seedbox as a Network Drive (Windows, Mac, Linux)

How to Mount Your Seedbox as a Network Drive (Windows, Mac, Linux)

Why Mount Your Seedbox?

Mounting your seedbox as a network drive lets you browse and access seedbox files as if they were on a local hard drive. Open files directly in VLC, drag and drop to copy, or integrate with Plex running on your local machine.

Method 1: SSHFS (Linux/macOS)

Install SSHFS

# Linux
sudo apt install sshfs

# macOS
brew install macfuse
brew install sshfs

Mount

mkdir ~/seedbox
sshfs username@seedbox-ip:/home/username ~/seedbox

Your seedbox files now appear in the ~/seedbox folder. Browse them in your file manager or open media files directly in VLC.

Unmount

fusermount -u ~/seedbox   # Linux
umount ~/seedbox          # macOS

Method 2: rclone (All Platforms)

rclone is more versatile than SSHFS and works on Windows, macOS, and Linux.

Install rclone

# All platforms
curl https://rclone.org/install.sh | sudo bash

Configure

rclone config
# Choose: New remote → SFTP → Enter seedbox host, user, password

Mount

rclone mount seedbox: ~/seedbox --vfs-cache-mode full

The --vfs-cache-mode full flag caches files locally for smooth playback of video files.

Method 3: WinSCP/SFTP Drive (Windows)

For Windows users who prefer a GUI, WinSCP can map your seedbox as a network drive letter (e.g., S:) via its built-in SFTP integration.

Performance Tips

  • Use SFTP (not FTP) for encrypted, reliable connections
  • Enable caching in rclone for video playback — without cache, seeking will be slow
  • For large file copies, use LFTP instead of drag-and-drop (faster segmented transfers)

Works With Any Seedbox

All methods work with any seedbox that provides SSH/SFTP access, including Iseedfast and Evoseedbox.

Leave a Reply

Your email address will not be published. Required fields are marked *