Do snapshots + RAID count as a good on-site backup solution?

No, it’s not. What happens when your filesystem or RAID volume gets corrupted? Or your server gets set on fire? Or someone accidentally formats the wrong array? You lose all your data and the not-real-backups you thought you had. That’s why real backups are on a completely different system than the data you’re backing up … Read more

AWS EC2 what is a reservation ID exactly and what does it represent?

The ResearvationId has nothing to do with Reserved Instances. It is a unique value indicating a request to launch EC2 instances. A launch request may come from the cli, AutoScaling, or the AWS Management Console. Each request to aws ec2 run-instances will return zero or more reservations of instances. Usually, it’ll be one if it … Read more

Is this how LVM snapshots work?

Why not have a look at the snapshots section of the LVM-HOWTO? LVM snapshots are your basic “copy on write” snapshot solution. The snapshot is really nothing more than asking the LVM to give you a “pointer” to the current state of the filesystem and to write changes made after the snapshot to a designated … Read more

Why are snapshots considered as temporary backups not real backups?

When a VM has an active snapshot, its virtual disk I/O is not performed on the VM’s actual .VMDK files, but instead they are kept unchanged, and whatever changes in the VM is written to different physical files; this allows for the recovery of the previous VM state, but has three important side effects: Disk … Read more

LVM snapshots vs. file system snapshots

Most of these snapshots are copy-on-write snapshots, which are really fast and really cheap (storage-wise) on rarely-updated systems. LVM snapshots are COW snapshots, ZFS/BTRFS both have a COW-mode for snapshots, reiserfs doesn’t have snapshots natively, Novell’s NSS file-system is also COW, as are Shadow Copy volumes for Windows NTFS volumes. Copy-on-write snapshots take a copy … Read more