Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Source server

Source server Ubuntu 24.04 Linux - 10.0.02 Ubuntu 24.04 Linux0.2

Code Block
apt install nfs-kernel-server
echo "/source 10.0.0.1(rw,sync,no_subtree_check,no_root_squash)" >> /etc/exports
cat /etc/exports
exportfs -a
systemctl status nfs-server

Destination TrueNAS host

TrueNAS 25.10 - 10.0.0.1

Code Block
sudo bash
mount 10.0.0.2:/docker /media
rsync -avP --delete /media/ /mnt/pool/data/

...