Skip to main content

NFS export

Mount it to freshly created directory. Add to fstab for automatic mount during boot process.

Preparations:

sudo su
dnf install \
    nfs-utils

hostname
export host="$(hostname)"

export src_host="(source host)"
export src_export="(name of exported directory)"

showmount -e ${src_host}

export dir="/mnt/${host}-data/data/ncp"
mkdir -p ${dir}
mount ${src_host}:${src_export} /mnt/${host}-data
df -h


#TODO: add into /fstab with oneliner
```bash
${src_host}:${src_export} ${dir} nfs defaults 0 0
echo "add me to fstab"
mount | grep ${host}
nano /etc/fstab
systemctl daemon-reload

when possible, test VM restart to ensure disk will be properly mounted

shutdown -r now