1、安装nfs服务

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

2、修改配置文件

sudo vim /etc/exports

3、修改内容如下:

/work *(rw,sync,no_root_squash)

4、重启nfs服务

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

5、开发板挂载

mount -t nfs -o nolock 192.168.1.110:/work/fs4412 /mnt

6、pc挂载

mount 192.168.1.110:/work/fs4412  /mnt 

  

  

 

  

相关文章:

  • 2021-04-19
  • 2022-12-23
  • 2021-09-12
  • 2021-12-23
  • 2021-10-31
  • 2021-10-09
  • 2022-02-07
猜你喜欢
  • 2022-12-23
  • 2021-05-03
  • 2021-09-24
  • 2021-09-06
  • 2021-10-13
  • 2021-05-18
相关资源
相似解决方案