This isn't even meme, this is exactly how it is. I run this script once a day on my Raspberry Pi NAS:
rsync -va /media/pi5tb/ /media/pi5tb_backup/
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
sudo
in Windows.Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't fork-bomb your computer.
This isn't even meme, this is exactly how it is. I run this script once a day on my Raspberry Pi NAS:
rsync -va /media/pi5tb/ /media/pi5tb_backup/
backup-2024-06-27
Btrfs:
sudo btrfs -m raid1 -d raid1 /dev/sda1 /dev/sdb1
ZFS:
zpool create mypool mirror /dev/sda /dev/sdb
Technically that would mean that one copy of the file is no longer updated when the other is.
You should consider using ln bkp.tar.gz bkp2.tar.gz
instead.
loop {
rsync -tu bkp.tar.gz bkp2.tar.gz
rsync -tu bkp2.tar.gz bkp.tar.gz
}
that just keeps the data in one physical location though
thatsthejoke.gif
Hackerman!
Shouldn't you copy the file to another drive?
That would be Raid 2, a totally unnecessary amount of Raids
Tru fax