VirtualTam's bookmarks
16 bookmarks found
Page 1 of 1
-
Is pg_dump a Backup Tool?
2024-11-03 - Why pg_dump Is Amazing
- EnterpriseDB/barman - Backup and Recovery Manager for PostgreSQL
- pgbackrest/pgbackrest - Reliable PostgreSQL Backup & Restore
-
GitHub Enterprise Backup Utilities
2019-09-19 -
-
Here are the steps I used to migrate a CentOS 7 VM from (presumably?) an ESXi server, to a local VirtualBox environment.
The LVM volumes were not detected at boot, and after the boot timeout, the OS fell back to the Dracut emergency shell.
- get a CentOS minimal installation CD
- check the VM's resources and peripherals:
- ensure there are no floppy drives (!)
- setup CPU and RAM resources
- check virtual drives
- add an SCSI optical drive if needed
- optional: convert the virtual drive images from VMDK to VDI
- mount the CentOS installation disc
- boot on the installation disc:
- select "Troubleshooting", then "Rescue"
- let the rescue utility detect filesystems and mountpoints
$ chroot
to the detected environment- backup files:
/etc/fstab
/boot/grub/grub.cfg
- under /boot, backup the initrd and initramfs for the current configuration (these will be overwritten)
- compare the current
/etc/fstab
with the output of$ lsblk
and$ blkid
- if needed, manually edit /etc/fstab to use the appropriate block device UUIDs, identifiers and mountpoints
- regenerate GRUB configuration:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
- if needed, reinstall GRUB:
$ grub-install /dev/sda
- rebuild initrd:
$ mkinitrd --force /boot/<initrd_image> <kernel_version>
- rebuild initramfs:
$ dracut --force <kernel_version>
- exit the chroot
- unmount the installation disc
- reboot
- optional but highly recommended: cross your fingers
- ...
- profit!
-
Crucial MX300 & Linux
2018-01-05 - https://bbs.archlinux.org/viewtopic.php?id=173619
- https://bbs.archlinux.org/viewtopic.php?id=218390
- https://forums.linuxmint.com/viewtopic.php?t=247820
- https://linux.slashdot.org/story/15/06/16/201217/trim-and-linux-tread-cautiously-and-keep-backups-handy?SetFreedomCookie
- http://www.linuxlookup.com/review/crucial_mx300_750gb_ssd_review
- http://forums.debian.net/viewtopic.php?f=7&t=132614
"Problem solved - it was a compatibility issue! I returned the Crucial SSD drive last week and in its place purchased a Samsung EVO 850."
-
Docker and database persistence
2017-09-04 - https://myopsblog.wordpress.com/2017/02/06/why-databases-is-not-for-containers/
- https://stackoverflow.com/questions/18496940/how-to-deal-with-persistent-storage-e-g-databases-in-docker
- https://stackoverflow.com/questions/30109561/how-persistent-are-docker-data-only-containers
- https://kubernetes.io/docs/concepts/storage/persistent-volumes/
- http://rancher.com/introducing-convoy-a-docker-volume-driver-for-backup-and-recovery-of-persistent-data/
Page 1 of 1