链条传动

砥砺前行,不忘初心!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Linux挂载Winodws共享文件夹

mount -t cifs -o username=***,password=*** //192.168.1.48/share /mnt

其中-t表示要挂载的类型,cifs是微软提供远程访问的一个协议。然后是登录用户和密码,和windows共享地址,和挂载地址。然后就可以查看了。

 


 

linux挂载NFS文件

mount -t nfs4 192.168.1.113:/opt/fileserver /opt/AppFiles

错误:

nfs挂载错误的问题,错误提示如下:

mount: wrong fs type, bad option, bad superblock on 192.168.1.113:/opt/fileserver

解决:

yum install nfs-utils

 

posted on 2016-07-15 15:30  链条君  阅读(525)  评论(0编辑  收藏  举报