rtcvb32: A ransomware attack can only work on your own personal files, unless you are running stupidly as root/admin.....
Don't forget shared files - and any data accessible over a LAN (more likely for business users). People need write access to a significant amount of data, which is why a ransomware attack can be so paralyzing (though easy to prevent).
rtcvb32: Although if you have some type of Snapshot system (
Git, ZFS) you could do backups at points that would not be easy to lose and you could change to said states previously in case of file deletion or other activities. Though you're more likely to lose more recent more-important data either way.
This is moving onto the topic of general (as opposed to game library) backup - but I would agree and my regime involves a combination of full image backups (courtesy of
Drive Snapshot) and automatic file versioning (any time a file changes, a copy is taken with previous copies being renamed) of documents and savegames (courtesy of
Aphar Backup - although the webpage is Dutch, the software runs in English).
rtcvb32: If it's important enough a Tape drive may be warranted. They may have slow seek rates (
for obvious reasons) but can hold a ton more storage per cartridge. The downside is usually the hardware is rather expensive and you have to make a certain number of backups space-wise to balance out vs other backup methods.
It's been a while since I've seen anyone mention (let alone recommend) a tape drive... (cue images of the ZX Microdrive and C90 cassette).
However the economics here just don't make sense. A single
LTO-8 tape cartridge which can store 12TB native (30TB with compression is often quoted) can be purchased for £72/US$94 which compares well with, say, a 14TB Seagate Iron Wolf Pro drive at £372/US$483.
But you then need a £3,700/US$4,810
tape drive to use it. You'd need to be using at least 12 tapes/discs for that option to become worthwhile.
rtcvb32: With Blueray burners giving about 24Gb of storage at a time, it might be the best offline non-magnetic storage space vs size vs price. Though comparing with external drives, i'm sure people would just buy a few extra externals that way.
Ultra-HD Blurays can now get up to 128GB with
Quad BDXL - however having to swap in 10+ discs to create a single backup of a 1.5TB games library probably isn't practical.
Online backups are another option to consider and
this post provides useful insight into the costs involved there.
alexandros050: How to check if a file has been corrupted due to hdd failing. a lot of years passed or for other reasons? Is there a program that scans for damaged files without putting constant pressure on the hdd? Something that can do that fast without taking for example 5 hours.
nightcraw1er.488: Anything that does a checksum on files could be used. A checksum is an algorithm which fingerprints a file(s) to ensure they haven’t changed. So you could create a list of checksums and use that. I know there are tools, md5deep for instance will create and check a whole load of md5s.
Also see the
Fighting "Bit-Rot" section of my
previous post. Note that just creating checksums is not enough - you need to regularly
check them (before taking a new backup would be a good time).