Difference between revisions of "Downloading from seedbox"

From Pulsed Media Wiki
(Downloading from Seedbox)
 
Line 1: Line 1:
== Downloading from Seedbox ==
+
== How to Download Files from Your Seedbox ==
  
There are several ways to download files from your seedbox. This guide will cover the most common methods: FTP, SFTP and HTTPS.
+
There are several ways to download files from your seedbox to your local computer. This guide explains the most common and reliable methods: '''FTP, SFTP, HTTPS, and SSH.
 +
'''
 +
Each method has its own pros and cons. We'll walk you through what they are, how to use them, and when to choose one over the other.
  
=== Downloading using FTP ===
+
=== Method 1: Downloading with FTP (File Transfer Protocol) ===
  
FTP is a simple and common method for downloading files. You'll need an FTP client to connect to your seedbox. The connection details were provided in the email you received when you set up your service. After connecting, you can select the files or folders you want to download and choose where to save them on your local machine.
+
What is FTP?
 +
FTP is a basic and widely used way to transfer files over the internet. It’s fast and easy to use but not encrypted, meaning data is sent in plain text.
  
For a list of recommended FTP clients, see [[Seedbox_access_via_FTP,_SSH_and_SFTP]].
+
'''What you need:'''
 +
An FTP client (like '''FileZilla''', WinSCP, or Cyberduck)
  
=== Downloading using SFTP ===
+
Your FTP login details (provided in your welcome email)
  
SFTP is similar to FTP, but it adds an extra layer of security by encrypting the data transferred between your seedbox and your local machine. You can use an SFTP client in much the same way as an FTP client. Connect using the details provided, select the files or folders you want to download, and choose where to save them.
+
🔧 Steps:
 +
Open your '''FTP''' client.
  
For more options, see [[Seedbox_access_via_FTP,_SSH_and_SFTP]].
+
Enter the following:
  
For a step-by-step guide on connecting to a server with SFTP using FileZilla, see [[Connecting via SFTP using filezilla|Filezilla: Connect to server with SFTP]].
+
'''Host:''' your seedbox address (e.g. ftp.le-example.pulsedmedia.com)
  
=== Downloading via HTTPS ===
+
'''Username and Password:''' from your seedbox email
  
You can also download files directly from your seedbox using HTTPS. This can be done through the file manager in the GUI or by appending 'data/' to the URL of your seedbox. However, this method is speed restricted and not recommended for large downloads.
+
'''Port:''' usually 21
  
Remember, the best method for downloading depends on your specific needs and the size of the files you're transferring.
+
Click Connect.
 +
 
 +
Once connected, browse to your files.
 +
 
 +
Drag and drop files/folders to your local computer.
 +
 
 +
📝 Note: '''FTP is fast but less secure. Use SFTP if you prefer encrypted transfers.'''
 +
 
 +
 
 +
=== Downloading with SFTP (Secure File Transfer Protocol) ===
 +
 
 +
 
 +
What is SFTP?
 +
SFTP works like FTP but encrypts everything for better security. It’s the recommended method for most users.
 +
 
 +
✅ What you need:
 +
An '''SFTP client (FileZilla, WinSCP, or Cyberduck all support SFTP)'''
 +
 
 +
Your '''SFTP''' credentials (same as your '''SSH login''')
 +
 
 +
🔧 Steps:
 +
Open your SFTP client (e.g. FileZilla).
 +
 
 +
Enter the following:
 +
 
 +
'''Host:''' your seedbox address (e.g. sftp.le-example.pulsedmedia.com)
 +
 
 +
Username and Password
 +
 
 +
'''Port:''' usually 22
 +
 
 +
'''Protocol:''' Select SFTP
 +
 
 +
Connect and browse your files.
 +
 
 +
Drag and drop files to your computer.
 +
 
 +
 
 +
=== Downloading via HTTPS (Web Browser) ===
 +
 
 +
'''
 +
What is HTTPS downloading?'''
 +
This allows you to download files directly using your web browser. It’s simple but slower and not ideal for large files.
 +
 
 +
🔧 Steps:
 +
Log into your seedbox’s web interface.
 +
 
 +
Go to the File Manager or use the address:
 +
 
 +
'''https://your.seedbox.url/user/data/'''
 +
Browse to the file you want to download.
 +
 
 +
Right-click the file and select "Download".
 +
 
 +
📝 Note: This method is speed-limited and best for small or occasional downloads.
 +
 
 +
 
 +
== '''Downloading via SSH (Command Line)''' ==
 +
 
 +
'''What is SSH?'''
 +
SSH (Secure Shell) gives you command-line access to your seedbox. With it, you can use tools like scp (secure copy) or rsync to download files securely and efficiently.
 +
 
 +
This method is great for advanced users, automated backups, or large data transfers.
 +
 
 +
✅ What you need:
 +
A terminal app (Linux/macOS) or SSH client (e.g. PuTTY for Windows)
 +
 
 +
'''SSH''' login credentials (included in your welcome email)
 +
 
 +
'''Option 1: Using scp (Secure Copy)'''
 +
 
 +
'''scp username@seedbox.address:/home/username/downloads/filename.ext /local/folder/'''
 +
 
 +
EXAMPLE: '''scp testuser@le-example.pulsedmedia.com:/home/testuser/data/movie.mkv ~/Downloads/'''
 +
 
 +
'''Option 2: Using rsync (Recommended for large/multiple files)'''
 +
 
 +
'''rsync -avz username@seedbox.address:/home/username/downloads/ /local/folder/'''
 +
 
 +
'''rsync -avz testuser@le-example.pulsedmedia.com:/home/testuser/data/ ~/SeedboxDownloads/'''
 +
 
 +
'''rsync''' can resume interrupted downloads and only transfers changes, which saves time and bandwidth.
  
 
[[Category:seedbox guides]]
 
[[Category:seedbox guides]]

Latest revision as of 11:07, 18 April 2025

How to Download Files from Your Seedbox

There are several ways to download files from your seedbox to your local computer. This guide explains the most common and reliable methods: FTP, SFTP, HTTPS, and SSH. Each method has its own pros and cons. We'll walk you through what they are, how to use them, and when to choose one over the other.

Method 1: Downloading with FTP (File Transfer Protocol)

What is FTP? FTP is a basic and widely used way to transfer files over the internet. It’s fast and easy to use but not encrypted, meaning data is sent in plain text.

What you need: An FTP client (like FileZilla, WinSCP, or Cyberduck)

Your FTP login details (provided in your welcome email)

🔧 Steps: Open your FTP client.

Enter the following:

Host: your seedbox address (e.g. ftp.le-example.pulsedmedia.com)

Username and Password: from your seedbox email

Port: usually 21

Click Connect.

Once connected, browse to your files.

Drag and drop files/folders to your local computer.

📝 Note: FTP is fast but less secure. Use SFTP if you prefer encrypted transfers.


Downloading with SFTP (Secure File Transfer Protocol)

What is SFTP? SFTP works like FTP but encrypts everything for better security. It’s the recommended method for most users.

✅ What you need: An SFTP client (FileZilla, WinSCP, or Cyberduck all support SFTP)

Your SFTP credentials (same as your SSH login)

🔧 Steps: Open your SFTP client (e.g. FileZilla).

Enter the following:

Host: your seedbox address (e.g. sftp.le-example.pulsedmedia.com)

Username and Password

Port: usually 22

Protocol: Select SFTP

Connect and browse your files.

Drag and drop files to your computer.


Downloading via HTTPS (Web Browser)

What is HTTPS downloading? This allows you to download files directly using your web browser. It’s simple but slower and not ideal for large files.

🔧 Steps: Log into your seedbox’s web interface.

Go to the File Manager or use the address:

https://your.seedbox.url/user/data/ Browse to the file you want to download.

Right-click the file and select "Download".

📝 Note: This method is speed-limited and best for small or occasional downloads.


Downloading via SSH (Command Line)

What is SSH? SSH (Secure Shell) gives you command-line access to your seedbox. With it, you can use tools like scp (secure copy) or rsync to download files securely and efficiently.

This method is great for advanced users, automated backups, or large data transfers.

✅ What you need: A terminal app (Linux/macOS) or SSH client (e.g. PuTTY for Windows)

SSH login credentials (included in your welcome email)

Option 1: Using scp (Secure Copy)

scp username@seedbox.address:/home/username/downloads/filename.ext /local/folder/

EXAMPLE: scp testuser@le-example.pulsedmedia.com:/home/testuser/data/movie.mkv ~/Downloads/

Option 2: Using rsync (Recommended for large/multiple files)

rsync -avz username@seedbox.address:/home/username/downloads/ /local/folder/

rsync -avz testuser@le-example.pulsedmedia.com:/home/testuser/data/ ~/SeedboxDownloads/

rsync can resume interrupted downloads and only transfers changes, which saves time and bandwidth.