博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[daily][nfs] nfs客户端设置
阅读量:5300 次
发布时间:2019-06-14

本文共 1060 字,大约阅读时间需要 3 分钟。

 

 

1. 安装nfs工具,其实是mount需要mount.fs

否则会出现类似如下错误:

[root@stds ~]# mount -t nfs 192.168.7.1:/home/tong/Src /root/src mount: wrong fs type, bad option, bad superblock on 192.168.7.1:/home/tong/Src,       missing codepage or helper program, or other error       (for several filesystems (e.g. nfs, cifs) you might       need a /sbin/mount.
helper program) In some cases useful info is found in syslog - try dmesg | tail or so.

 

安装:

[root@stds ~]# yum install nfs-utils

 

2. 挂载:

[root@stds ~]# mount -t nfs 192.168.7.1:/home/tong/Src /root/src [root@stds ~]# lsanaconda-ks.cfg  src[root@stds ~]# ll src/total 0drwxr-xr-x. 1 1000 1000  54 Nov 10 21:02 BUILDdrwxr-xr-x. 1 1000 1000 110 Dec  1 17:09 copyleftdrwxr-xr-x. 1 1000 1000  54 Mar  6  2017 copyrightdrwxr-xr-x. 1 1000 1000  20 Oct  9 11:46 INSTALLdrwxr-xr-x. 1 1000 1000 376 Dec  6 14:04 thirdparty

 

 

3. 开机自动挂载:

在 /etc/fstab 中,添加如下行

[root@stds ~]# tail -n1 /etc/fstab192.168.7.1:/home/tong/Src /root/src nfs defaults,nofail,actimeo=3600 0 0

 

 

 

转载于:https://www.cnblogs.com/hugetong/p/8193384.html

你可能感兴趣的文章
Mongodb----基础
查看>>
【转载】Xcode6中添加pch文件
查看>>
英语学习第一周
查看>>
java正则表达式详解与应用(学习必备)
查看>>
人民币对澳元汇率的大数据分析与预测
查看>>
会话管理
查看>>
ata
查看>>
VIM
查看>>
计算分页数据的算法
查看>>
Vim常用命令
查看>>
hdu1798: Tell me the area
查看>>
jquery的$().each,$.each的区别
查看>>
Apache Commons 工具集使用简介
查看>>
jquery validation插件
查看>>
(ubuntu ufw)My firewall is blocking network connections from the docker container to outside
查看>>
Oracle PL/SQL之LOOP循环控制语句
查看>>
复制到剪切板
查看>>
Linux多线程 - 基本操作
查看>>
写在技术博客开通一周年之际:这一年在技术上我做了什么
查看>>
javascript权威指南 第8章 笔记2
查看>>