Centos挂载windows域控共享目录

前端之家收集整理的这篇文章主要介绍了Centos挂载windows域控共享目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一 环境

SERVER:windows server 2012 R2 DC域控 IP:192.168.1.11

CLIENT:Centos 6.5

二 mount挂载

命令:

mount-tcifs-ousername='test\testuser',password='test'"//192.168.1.11/servertest/test"/mnt/test
mount:blockdevice//192.168.1.11/servertest/testiswrite-protected,mountingread-only
mount:cannotmountblockdevice//192.168.1.11/servertest/testread-only

报错:write-protected,mounting read-only

需要安装:

yuminstallcifs-utils.x86_64

安装完成之后 继续执行就可以。

三 开机自动挂载

mount挂载完成之后,关机之后就失效了,可以通过修改/etc/fstab 文件实现开机挂载 添加一行:

"//192.168.1.11/servertest/test"/mnt/testcifsauto,username=‘test\testuser’,password=‘test’00


四 其他

-t cifs(common internet file system) 指定文件类型

-o 指定文件挂载时的选项 ro 只读 rw 读写

username和password是登录用户名和密码,域环境下用户名需要加上域名

共享的目录地址,如果目录名有空格需要用双引号""

linux挂载域环境下服务器的共享目录需要用户的账号有对共享文件的读和写权限。

五 参考链接

http://blog.chinaunix.net/uid-8810763-id-2453890.htmlmount命令详解

http://www.jb51.cc/article/p-cjyiprwk-bba.htmlmount失败密码hash问题

http://www.jb51.cc/article/p-cywwavck-tv.html开机自动挂载

原文链接:https://www.f2er.com/centos/377221.html

猜你在找的CentOS相关文章