linux如何掛載windows下的共享檔案

散盡浮華發表於2016-10-18

 

說明:
windows下有一共享資料夾APP,windows本地ip是192.168.9.155
現在需要在linux伺服器上掛載這個APP資料夾,linux伺服器ip是192.168.9.200

操作記錄如下:

1)windows上的準備工作

首先將windows上D盤下的APP資料夾設定為共享。右擊APP資料夾的“共享”屬性.

選擇“特定使用者”共享,新增共享使用者。如下

 這樣,APP資料夾就設定為共享資料夾了,上面的O3zyrm2d4gnp5j2是windows的機器名。檢視APP下里面的檔案

 

2)linux伺服器上的操作

建立掛載目錄/mnt/APP

[root@dev ~]# mkdir /mnt/APP

使用mount.cifs進行掛載操作:(下面的使用者名稱和密碼是登陸windows的)

[root@dev ~]# mount.cifs //192.168.9.155/APP /mnt/APP/ -o user=administrator,pass=dsff#$TTT

檢視下,發現已經掛在上了
[root@dev ~]# ls /mnt/APP/
2.sql 3.sql 8633上線sql.zip

[root@dev mnt]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 450G 97G 331G 23% /
tmpfs 3.9G 228K 3.9G 1% /dev/shm
/dev/sda1 194M 34M 150M 19% /boot
//192.168.9.155/APP 123G 12G 111G 10% /mnt/APP

[root@dev mnt]# mount
/dev/sda2 on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev)
//192.168.9.155/APP on /mnt/APP type cifs (rw)

解除安裝
[root@dev mnt]# umount /mnt/APP
[root@dev mnt]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 450G 97G 331G 23% /
tmpfs 3.9G 228K 3.9G 1% /dev/shm
/dev/sda1 194M 34M 150M 19% /boot

相關文章