Backblaze S2
Posted : admin On 1/29/2022I want to backup our family photos to BackBlaze S2 from our Synology. Will the photos reside on BB just as they are on the Synology or will they be compressed into parts? I consider BackBlaze to be cold storage and don't plan on browsing or downloading unless there's a major issue. Existing users of Backblaze B2 Cloud Storage may want to take advantage of the Backblaze B2 S3 Compatible API with existing data stored in B2 Cloud Storage from before this feature was offered. There are two main ways you can transfer data from an existing bucket to a newer S3 compatible bucket. Granted, it isn’t the best solution for cloud storage (see pCloud for that instead). Still, with 600 Petabytes data stored and over 30 billion files recovered thus far, it really is the best choice for simple and convenient backing up of your computer files. 6 Things We Love About Backblaze. What makes Backblaze a worthwhile backup cloud storage provider is how it is engineered. Protect and share your data, anywhere. Synology C2 Storage is designed to offer the most integrated and cost-effective cloud storage solution for Synology NAS users.

Introduction: How to Setup a Backup on Raspebrry Pi and Any Other ARM
Raspberry Pi backup is what you really need if you work on Raspbian. Believe me, you do! If you иackup your Raspberry Pi SD card in due course, someday it may save your files and your project. Alike any other hardware, the RPi devices may sometimes simply stop working.
It can occur due to a number of reasons: overheating, errors, energy supply issues, cable connection failure… All these problems will make you unplug and plug-in again the device to restart it. And such actions taken repeatedly will certainly lead to spoiling your SD card you are saving your work files to.
On the other hand, you can damage or delete your files occasionally with your own hands! There a lot of examples when we do something wrong because of the overall tiredness, inattentiveness or just being in a hurry.
Also, another reason to backup Raspberry Pi is the simplicity of starting all of the work over. I mean if you are completely messed up while doing some project on your RPi, it takes very short time to delete everything, reinstall the Raspbian and start from the last successful point! This is very simple in case you back up the file system properly.
Finally, you may want to duplicate what you’ve done. In this case, it is very convenient to clone the Raspbian image (which is also a kind of backup) and reuse it again somewhere else.
So, you should do the backup of your Raspberry Pi over the network or literally make your RPi clone to keep your life in harmony!
OK, now I hope you understand the importance of backing up your Raspberry Pi SD card. Below we describe 3 ways to do that.
Step 1: Backup Raspberry Pi SD Card
This way fully depends on your particular goals and wishes. By using SD card backup approach you may either copy the entire image of your file system or choose only to copy selected data to your SD card. If you would like to act the simplest way by storing the separate data or files, simply set up WinSCP client on your Windows PC device, connect to Raspberry Pi via SFTP connection and copy the particular files you need directly from RPi.
On the other hand, creating the whole image of Raspbian may be quite reasonable. It implies cloning the whole file system structure. So, you make a clone of SD card, write the copied image to a new SD card then just plug it in a new RPi and you have a full clone of the original device. If you chose to build this way of a backup, everything will depend on the operating system you are going to use: Linux, Mac or Windows.
LINUX
It’s quite easy, as you have to fulfill the standard command:
dd if=/dev/sdx of=/path/to/image bs=1M
Note, that “/dev/sdx” should be your SD card
MAC
You can use the same “dd” command here, but have to change your SD card designation:
dd if=/dev/rdiskx of=/path/to/image bs=1M
As you’ve already understood, /dev/rdiskx goes for your SD card.
WINDOWS
You’ll need a small additional app here, called Win32DiskImager. This app will help you to create the Raspberry Pi image from files kept on your SD card and store it safely on your PC. To make the Raspbian image follow these steps
- Safely remove your SD card from the RPi and insert it into your PC slot
- Open Win32 Disk Imager
- Choose the name and location of the backup file and the letter for your SD card
- Click “Read”
After a short while, the system will create an image of the SD card. Usually, it takes several minutes, depending on the size of the card memory. After that, your Raspbian is fully backed up.

Step 2: CrashPlan for Raspberry Pi Backup
CrashPlan on Raspberry Pi is what I have already written about. Copying files or full image are a manual kind of work. But you definitely need the automatic backup for your Raspberry Pi. CrashPlan is one of the kind. CrashPlan can back up your files to both cloud and your PC or laptop and even on PC of your friend Backup to the cloud is a paid option which includes different pricing plans. Other ones are free. For that, you need a CrashPlan client running on Raspbian.
So, here is where you need ExaGear Desktop. It’ll enable running the x86 CrashPlan app on a Raspberry Pi device. After you get the ExaGear license or at least a demo, follow the instructions below.
As a zero step toy need to download CrashPlan from the official website www.crashplan.com. Note, that you need the Linux version! Then:
1. Unpack ExaGear Desktop archive:
cd home/pi/Downloads tar -xvzpf exagear-desktop-rpi*.tar.gz
2. Install ExaGear:
sudo ./install-exagear.sh
Start guest x86
3. Enter the guest x86 system using the following command:
exagear
Starting the shell in the guest image /opt/exagear/images/debian-8
Check if guest x86 system is on:
arch
There should be the return:
i686
4. Update the guest system:
sudo apt-get update
5. Download libraries necessary for CrashPlan:
sudo apt-get install lxrandr libgtk2.0-0 libXtst6 cpio
6. Unpack the CrashPlan archive, from the default RPi directory (usually, Downloads folder):
cd /home/pi/Downloads tar -xvzpf CrashPlan_4.8.2_Linux.tgz
7. Install CrashPlan on the x86 guest system and from the directory, CrashPlan has been unpacked into:
cd /home/pi/Downloads/crashplan-install sudo ./install.sh
8. Follow the prompts of the installation manager and then configure an auto start:
sudo service crashplan start 2>/dev/null sudo update-rc.d crashplan enable
9. That’s it! Now, you can run CrashPlan with the following command:
usr/local/bin/CrashPlanDesktop
Otherwise, you can run CrashPlan from the Start menu.
Step 3: Backup Your Raspberry Pi With Dropbox
Using Dropbox for file system backup on Raspberry Pi is a little bit different approach. It also uses a desktop app to set the process. So what’s the deal? And what’s the main difference from free CrashPlan automatic backup we have looked through earlier?
The main magic of Dropbox on Raspberry Pi is in its data recovery and file versions history access. In fact, Dropbox keeps a history of all versions of the files. With Dropbox, you can restore files for the duration of up to 30 days (120 days for extended business version). Moreover, you can get the access to all those versions online, from any device (even mobile) and from any place 24/7.
So, all you need is to set up Dropbox on Raspberry Pi and use it during your work, storing all the files to Dropbox dedicated folder. Dropbox will do the rest. For any occasion, you’ll be able to restore different versions of files, that’s even better than a pure backup. Worth money and efforts, I guess.
Step 4: Installation Dropbox on Raspberry Pi
The process is very close to what we have done earlier with CrashPlan and you will need ExaGear in this case as well. So, follow these steps:
1. Download and install ExaGear just like in we did it in the previous chapter.
2. Install necessary libraries for Dropbox:
sudo apt-get install wget libxslt-dev libxxf86vm-dev xcb
3. Download Dropbox 32-bit Debian archive:
wget linux.dropbox.com/packages/debian/dropbox_2015.10.28_i386.deb
4. Unpack and launch the installation:
sudo dpkg -i dropbox_2015.10.28_i386.deb; sudo apt-get install -f
5. Run Dropbox.
At the first launch, Dropbox runs the installation daemon. Press “ok” and wait until the installation finishes.
5. You can also set up an autostart for Dropbox:
arch
armv7
sudo su
printf '#!/bin/bashnexec exagear -- $0 [email protected]' > /usr/bin/dropbox
chmod +x /usr/bin/dropbox
exit
That’s it.
Step 5: Other Possibilities for a Raspberry Pi Backup
For example, Backblaze.
If looking through the Backblaze vs CrashPlan difference, the Backblaze offers a little bit more access opportunities as you can get the access to the files stored in the cloud from the mobile devices. But, at the same time, Backblaze includes only Windows or Mac client versions and that is a real obstacle for installing and using it on Raspberry Pi.
Another difference is that Backblaze have a 14-day trial period when you can use the cloud storage account for free and after the expiration date it’ll cost $5/month, while CrashPlan personal “For Home” service option is fully free.
Finally, Backblaze has got a special feature called “B2 cloud”, that can help developers to create the automatic cloud storage and backup via its API with full access both from desktop and mobile devices. It includes first 10Gb of a storage space for free which seems quite an attractive option to make sure if it fits all of your needs.
Another bright backup service provider is Elephant drive .
Basically, it offers similar features, including automatic backup right into the cloud, web access both from desktop and mobile devices, secure sharing. But where the real difference is it is in the Elephant drive pricing plans.
It’s got a free option with 2Gb limited storage space. Concerning the paid ones, there is a choice between “Pro Plan” with $9.95 per month (includes 1,000 GB of storage space) and “Business” featuring $39.95/month (for 2,000 GB). There is a trial period consisting of 30 days of free access to any type of subscription plans. All of these peculiarities make Elephant drive quite interesting and attractive service to consider.
Of course, digging deeper, we can find other opportunities for building up backup for your files on Raspbian. Among them, there are such providers as SOS, Mozy, Livedrive, Acronis and lots of others. All of them look very alike, the only they differ with are their subscription plans, which means that all of them are paid services. If you are looking for the free backup opportunities, additionally to CrashPlan and Dropbox mentioned earlier in this article, you may consider using Google Drive as a cloud storage space.
----------------------------------------------------------------------------------------
The original article is Raspberry Pi Backup Guide
Be the First to Share
Recommendations
STEM Contest
Role Playing Game Challenge
CNC Contest
Protect and share your data, anywhere
Synology C2 Storage is designed to offer the most integrated and cost-effective cloud storage solution for Synology NAS users. All data in transit and at rest are secured using rigorous encryption technologies.
Your investment optimized
After you invest in a NAS as a file server to protect and share your data, there might still be a possibility of data loss in the event of human errors or any other disasters. Synology C2 Storage offers our NAS users a plan for data availability and storage expansion on the cloud, thus maximizing business continuity.
Streamlined user experience
Synology C2 provides a uniformed interface and user experience just like in DSM, requiring only a minimal learning curve. The intuitive design and graphic presentation of data create a smooth interaction, making all information easy to track.
Data protection expertise
Synology is an expert in data and service protection. Starting with private cloud services, we have a long history of providing reliable IT solutions for our customers. Now we are ready to step into the public cloud sector and take data protection to the next level.
C2 Storage for Hyper Backup
Complete your backup plan with C2 Storage, providing additional protection for data with seamless efforts.
Learn moreC2 Storage for Hybrid Share
Connect your Synology NAS with C2 Storage, keeping all data in the cloud while retaining only frequently used data in a local cache on the NAS for fast and low-latency access.
Learn moreComplete your backup setup
C2 Storage for Hyper Backup provides a cloud backup solution for enterprise and home users. Storing backups of your files to C2 Storage ensures that essential data remain safe and available even if local copies are hit by disaster or IT failure.
One-stop solution
Synology NAS and C2 Storage combine to offer a comprehensive data protection solution. From service consulting and technical support to hardware warranty, Synology is with you each step of your data protection journey.
Affordable cloud data protection
Unpredictable data center costs, as well as hardware and administration expenses make privately setting up secure remote backup storage a daunting task. C2 Storage plans offer full-featured professional data protection at a predictably low price.
More than what you pay for
Restore full backups, individual files, and multiple historical versions to any destination, with a web portal, desktop client, and Synology NAS integration.
Secure data with military-grade encryption
Enable client-side encryption and make your data unreadable before it leaves your device with advanced AES-256 and RSA-2048 encryption.
A password-protected private key for each task ensures that neither Synology, nor any other person or organization can decrypt, access, or modify your data.
Flexible backup options
Seamlessly integrated with Hyper Backup on your Synology NAS, C2 Storage adds protection and functionality to your existing backup configuration.
Schedule backup tasks
Run backup tasks at scheduled times and plan transmissions outside peak business hours.
Explore file histories
Multi-version support means C2 Storage for Hyper Backup users have access to multiple recovery points for each file.
Access data from anywhere
Access your essential data when no Synology NAS is at hand. Download individual files to your PC using Hyper Backup Explorer or the C2 Storage web portal.
Recover data your way
C2 Storage for Hyper Backup offers multiple granular restoration options for greater flexibility. Enable advanced encryption to ensure that only you can read your data and protect the integrity of your backups.
Windows, Mac, and Linux
Hyper Backup Explorer client available for all major operating systems lets you retrieve files with a simple click.
C2 Storage web portal
Sign in to the Synology C2 Storage portal with your Synology Account to browse and download any file through a streamlined interface.
C2 STORAGE FREE TRIAL
Synology C2 Storage plans offer flexibility in features, storage capacity, and costs. Start backing up your Synology NAS with our cost-effective plans.
Compare C2 Storage plans and pricingGet startedDon't have a Synology NAS yet? Find a reseller.
Synology Hybrid ShareBETA
Synology Hybrid Share connects your on-premises Synology NAS with Synology C2 cloud storage, keeping all data in the cloud while retaining only frequently used data in a local cache on the NAS for fast and low-latency access.
Backed by unlimited cloud scalability
Imagine if you can manage resources efficiently while scaling your business. Hybrid Share is perfectly integrated with our public cloud service C2 Storage, delivering a hybrid-cloud solution that combines key cloud storage benefits including availability, flexibility, and scalability — all in one Synology NAS box.
A hybrid approach for Synology NAS
You can easily yet substantially expand the value of your Synology NAS infrastructure with low upfront costs.1 Start scaling storage on-demand and on a pay-as-you-go basis, and improve workforce productivity through global file sharing. Achieve more without any compromises of data security or system performance!
Storage expansion
Unlock the storage limitations of a physical NAS device by leveraging the unlimited and on-demand scalability of C2 Storage — it can all be done within just a few minutes.
Multi-site file sharing
Instantly sync cloud-managed data to each NAS and access them as local cached data, reducing on-premises storage footprint, minimizing bandwidth usage, and cutting associated costs.
Instant data access
Cloud-based data are accessible on your NAS immediately upon the connection of a Hybrid Share folder. This also eliminates the long hours typically needed for data migration or recovery.

Cache data at local needs
Fulfill different system and workplace needs effortlessly. Mount the same Hybrid Share folder on different NAS and customize the maximum cache size for each NAS, ensuring fast data access and optimal storage deployments on each site.
Access cloud data at LAN speeds
The data cached on your NAS enables fast and native file access experiences via file protocols (e.g., SMB, AFP, NFS, and FTP) and web browsers (e.g., File Station) — even for offline access.
As private as it should be
Your data are encrypted using end-to-end AES-256 standard at all times, no matter whether stored on the public cloud or in transit. Private keys are generated client-side and never get passed to Synology. Only you, the holder of the key, can decrypt and access your own data.
Join the Beta Program
Test drive Hybrid Share with 1 TB of storage
Apply NowNote:
Backblaze B2
- During the Hybrid Share Beta period, each registered preview tester will receive up to 1 TB of free Synology C2 Storage for the Hybrid Share trial. The pricing plans for larger storage capacity will be available upon the official release of Synology Hybrid Share.
Flexible Plans
Synology C2 Storage plans are tailored to different users with features, storage and prices to match their size and needs. Whether you are a home user looking for an easy-to-use cloud backup plan, or a system administrator in search of secure cloud storage with optimized space utilization, Synology’s pricing plans can meet your needs.
100 GB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
300 GB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
1 TB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
(€5.99 / month)
- Hyper Backup
- Hourly backup
- AES-256 data encryption
- Restore from web browser
- Customizable retention policy
- Deduplication
(€6.99 / month)
Pricing Details100 GB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
300 GB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
1 TB
- Hyper Backup
- Daily backup
- AES-256 data encryption
- Restore from web browser
- Free file versioning
($5.99 / month)
Backblaze S2
- Hyper Backup
- Hourly backup
- AES-256 data encryption
- Restore from web browser
- Customizable retention policy
- Deduplication
($6.99 / month)
Pricing Details- * The prices above do not include VAT. Local VAT is added if applicable.
- Plan I
Plan I protects your data through daily backups with a default retention policy. C2 Storage for Hyper Backup will retain 11 backup versions (one latest, 7 daily, 3 weekly) going back 30 days. Regardless of the cumulative size of your backup versions, only the source data size on your Synology NAS is counted toward your C2 Storage usage. - Plan II
Plan II lets you customize your backup schedules and retention policies. All your backup versions count toward your total C2 Storage usage. However, Plan II-exclusive deduplication helps you cut back storage use by reducing duplicate data across different versions.
Extra storage space up to 200 TB can be added directly through in-app purchase. To purchase more than 200 TB, please contact us.
No hidden fees
Synology charges no hidden fees besides the subscription cost. File upload, restoration, and browsing are always free of charge on your Synology NAS, through the PC client, and using the C2 Storage web portal.
30-Day Free Trial
Each Synology Account can activate a one-time 30-day free trial. Try all the great features that C2 Storage offers before deciding whether it is the solution for you.
Flexible Usage Plan
Backup storage on C2 Storage can be purchased using one Synology Account and shared with multiple Synology NAS, increasing the flexibility of storage use. You can upgrade your backup plan at any time if more space is needed.
How to Start a Backup Plan with C2 Storage
Sign in to DSM with administrator privileges and install Synology Hyper Backup. Create a backup task and select Synology C2 Storage as the cloud destination. You will be asked to sign in with the Synology Account you wish to use to manage C2 Storage for Hyper Backup. After login, you may start the 30-day free trial if eligible or purchase a C2 Storage plan. For more information on creating backup plans with C2 Storage, see our step-by-step tutorial.
Note:
- Synology C2 Storage for Hyper Backup requires Hyper Backup version 2.2.4-1213 or above.
- Synology does not guarantee compatibility with DSM or Synology C2 Storage for older versions of Hyper Backup
- Synology C2 Storage is not supported in China.