1. 程式人生 > >通過samba mount 網路盤到linux目錄包括windows

通過samba mount 網路盤到linux目錄包括windows

常常發現要從windows伺服器copy檔案到linux伺服器進行編輯,用自己本地pc做中轉進行copy速度會很慢,為了加速就讓兩個server在同一區域網的情況下,可以讓兩個server直接連線,加速效果很理想。

以samba的方式mount windows的目錄:

1.使用mount -t cifs :

sudo mount -t cifs //servername/fodlers /home/xxxxxx/tmp/ -o username=your linux name,password=yourpassword;

2.發現mount的目錄許可權不夠,可以加引數uid,gid設定使用者組:

sudo mount -t cifs -o username="domain/username",password="yourpassword",uid=username,gid=username

//servername/fodlers /home/xxxxxx/tmp/

3.使用完後可以umount,進行解除安裝:

umount /home/xxxxxx/tmp/