ubuntu 挂载服务器下共享文件夹

转自http://blog.csdn.net/langb2014/article/details/78929045

首先,在Windows设置需要共享的文件夹;然后使用如下两个方式将共享文件夹挂载到Ubuntu14.04系统中,

1.mount方式:关机失效

win主机IP192.168.1.100,共享目录workspace

mount -t cifs -o username='echo',password='123456' //192.168.1.100/workspace  /mnt/share 

2.通过修改fstab文件,支持开机自动挂载

修改/etc/fstab文件,文件最后加入:

//192.168.1.100/workspace   /mnt/share cifs  auto,username=‘echo’,password=‘123456’  0 0 

其中username是Windows系统的用户名,密码为Windows用户密码。

在执行指令的时候,如果不安装cifs可能会报mount:cannot mount block device,安装指令如下:sudo apt-get install cifs*

安装完后即可实现共享文件的挂载。


后来装了16.04的系统,发现总是报错,报错如下

mount error(95): Operation not supported
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

解决方法如下,选择没有注释的那个就可以了

#sudo mount -t cifs -o username=hjxu,password='***' //10.255.000.000/Data /home/Newton
#mount -t cifs //10.255.000.000/Data /home/Newton -o iocharset=utf8,username=”hjxu”,password=”***”,sec=ntlm,vers=1.0
mount -t cifs //10.255.000.000/Data /home/Newton -o username='hjxu',password="***",domain=DOMAIN,vers=1.0

转自:http://blog.csdn.net/xugen12/article/details/53366757


参考网址:http://blog.csdn.net/u012207077/article/details/14446603

http://www.centoscn.com/CentOS/Intermediate/2014/0318/2619.html

http://www.cnblogs.com/dingyingsi/archive/2013/04/16/3023392.html

你可能感兴趣的:(ubuntu,系统)