nVIDIA Jetson TX1 NFS服务搭建

1、在host主机上安装nfs组件:

$ sudo apt-get install nfs-common nfs-kernel-server

2、在host主机上配置etc/exports,指出需要mount出的目录:

修改etc/exports文件如下:

$/nfsroot *(rw,nohide,insecure,no_subtree_check,async,no_root_squash)

 

然后重启nfs服务:

$ sudo /etc/init.d/nfs-kernel-server restart

3、target上安装nfs-common

$ sudo apt-get install nfs-common

有时可能会提示安装失败,或者是找不到nfs-common安装包。需要先update

$ sudo apt-get update

然后再运行上面的命令

4、targetmounthostnfs挂载路径

$sudo mount -t nfs  -o nolock <ipaddr>:<dir-on-host> <dir-on-target>

 

例子:

sudo mount -t nfs  -o nolock 192.168.1.100:/home/host/nfs_root /home/target/nfs_root

 

然后就可以远程挂载,调试程序了。


走起。

你可能感兴趣的:(nfs,nVidia,jetson-tx1)