Best cloud storage services with CLI for Linux Mangaka: (Tutorial)

TopLinux

Introduction

In the world of Linux, particularly for specialized distributions like Linux Mangaka, having reliable, scriptable and secure cloud storage with a command-line interface (CLI) is invaluable. Whether you’re syncing large art assets, backing up code, or collaborating on manga projects, these solutions integrate seamlessly into your terminal workflows. Below, we explore top contenders—including pCloud, MEGA, Proton Drive, Filen, Tresorit, Icedrive—and a few more, offering a comprehensive comparison, usage examples, and troubleshooting tips.

Top Recommendations for Linux Mangaka

  • pCloud – Generous lifetime plans, native CLI tool (pcloud.com).
  • MEGA – 20 GB free, end-to-end encryption, official MEGAcmd (mega.nz).
  • Proton Drive – Privacy-first, zero-access encryption, community CLI (proton.me/drive).
  • Filen – Unlimited file size, C4-level encryption, official CLI (filen.io).
  • Tresorit – Business-grade security, no official CLI but excellent Rclone support (tresorit.com).
  • Icedrive – Modern UI/FUSE support, CLI wrapper amp Rclone (icedrive.net).
  • Backblaze B2 – Affordable pay-as-you-go, official B2 CLI amp Rclone (backblaze.com/b2).

Comparison Table

Provider Free Tier Encryption Official CLI Rclone Support Link
pCloud 10 GB (expandable) Optional client-side Yes (pcloudcc) Yes Visit
MEGA 20 GB Client-side Yes (megacmd) Yes Visit
Proton Drive 1 GB Client-side Community (proton-drive-cli) Partial Visit
Filen 2 GB Client-side Yes (filen-cli) Partial Visit
Tresorit 3 GB trial Client-side No
Use Rclone WebDAV
Yes Visit
Icedrive 10 GB Client-side Community / FUSE Yes Visit
Backblaze B2 10 GB Server-side Yes (b2 CLI) Yes Visit

Which One to Choose?

  • If you need lifetime deals and a polished native client, go with pCloud.
  • For maximum free storage out-of-the-box (20 GB) and strong encryption, choose MEGA.
  • If privacy is paramount and you’re comfortable with community tools, try Proton Drive.
  • For unlimited file sizes and enterprise-level encryption, Filen is ideal.
  • On a tight budget and need S3-compatible storage, Backblaze B2 is the best value.
  • For a GUI CLI hybrid and FUSE mount, consider Icedrive.
  • If you already use Rclone extensively and want business-grade security, mount Tresorit via WebDAV.

How to Use Each with CLI

1. pCloud (pcloudcc)

Install the official pCloud CLI and mount your drive locally.

# Debian/Ubuntu
wget -O pcloudcc.deb https://downloads.pcloud.com/pcloudcc.deb
sudo dpkg -i pcloudcc.deb
# Login
pcloudcc --login your@email.com
# Mount at ~/pcloud
mkdir -p ~/pcloud
pcloudcc --mount ~/pcloud

Upload / download:

# Sync local folder to pCloud
rsync -avz ~/manga/ ~/pcloud/manga/

2. MEGA (MEGAcmd)

The MEGA CLI offers full account management.

# Debian/Ubuntu
sudo apt update
sudo apt install megacmd
# Login
mega-login your@email.com YourPassword
# List
mega-ls
# Upload
mega-put ./chapter1.png /Root/manga/
# Download
mega-get /Root/manga/chapter1.png ./ 

3. Proton Drive (proton-drive-cli)

A community Python-based CLI. Requires Python3 and pip.

# Install
pip3 install proton-drive-cli
# Authorize (opens browser)
proton-drive --login
# Upload
proton-drive upload ./artwork.png /Manga/
# Download
proton-drive download /Manga/artwork.png ./ 

4. Filen (filen-cli)

# Download the Linux binary
wget https://linux.filen.io/filen-cli
chmod  x filen-cli
# Login
./filen-cli login
# Upload
./filen-cli upload ./draft.zip /manga-drafts/
# List remote folder
./filen-cli list /manga-drafts/

5. Tresorit via Rclone

No official CLI, but WebDAV makes it Rclone-accessible.

# Install Rclone
curl https://rclone.org/install.sh  sudo bash
# Configure tresorit remote
rclone config
# (choose WebDAV, URL=https://webdav.tresorit.com)
# Mount
mkdir -p ~/tresorit
rclone mount tresorit: ~/tresorit --daemon
# Sync
rclone sync ~/project/ tresorit:MangaProject

6. Icedrive (Rclone or icedrive-cli)

You can use the community wrapper or Rclone.

# Rclone method (official config docs)
rclone config
# Choose “icedrive” plugin and follow prompts
# Mount
mkdir ~/icedrive
rclone mount icedrive: ~/icedrive --daemon
# icedrive-cli wrapper (if available)
sudo snap install icedrive
icedrive login
icedrive upload ./image.png /

7. Backblaze B2 (b2 CLI)

# Install official B2 CLI
pip3 install --upgrade b2
# Authorize
b2 authorize-account yourKeyID yourApplicationKey
# Create bucket
b2 create-bucket manga-bucket allPrivate
# Upload
b2 upload-file manga-bucket ./page1.png page1.png
# Download
b2 download-file-by-name manga-bucket page1.png ./ 

Typical Problems and Troubleshooting

  • Authentication failures: Ensure correct email/password, update CLI to latest version.
  • Mount issues: Check FUSE permissions (sudo usermod -aG fuse USER), then log out/in.
  • Slow transfers: Use the --transfers flag (Rclone) or increase parallel threads.
  • Quota exceeded: Verify free tier limits and upgrade plan or remove old files.
  • Token expiration: Re-authenticate (e.g., mega-login, pcloudcc --login).
  • Dependency errors: Install prerequisites (Python3, pip, FUSE, libcurl, etc.) via package manager.

With these tools and tips, Linux Mangaka users can seamlessly integrate robust cloud storage into their terminal-centric workflows, guaranteeing secure backups and hassle-free collaboration on every drawing, script, or page.

Be the first to leave a comment

Leave a Reply

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