<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Data Protection on LEl_FENG Blog</title><link>https://blog.xpdbk.com/en/tags/data-protection/</link><description>Recent content in Data Protection on LEl_FENG Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>LEl_FENG Copyright</copyright><lastBuildDate>Tue, 18 Jun 2024 20:22:21 +0800</lastBuildDate><atom:link href="https://blog.xpdbk.com/en/tags/data-protection/index.xml" rel="self" type="application/rss+xml"/><item><title>Data Backup Plan</title><link>https://blog.xpdbk.com/en/posts/backup/</link><pubDate>Tue, 18 Jun 2024 20:22:21 +0800</pubDate><guid>https://blog.xpdbk.com/en/posts/backup/</guid><description>&lt;blockquote>
&lt;p>&lt;strong>TL;DR / Geek Summary:&lt;/strong>&lt;/p>
&lt;ul>
&lt;li>Strategic implementation of the 3-2-1 backup rule to mitigate catastrophic hardware failure risks (e.g., Seagate&amp;rsquo;s &amp;ldquo;platter-scratching&amp;rdquo; firmware bugs).&lt;/li>
&lt;li>Critical hardware analysis: Compares high-performance SAS RAID/HBA cards vs. the instability of Windows software-based parity during power loss events.&lt;/li>
&lt;li>Multi-layered storage audit: Deep dive into 17+ cloud providers, optical media (organic vs. inorganic dyes), and the volatile charge-leakage issues of SSD/NAND flash.&lt;/li>
&lt;/ul>
&lt;/blockquote>
&lt;h2 id="introduction">
&lt;a href="#introduction" class="heading-anchor" aria-label="Anchor for Introduction">#&lt;/a>
Introduction
&lt;/h2>
&lt;p>Data backup is an effective way to minimize losses. Once a hard drive fails, no amount of money can easily restore your data. Many people claim their new hard drives are reliable and don&amp;rsquo;t need backups, but when the drive suddenly dies and they go to a data recovery company, they find it&amp;rsquo;s extremely expensive—1000 RMB for a 500GB drive. Regret comes too late. 1000 RMB could have bought several new drives. So, remember: backup your data before the drive fails; otherwise, it&amp;rsquo;s too late.&lt;/p>
&lt;h2 id="hardware-raid-cards">
&lt;a href="#hardware-raid-cards" class="heading-anchor" aria-label="Anchor for Hardware RAID Cards">#&lt;/a>
Hardware RAID Cards
&lt;/h2>
&lt;p>A RAID card refers to an HBA card that implements RAID. It typically consists of components like an I/O processor, disk controller, disk connectors, and cache.&lt;/p>
&lt;blockquote>
&lt;p>HBA (Host Bus Adapter): A physical connection interface between a server&amp;rsquo;s internal I/O channel and a storage system&amp;rsquo;s I/O channel (external). Usually, server PC motherboards support the IDE protocol, and IDE disk controllers support it too, so they can connect directly. However, if a disk only supports the SCSI protocol, it cannot connect directly to the server; you need a SCSI card (HBA card) to enable disk support. Thus, the SCSI card becomes the Host Bus Adapter (HBA). The scope of HBA cards is quite broad.&lt;/p>
&lt;/blockquote>
&lt;p>RAID cards can be categorized by disk transmission protocol into SATA RAID cards, SAS RAID cards, and SCSI RAID cards. In the server field, SAS RAID cards are most common. Depending on the SCSI controller on the card, they can be single-channel, dual-channel, triple-channel, or even eight-channel. The number of channels determines how many disks can be carried: &lt;strong>Number of channels * disks per single controller&lt;/strong>.&lt;/p>
&lt;blockquote>
&lt;p>If there is no integrated SCSI controller and the card uses the motherboard&amp;rsquo;s SCSI controller to manage disks, it is a zero-channel RAID card.&lt;/p>
&lt;/blockquote>
&lt;p>Additionally, RAID cards are generally equipped with cache and a BBU (Battery Backup Unit). The former is for caching, and the latter is a battery configured for data integrity.&lt;/p>
&lt;p>They are relatively expensive, ranging from several hundred to several thousand RMB. They are much more reliable than software RAID, offer higher speeds, and are relatively simple to configure.&lt;/p>
&lt;h2 id="software-raid">
&lt;a href="#software-raid" class="heading-anchor" aria-label="Anchor for Software RAID">#&lt;/a>
Software RAID
&lt;/h2>
&lt;p>I strongly discourage using Windows&amp;rsquo; built-in software RAID. This RAID is intended for servers; if a power outage occurs, it will perform a full copy of the entire data on your disks, which is extremely annoying. If another power outage occurs during this process, it&amp;rsquo;s absolute &amp;ldquo;Amennos&amp;rdquo; (game over).&lt;/p>
&lt;p>&lt;a class="link" href="https://blog.xpdbk.com/posts/raid-windows/" >Article on Enabling Windows Software RAID&lt;/a>
- This is an article teaching you how to use Windows&amp;rsquo; built-in RAID functionality, but I don&amp;rsquo;t recommend using it. A power outage will trigger a full disk rebuild that takes a long time, and if power fails again during that, your disks might die directly.&lt;/p>
&lt;h2 id="two-way-synchronization">
&lt;a href="#two-way-synchronization" class="heading-anchor" aria-label="Anchor for Two-way Synchronization">#&lt;/a>
Two-way Synchronization
&lt;/h2>
&lt;p>&lt;a class="link" href="https://www.freefilesync.org/" target="_blank" rel="noopener"
>FreeFileSync&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
is an open-source synchronization software that can sync to both local and remote servers simultaneously. It supports various protocols including FTP, SFTP, and WebDAV. It supports resume, file difference comparison, versioning, permission settings, and encryption. It&amp;rsquo;s a very powerful tool but requires manual setup. If you&amp;rsquo;re not tech-savvy, using a cloud drive is recommended.&lt;/p>
&lt;p>&lt;a class="link" href="https://blog.xpdbk.com/posts/shuju-backup/" >Tutorial&lt;/a>
&lt;/p>
&lt;h2 id="cloud-storage">
&lt;a href="#cloud-storage" class="heading-anchor" aria-label="Anchor for Cloud Storage">#&lt;/a>
Cloud Storage
&lt;/h2>
&lt;h2 id="cloud-drive-encyclopedia">
&lt;a href="#cloud-drive-encyclopedia" class="heading-anchor" aria-label="Anchor for Cloud Drive Encyclopedia">#&lt;/a>
Cloud Drive Encyclopedia
&lt;/h2>
&lt;p>Cloud drives can serve as off-site backups, provided you encrypt your files (e.g., using encrypted zip files).&lt;/p>
&lt;h3 id="free-cloud-drives">
&lt;a href="#free-cloud-drives" class="heading-anchor" aria-label="Anchor for Free Cloud Drives">#&lt;/a>
Free Cloud Drives
&lt;/h3>
&lt;p>&lt;strong>1. Baidu Netdisk&lt;/strong> &lt;a class="link" href="https://pan.baidu.com/" target="_blank" rel="noopener"
>pan.baidu.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Baidu Netdisk&lt;/strong> was established in 2012 (originally Baidu Cloud). It&amp;rsquo;s a veteran service provider with a massive user base. It covers major PC and mobile OSs and has an official TV client. Free users get 2TB of space.&lt;/p>
&lt;p>(Price images as of Feb 3, 2023). Super VIPs enjoy high-speed downloads, video speed control, 5TB space, HD quality, and instant sync.&lt;/p>
&lt;p>The base space is large, but free users suffer from severe speed limits, making large file downloads very painful without a membership.&lt;/p>
&lt;p>&lt;strong>2. Tencent Weiyun&lt;/strong> &lt;a class="link" href="https://www.weiyun.com/" target="_blank" rel="noopener"
>www.weiyun.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Tencent Weiyun&lt;/strong> was established in 2012 (originally QQ Disk). It&amp;rsquo;s another veteran tied to QQ, so it has many users. It covers major platforms. Free users get 10GB of space and 1GB of free daily upload traffic.&lt;/p>
&lt;p>Members enjoy 3TB storage, 45GB daily upload traffic, playback/transfer acceleration, and offline downloads. Super VIPs get 6TB and online decompression.&lt;/p>
&lt;p>Weiyun is more like Google Drive or OneDrive—it charges for space rather than bandwidth. Free users have slow uploads rather than slow downloads. It seems like a neglected project within Tencent now.&lt;/p>
&lt;p>&lt;strong>3. Alibaba Drive&lt;/strong> &lt;a class="link" href="https://www.aliyundrive.com/" target="_blank" rel="noopener"
>www.aliyundrive.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Alibaba Drive&lt;/strong> was launched in 2020/2021. It&amp;rsquo;s an unthrottled, large-capacity drive that has become very popular. It covers major platforms and has third-party TV clients. Free users get 800GB of permanent space.&lt;/p>
&lt;p>Super VIPs enjoy 8TB space, backup drives, photo backup, cloud decompression, etc.&lt;/p>
&lt;p>It doesn&amp;rsquo;t limit speeds (though it&amp;rsquo;s starting to a bit now). Memberships are mainly for space and video features. Downloads don&amp;rsquo;t strictly require membership. A downside is that files like .zip or .apk cannot be shared.&lt;/p>
&lt;p>&lt;strong>4. Tianyi Cloud (e-Cloud)&lt;/strong> &lt;a class="link" href="https://cloud.189.cn/" target="_blank" rel="noopener"
>cloud.189.cn&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Tianyi Cloud&lt;/strong> was established in 2011 by China Telecom. Its main advantage is that it&amp;rsquo;s unlikely to shut down—a very strong selling point. Free users get 30+30GB (30GB cannot be shared) and 2GB daily traffic.&lt;/p>
&lt;p>Gold members get 2TB+2TB space and 200GB daily traffic. Platinum members get 4TB+4TB and unlimited photo storage. It&amp;rsquo;s very reliable and cheaper than Baidu.&lt;/p>
&lt;p>&lt;strong>5. Lanzou Cloud&lt;/strong> &lt;a class="link" href="https://www.lanzoux.com/" target="_blank" rel="noopener"
>www.lanzoux.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Lanzou Cloud&lt;/strong> was established in 2014. It&amp;rsquo;s very popular for resource sharing. However, it lacks content moderation, which is a risk. Free users can only upload files up to 100MB; paid users up to 300MB. It&amp;rsquo;s too small for many needs.&lt;/p>
&lt;p>&lt;strong>6. Chengtong Netdisk&lt;/strong> &lt;a class="link" href="https://www.ctfile.com/" target="_blank" rel="noopener"
>www.ctfile.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Chengtong&lt;/strong> was established in 2009. It&amp;rsquo;s a famous &amp;ldquo;earn-from-downloads&amp;rdquo; drive. Personally, I don&amp;rsquo;t like it because of its annoying mechanics. Free users get 500GB (requires frequent login to keep).&lt;/p>
&lt;p>Membership offers high-speed downloads and WebDAV. It&amp;rsquo;s okay if you disable the &amp;ldquo;earn&amp;rdquo; mode, otherwise, it&amp;rsquo;s very slow.&lt;/p>
&lt;p>&lt;strong>7. Quark Drive&lt;/strong> &lt;a class="link" href="https://pan.quark.cn/" target="_blank" rel="noopener"
>pan.quark.cn&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Quark&lt;/strong> was established in 2019 by Alibaba. It uses Alibaba Cloud infrastructure. It&amp;rsquo;s affordable and high quality. Free users get 10GB.&lt;/p>
&lt;p>It used to have a very cheap &amp;ldquo;youth plan.&amp;rdquo; It&amp;rsquo;s decent and doesn&amp;rsquo;t restrict sharing as much as Alibaba Drive, though it has started some speed limiting.&lt;/p>
&lt;p>&lt;strong>8. 123 Cloud Drive&lt;/strong> &lt;a class="link" href="https://www.123pan.com/" target="_blank" rel="noopener"
>www.123pan.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>123 Cloud Drive&lt;/strong> was established in 2021. It&amp;rsquo;s a rising star with 2TB free space and no speed limits for downloads. However, it has strict censorship—you cannot share videos, audio, or encrypted archives (though you can still download them yourself).&lt;/p>
&lt;p>I currently use this drive for my website, and I&amp;rsquo;ve been whitelisted to share encrypted archives. It&amp;rsquo;s great because it doesn&amp;rsquo;t require login for downloads.&lt;/p>
&lt;p>&lt;strong>9. Quqi Cloud&lt;/strong> &lt;a class="link" href="https://www.quqi.com/" target="_blank" rel="noopener"
>www.quqi.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Quqi&lt;/strong> was established in 2017. It has a nice group feature, good for small teams. Free users get 2TB. It&amp;rsquo;s a small company without a big backer, but speeds are generally okay.&lt;/p>
&lt;p>&lt;strong>10. Xunlei Cloud&lt;/strong> &lt;a class="link" href="https://pan.xunlei.com/" target="_blank" rel="noopener"
>pan.xunlei.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Xunlei&lt;/strong> was established in 2003 and returned in 2020. Despite its age, it&amp;rsquo;s not very popular. It throttles speeds like Baidu. Free users get 500GB.&lt;/p>
&lt;p>I have no good feelings for this drive—lots of ads, poor offline downloads, and it negatively affects the domestic BT environment.&lt;/p>
&lt;p>&lt;strong>11. Nutstore (JianGuoYun)&lt;/strong> &lt;a class="link" href="https://www.jianguoyun.com/" target="_blank" rel="noopener"
>www.jianguoyun.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>Nutstore&lt;/strong> was established in 2011. It&amp;rsquo;s focused on enterprise collaboration. It limits traffic (1GB upload/3GB download per month for free users) rather than space. Not recommended for personal use.&lt;/p>
&lt;p>&lt;strong>12. 115 Drive&lt;/strong> &lt;a class="link" href="https://www.115.com/" target="_blank" rel="noopener"
>www.115.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>115&lt;/strong> was established in 2009. Famous for its offline download capabilities. Free users get 15GB. It&amp;rsquo;s expensive and its offline features aren&amp;rsquo;t what they used to be. For offline downloads, PikPak is better.&lt;/p>
&lt;p>&lt;strong>13. China Mobile Cloud&lt;/strong> &lt;a class="link" href="https://yun.139.com/" target="_blank" rel="noopener"
>yun.139.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>China Mobile Cloud&lt;/strong> (formerly HeCaiYun) was established in 2014. It doesn&amp;rsquo;t throttle speeds. Free users get 20GB+20GB. Mobile users can get 1TB through tasks. It cannot share APK files.&lt;/p>
&lt;p>&lt;strong>14. China Unicom Cloud&lt;/strong> &lt;a class="link" href="https://pan.wo.cn/" target="_blank" rel="noopener"
>pan.wo.cn&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;strong>China Unicom Cloud&lt;/strong> has a history of shutting down and rebranding. I don&amp;rsquo;t trust it with important files. Free users get 10GB.&lt;/p>
&lt;p>&lt;strong>15. CowTransfer&lt;/strong> &lt;a class="link" href="https://cowtransfer.com/" target="_blank" rel="noopener"
>cowtransfer.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>Established in 2017, focused on quick file transfers rather than long-term storage. Free users get 10GB. It&amp;rsquo;s unthrottled.&lt;/p>
&lt;p>&lt;strong>16. Feiji Pan (Small Plane Drive)&lt;/strong> &lt;a class="link" href="https://www.feijipan.com/" target="_blank" rel="noopener"
>www.feijipan.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>Established in 2021, allows downloads without login. Free users get 10GB. It&amp;rsquo;s unthrottled but it&amp;rsquo;s a new company, so longevity is uncertain. (I&amp;rsquo;ve stopped using it).&lt;/p>
&lt;p>&lt;strong>17. BitQiu&lt;/strong> &lt;a class="link" href="https://pan.bitqiu.com/" target="_blank" rel="noopener"
>pan.bitqiu.com&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>Established in 2006, focused on white-collar office users. Free users get 20GB. It&amp;rsquo;s a decent alternative to 115 Drive.&lt;/p>
&lt;hr>
&lt;h2 id="optical-discs">
&lt;a href="#optical-discs" class="heading-anchor" aria-label="Anchor for Optical Discs">#&lt;/a>
Optical Discs
&lt;/h2>
&lt;ul>
&lt;li>Ordinary recordable DVDs have dye fading issues because they use organic dyes. Luck lasts 10 years; bad luck lasts only a few.&lt;/li>
&lt;li>Blu-ray discs use inorganic dyes, which are relatively better and last longer.&lt;/li>
&lt;li>Most importantly, &lt;strong>never buy dual-layer (DL) discs&lt;/strong>; they have a very high failure rate.&lt;/li>
&lt;li>Store discs in a cool, dark place. Do not expose them to sunlight, as solar energy is similar to the recording laser and can overwrite your useful data with useless &amp;ldquo;solar noise.&amp;rdquo;&lt;/li>
&lt;/ul>
&lt;h2 id="lto-tape">
&lt;a href="#lto-tape" class="heading-anchor" aria-label="Anchor for LTO Tape">#&lt;/a>
LTO Tape
&lt;/h2>
&lt;p>Not recommended for ordinary people. While tapes are cheap, the drives are expensive (400 to 2000 RMB used) and require many accessories. Also, random access is almost zero because you have to wait for the tape to wind to the specific data location.&lt;/p>
&lt;h2 id="printing">
&lt;a href="#printing" class="heading-anchor" aria-label="Anchor for Printing">#&lt;/a>
Printing
&lt;/h2>
&lt;p>Printed materials can generally last 50 years. If protected with sealed bags and iron boxes, paper documents are almost impossible to destroy; they will only yellow and age.&lt;/p>
&lt;h2 id="usb-sticks-ssds-sdcf-cards">
&lt;a href="#usb-sticks-ssds-sdcf-cards" class="heading-anchor" aria-label="Anchor for USB Sticks, SSDs, SD/CF Cards">#&lt;/a>
USB Sticks, SSDs, SD/CF Cards
&lt;/h2>
&lt;p>Do not use these for long-term backups. They use flash memory, which stores data as electrical charges. Over time, the charges leak. Eventually, ECC correction fails, and data is lost. This usually happens within 10 years.&lt;/p>
&lt;h2 id="mental-memory">
&lt;a href="#mental-memory" class="heading-anchor" aria-label="Anchor for Mental Memory">#&lt;/a>
Mental Memory
&lt;/h2>
&lt;p>Useful for passwords, but requires constant use to prevent forgetting.&lt;/p>
&lt;h2 id="horror-stories-of-data-recovery">
&lt;a href="#horror-stories-of-data-recovery" class="heading-anchor" aria-label="Anchor for Horror Stories of Data Recovery">#&lt;/a>
Horror Stories of Data Recovery
&lt;/h2>
&lt;p>People who gamble with their data often end up paying a high price for recovery.&lt;/p>
&lt;p>&lt;strong>After inquiring, I found that recovering data from a used 500GB Seagate drive costs 600-1000 RMB, whereas the drive itself only costs 10-15 RMB shipped.&lt;/strong>&lt;/p>
&lt;h3 id="backup-multiple-copies">
&lt;a href="#backup-multiple-copies" class="heading-anchor" aria-label="Anchor for Backup Multiple Copies">#&lt;/a>
Backup Multiple Copies
&lt;/h3>
&lt;p>A backup drive and main drive failed simultaneously—a &amp;ldquo;minefield&amp;rdquo; of a DM001 and an MQ03 drive. One had a firmware bug, the other &amp;ldquo;froze&amp;rdquo; to death.&lt;/p>
&lt;p>&lt;a class="link" href="https://www.bilibili.com/video/BV1TB4y147Ev" target="_blank" rel="noopener"
>Backup and Main Drive Failure Together&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;h3 id="models-that-scratch-platters-upon-failure">
&lt;a href="#models-that-scratch-platters-upon-failure" class="heading-anchor" aria-label="Anchor for Models that Scratch Platters upon Failure">#&lt;/a>
Models that Scratch Platters upon Failure
&lt;/h3>
&lt;p>Certain Seagate models will scratch the platters as soon as they fail. If you have one of these, back up your data immediately.&lt;/p>
&lt;p>&lt;a class="link" href="https://www.bilibili.com/video/BV1HQ4y1C7yo" target="_blank" rel="noopener"
>Seagate 7200.12 1TB&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;p>&lt;a class="link" href="https://www.bilibili.com/video/BV1tu411X7Eb" target="_blank" rel="noopener"
>Seagate &amp;ldquo;Record Player&amp;rdquo; DM001&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p>
&lt;h3 id="consequences-of-no-off-site-backup">
&lt;a href="#consequences-of-no-off-site-backup" class="heading-anchor" aria-label="Anchor for Consequences of No Off-site Backup">#&lt;/a>
Consequences of No Off-site Backup
&lt;/h3>
&lt;p>Off-site backup protects against robbery, fire, water, earthquakes, or lightning. Recovering data from fire-damaged drives is not only costly but often impossible.&lt;/p>
&lt;p>&lt;a class="link" href="https://www.bilibili.com/video/BV1or4y1U7yW" target="_blank" rel="noopener"
>Fire-damaged Drive (Recovery Failed)&lt;/a>
&lt;span style="white-space: nowrap;">&lt;svg width=".7em"
height=".7em" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg">
&lt;path d="m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z" fill="currentColor" />
&lt;path d="M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2v7z"
fill="currentColor">
&lt;/svg>&lt;/span>
&lt;/p></description></item></channel></rss>