您好,登錄后才能下訂單哦!
一 環境
SERVER:windows server 2012 R2 DC域控 IP:192.168.1.11
CLIENT:Centos 6.5
二 mount掛載
命令:
mount -t cifs -o username='test\testuser',password='test' "http://192.168.1.11/server test/test" /mnt/test
mount: block device //192.168.1.11/server test/test is write-protected, mounting read-only mount: cannot mount block device //192.168.1.11/server test/test read-only
報錯:write-protected, mounting read-only
需要安裝:
yum install cifs-utils.x86_64
安裝完成之后 繼續執行就可以。
三 開機自動掛載
mount掛載完成之后,關機之后就失效了,可以通過修改/etc/fstab 文件實現開機掛載 添加一行:
"http://192.168.1.11/server test/test" /mnt/test cifs auto,username=‘test\testuser’,password=‘test’ 0 0
四 其他
-t cifs(common internet file system) 指定文件類型
-o 指定文件掛載時的選項 ro 只讀 rw 讀寫
username和password是登錄的用戶名和密碼,域環境下用戶名需要加上域名
共享的目錄地址,如果目錄名有空格需要用雙引號""
linux掛載域環境下服務器的共享目錄需要用戶的賬號有對共享文件的讀和寫權限。
五 參考鏈接
http://blog.chinaunix.net/uid-8810763-id-2453890.html mount命令詳解
http://blog.csdn.net/jingxia2008/article/details/50218933 mount失敗密碼hash問題
http://blog.csdn.net/lanyou1900/article/details/39612585 開機自動掛載
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。