In your opinion what's the best way to do and restore full backups of a Linux server?
In your opinion what's the best way to do and restore full backups of a Linux server?
Question.
In your opinion what's the best way to do and restore full backups of a Linux server?
Question.
borg
You Borg the whole disk? Or which paths?
See excludes here: https://wiki.archlinux.org/title/Rsync#Full_system_backup
Mine is 3-pronged:
/root
change, plus one nightly /home
snapshot. but it's pretty demanding on disk space, and doesn't handle drive failure; so I also doThe only "restore entire system b/c of screwing up the OS" is #1. I could - and probably should, make a whole disk snapshot to a backup drive via #2, but I'm waiting until bcachefs is more mature, then I'll migrate to that, for the interesting replication options it allows which would make real-time disk replication to slow USB drives practical; I'd only need to snapshot /efi
after kernel upgrades, and if I had that set up and a spare NVME on hand, I could probably be back up and running within a half hour.
I just stop my containers and tar gzip their compose files, their volumes and the /etc folder on the host
Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:
Fewer Letters | More Letters |
---|---|
LXC | Linux Containers |
NAS | Network-Attached Storage |
NFS | Network File System, a Unix-based file-sharing protocol known for performance and efficiency |
k8s | Kubernetes container management package |
4 acronyms in this thread; the most compressed thread commented on today has 16 acronyms.
[Thread #931 for this sub, first seen 21st Aug 2024, 08:35] [FAQ] [Full list] [Contact] [Source code]
I use proxmox and proxmox backup server (in a vm). I reinstall them both, and re-add lxc and vm and their drives from backup. has already worked once.
important files are additionaly synced to laptop and phone using syncthing.
proxmox backups (which are encrypted) are rcloned to backblaze for offsite backup
Relax and Recover for bare metal backup of the OS critical components and directories, and Deja Dup (or Gnome Backup) for user files
I found UrBackup to be very easy to use. Very little nitty-gritty setup and configuration required to get started. I have a feeling those with more experience will (rightly) pick apart if I’m missing something egregiously bad about it, but it worked for my small homelab use cases.
Rclone with crypt option, to any super cheap cloud storage.
Don't. Backup data, reinstall software.
Answer.
Elaborate please.
The container is reproducible. Container configuration is in version control. That leaves you with the volumes mounted into the container, which you back up like any other disk.