Skip to content

Instantly share code, notes, and snippets.

@mumblepins
Last active September 25, 2017 18:14
Show Gist options
  • Save mumblepins/cc3a426417dfb59d5fd1e57c1c339ba1 to your computer and use it in GitHub Desktop.
Save mumblepins/cc3a426417dfb59d5fd1e57c1c339ba1 to your computer and use it in GitHub Desktop.
moving a folder to a new filesystem, rsync, change mount point, move to temporary folder, zfs
rsync -avh /var/log/ /tmp/var/log/ \
&& umount /tmp/var/log \
&& sed -i 's|/tmp/var/log|/var/log|' /etc/fstab \
&& mv /var/log /var/logbak \
&& mkdir /var/log \
&& mount /var/log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment