zfs:clone_a_system
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zfs:clone_a_system [2021/01/30 14:21] – created peter | zfs:clone_a_system [2021/10/13 12:26] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ZFS - Clone a system ====== | ====== ZFS - Clone a system ====== | ||
- | ===== Boot the target | + | A ZFS clone is a writable copy of a file system with the initial content of the clone being identical to the original file system. |
- | Boot the target system that will receive | + | * A ZFS clone can only be created from a ZFS snapshot and the snapshot cannot be destroyed until the clones created from it are also destroyed. |
---- | ---- | ||
- | ===== Remove all previous snapshots on the target | + | ===== Clone a system ===== |
- | <code bash> | + | First take a snapshot and then clone: |
- | zpool import -f tank | + | |
- | zfs destroy -Rv ' | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Create | + | |
- | + | ||
- | On the source system, create a new snapshot, | + | |
<code bash> | <code bash> | ||
- | zfs snapshot -r 'tank@p1snap' | + | sudo zfs snapshot -r testpool/ |
- | zfs send -v --props --replicate --large-block --compressed tank@p1snap | ssh root@target 'zfs receive | + | sudo zfs clone testpool/ |
</ | </ | ||
- | ---- | ||
- | |||
- | ===== Mount the received tank on the target system ===== | ||
- | |||
- | On the target: | ||
- | |||
- | <code bash> | ||
- | zfs set mountpoint=/ | ||
- | zfs set mountpoint=/ | ||
- | zfs set mountpoint=/ | ||
- | zfs set mountpoint=/ | ||
- | zfs mount -a | ||
- | mount --rbind /dev/ / | ||
- | mount --rbind /proc/ / | ||
- | mount --rbind /sys/ / | ||
- | mount --rbind /run/ / | ||
- | chroot /sysroot/ /bin/bash | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
---- | ---- | ||
- | ===== SELinux relabel ===== | + | [[ZFS:Clone a system:Detailed Instructions|Detailed Instructions]] |
- | + | ||
- | Sets the system to do an SELinux relabel: | + | |
- | + | ||
- | <code bash> | + | |
- | touch / | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Update /etc/fstab ===== | + | |
- | + | ||
- | Edit /etc/fstab, and fix any UUIDs: | + | |
- | + | ||
- | <file bash / | + | |
- | UUID=" | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Update hostname ===== | + | |
- | + | ||
- | Correct the hostname on the target: | + | |
- | + | ||
- | <code bash> | + | |
- | echo some_hostname > / | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Limit Memory Usage (Optional) ===== | + | |
- | + | ||
- | If the system | + | |
- | + | ||
- | <code bash> | + | |
- | cp / | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Rebuild boot ===== | + | |
- | + | ||
- | <code bash> | + | |
- | dracut --force / | + | |
- | ZPOOL_VDEV_NAME_PATH=YES grub2-mkconfig > / | + | |
- | sed -i '/^set pager/ s/ | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * rebuilds the initial ram-filesystem. | + | |
- | * rebuilds the grub.cfg. | + | |
- | * disables the grub pager. | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Export the tank ===== | + | |
- | + | ||
- | On the target: | + | |
- | + | ||
- | Exit the chroot, unmount filesystems, | + | |
- | + | ||
- | <code bash> | + | |
- | exit | + | |
- | umount -l / | + | |
- | zfs set mountpoint=/ | + | |
- | zfs set mountpoint=legacy tank/ | + | |
- | zfs set mountpoint=legacy tank/ | + | |
- | zfs set mountpoint=legacy tank/ | + | |
- | zpool export tank | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Reboot the Target ===== | + | |
- | + | ||
- | <code bash> | + | |
- | reboot -f | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Remove the snapshot on the target ===== | + | |
- | + | ||
- | On the target, remove the snapshot p1snap: | + | |
- | + | ||
- | <code bash> | + | |
- | zfs destroy -vr ' | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Remove the snapshot on the source ===== | + | |
- | + | ||
- | On the sender, remove the snapshot p1snap: | + | |
- | + | ||
- | <code bash> | + | |
- | zfs destroy -vr ' | + | |
- | </ | + | |
zfs/clone_a_system.1612016501.txt.gz · Last modified: 2021/01/30 14:21 by peter