Ubuntu 搭建 nfs
Posted 杂记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 搭建 nfs相关的知识,希望对你有一定的参考价值。
1.更新源列表
输入"sudo apt-get update"-->回车
2.安装
输入"sudo apt-get install nfs-kernel-server portmap "-->回车
3.配置
mkdir /home/haiwell/rootfs
在配置文件/etc/exports新增如下内容,使其能够通过网络文件系统访问: /home/haiwell/rootfs *(rw,sync,no_root_squash)
4.重启NFS服务器
输入"sudo /etc/init.d/nfs-kernel-server restart "-->回车
用例:arm板上挂载nfs
输入"mount 192.168.70.66:/home/haiwell/rootfs /work/nfs/ -o nolock "-->回车
以上是关于Ubuntu 搭建 nfs的主要内容,如果未能解决你的问题,请参考以下文章