6. Accelerate Development with NFS

6.1. Ubuntu Server Side Setting Instructions

Install nfs-kernel-server

sudo apt-get install nfs-kernel-server
例:mkdir /home/nfs_server

Modify the /etc/exports file and add the following

/home/nfs_server *(rw,sync,no_subtree_check,no_root_squash)

restart nfs service

/etc/init.d/rpcbind restart
/etc/init.d/nfs-kernel-server restart

6.2. EVB Side mount Description

Create mount point in the file system /mnt/data

mkdir /mnt/data/nfs

mount nfs

mount -t nfs -o nolock 192.168.1.103:/home/ nfs_server /mnt/data/nfs/

6.3. Precautions

PC and board are connected to the same LAN.