Linux挂载Windows共享

如题

可以使用

1
enum4linux 192.168.200.114

扫描是否存在共享

假设windows共享地址为//192.168.200.114/share$

无需登录的情况
映射命令($需要转义):

1
mount -t cifs -l //192.168.200.114/share\$ /mnt

需要登录的情况
映射命令

1
mount -t cifs -o username=ge,password=ge -l //192.168.200.114/share\$ /mnt

删除映射命令(退出映射文件夹)

1
umount /mnt

如果挂载命令报错

1
mount: /mnt: bad option; for several filesystems (e.g nfs, cifs) you might need a /sbin/mount.<type> helper program.

安装一个cifs-utils软件即可。

如果还出错,centos安装nfs-utils samba-client;ubuntu安装nfs-common samba-client

注意,mount/umount命令需要root权限

本文标题:Linux挂载Windows共享

文章作者:暮沉沉

发布时间:2018年11月10日 - 15:11

最后更新:2018年11月10日 - 15:11

原始链接:http://maplege.github.io/2018/11/10/linux-mount-windows-share/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------