OSIBytes · OSI DriveYourCloudPricingOSIBytes

Backup management — data redundancy, automated snapshot scheduling, and disaster recovery. OSI Drive for your files.

← Cloud Backup

Linux backup / folder sync

Same Cloud Drive as Windows. Basic is 2 GB. Paid: 1 TB $10 · 2 TB $20 · 10 TB $50 · 20 TB $99.

One-shot upload

zip -r home-$(date +%F).zip "$HOME/Documents"
curl -fsS -u "EMAIL:PASSWORD" \
  -F "file=@home-$(date +%F).zip" \
  https://backup.osibytes.com/sync_api.php

Nightly cron (rclone)

sudo apt-get install -y rclone   # or: curl https://rclone.org/install.sh | sudo bash
# rclone config → name osibytes → webdav/http →
# url https://backup.osibytes.com/sync_api.php
# user = backup login email · pass = account password

# /etc/cron.daily/osibytes-backup
rclone sync /home/YOU/Documents osibytes:linux --progress

Quota is enforced on the server (HTTP 507 when full). Use a dedicated Linux user or systemd timer for servers.

Windows GitHub Storage plans