挂载:mount
设备
挂载点
取消:umount
设备
vi
/etc/fstab
/dev/sdb1
/mnt/ext4
ext4
defaults
0
0
实现永久挂载
mount
-a
实行vim中的内容
B. 关于linux中mount的命令
先不看 -o 及后面的参数,命令配者
mount -t nfs client:/partition /partition
将 主机 `client' 下的 /partition 目录 mount 到本机的 /partition 下,给个实例
mount -t nfs 192.168.100.1:/home/aaa /bbb
将 192.168.100.1 上的 /home/aaa 目录mount 到本地的 /bbb 目录。
mount -o 后面的则是用来指定文件系统的参数,对于你的情况,就是用来指定 NFS 系统的参数。你只要 man nfs 就可以看到这些参数的意义了,比如
timeo=n The time in deciseconds (tenths of a second) the NFS client waits for a response before it retries an NFS request.
即访问超时的定义,所以 timeo=14 就是设置超时为1.4秒
rsize=n The maximum number of bytes in each network READ request that the NFS client can receive when reading data from a
file on an NFS server.
即一次 READ 操作最大能读培仿薯取的数据字节数,所以 rsize=8192 就是设置一次读取最大 8k字大族节。
wsize=n The maximum number of bytes per network WRITE request that the NFS client can send when writing data to a file on
an NFS server.
即一次 WRITE 操作最大能写的字节数。
intr 这个参数你可以不用理了,(根据 man nfs) 从 linux 2.6.25 以后,这个参数就没有意义了。
C. 为什么linux虚拟机使用mount命令没有反应
如果是挂nfs的话需要你服务器在同一个内网,nfs服务允许该机器访问,并且写mount的时候应该是 mount /ip/dir /computerdir 这么写,你网络路径前面少了一个/。