ubuntu 掛載伺服器下共享資料夾

2021-08-14 16:51:33 字數 1038 閱讀 4809

**

首先,在windows設定需要共享的資料夾;然後使用如下兩個方式將共享資料夾掛載到ubuntu14.04系統中,

1.mount方式:關機失效

win主機ip192.168.1.100,共享目錄workspace

mount -t cifs -o username='echo',password='123456'

1.100/workspace  /mnt/share 

2.通過修改fstab檔案,支援開機自動掛載

修改/etc/fstab檔案,檔案最後加入:

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='***'  /home/newton

#mount -t cifs /home/newton -o iocharset=utf8,username=」hjxu」,password=」***」,sec=ntlm,vers=1.0

mount -t cifs /home/newton -o username='hjxu',password="***",domain=domain,vers=1.0

**:參考**:

伺服器之間共享掛載

伺服器之間共享掛載 伺服器1 192.168.3.11 nginx 伺服器,去掛載 3.22 伺服器2 192.168.3.22 共享伺服器 分別在兩台伺服器上安裝nfs以及依賴 yum install nfs utils 設定開機服務 chkconfig rpcbind on chkconfig ...

Linux 伺服器掛載共享(nfs)

安裝nfs 2016 11 23 共享主伺服器 檢查是否已經安裝 rpm q nfs utils rpcbind 安裝 yum y install nfs utils rpcbind 增加共享目錄並 開啟檔案增加一行 vi etc exports www club userfiles 192.168...

伺服器掛載磁碟並在伺服器之間共享掛載的磁碟

參考文章 在172.16.104.60上掛載磁碟 磁碟分割槽已做好 檢視機器所掛硬碟個數及分割槽情況 將磁碟掛載在 data目錄上 檢視目錄掛載情況 lsblk f 掛載成功 設定可以自動掛載 永久掛載,當你重啟linux之後,仍然可以掛載 永久掛載 通過修改 etc fstab 實現掛載 執行如下...