Linux安裝Samber與Windows共享檔案

在Linux mint安裝samba伺服器,與windows 10分享檔案。

在Linux上安裝samba server

sudo apt-get install samba

編輯/etc/samba/smb.conf

使用nano作文字編輯器﹕

sudo nano /etc/samba/smb.conf

在檔案最後端加上﹕

security = share

[share]
comment = share
path = /home/yourname/yourfolder
available = yes
browsable = yes
public = yes
writable = yes
create mask = 0777

儲存後退出,(^O ^W)

將分享的資料夾,設定為nobody:nogroup及權限為0777

sudo chown -R nobody:nogrpup /home/yourname/yourfolder
sudo chown -R 777 /home/yourname/yourfolder

重啟samber server
sudo service smbd restart

開啟windows 10在網絡中便可以使用共享的資料夾

分類: Linux篇。這篇內容的永久連結

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *