Red Had 9 下NFS服务创建步骤
Posted zieckey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Red Had 9 下NFS服务创建步骤相关的知识,希望对你有一定的参考价值。
zieckey@yahoo.com.cn
1. 准备
# mkdir /mnt/nfs
# mkdir /mnt/incoming/
# chmod 777 /mnt/incoming/
2. 配置
打开配置文件
# gedit /etc/exports &
输入:
/mnt/incoming *(ro,no_root_squash)
保存退出
3. 重启
# service nfs restart
# touch /mnt/incoming/hello.txt
4. 挂载
# mount -t nfs 192.168.38.151:/mnt/incoming/ /mnt/nfs/
# ls /mnt/nfs/
1. 准备
# mkdir /mnt/nfs
# mkdir /mnt/incoming/
# chmod 777 /mnt/incoming/
2. 配置
打开配置文件
# gedit /etc/exports &
输入:
/mnt/incoming *(ro,no_root_squash)
保存退出
3. 重启
# service nfs restart
# touch /mnt/incoming/hello.txt
4. 挂载
# mount -t nfs 192.168.38.151:/mnt/incoming/ /mnt/nfs/
# ls /mnt/nfs/
以上是关于Red Had 9 下NFS服务创建步骤的主要内容,如果未能解决你的问题,请参考以下文章