This is an old revision of the document!


NFS

Debian server

apt-get install rpcbind nfs-common nfs-kernel-server 
sed -i 's/NEED_IDMAPD=$/NEED_IDMAPD=YES/' /etc/default/nfs-common
echo "/embedded $CLIENTADDRESS(rw,no_subtree_check,no_root_squash)" >> /etc/exports
/etc/init.d/rpcbind restart
/etc/init.d/nfs-common restart
/etc/init.d/nfs-kernel-server restart

Void Linux client

echo "$SERVERADDRESS:/embedded /embedded nfs rw,noatime,noauto 0 0" >> /etc/fstab
mount $SERVERADDRESS:/embedded /embedded
/etc/modprobe.d/modprobe.conf
blacklist rpcsec_gss_krb5

Raspbian client

apt-get install rpcbind nfs-common
sed -i 's/NEED_IDMAPD=$/NEED_IDMAPD=YES/' /etc/default/nfs-common
mkdir -p /embedded/raspbian
echo "$SERVERADDRESS:/embedded/raspbian /embedded/raspbian nfs rw 0 0" >> /etc/fstab
/etc/init.d/rpcbind restart
/etc/init.d/nfs-common restart
mount -a
This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information