發表文章

目前顯示的是 1月, 2016的文章

Ubuntu samba 設定

1.假設我的檔案要要與別台電腦分享,如果有安裝samba可是用系統預設GUI設定依然無法成功分享 step1 sudo apt-get install samba  step2 設定Config檔 sudo kate /etc/samba/smb.conf step3 在conf檔最下面加入 [ShareFoloder] comment = MyFolder read only = no locking = no path = /home/cba/Share guest ok = yes force user = cba writeable = Yes only guest = Yes create mask = 0777 directory mask = 0777 ShareFolder 是顯示資料夾名稱 PATH是分享資料夾的路徑  force user;你的登入桌面的帳號  此設定檔還可以分享   Ubuntu"自動掛載的ntfs 的磁區。 step4  重啟服務 sudo /etc/init.d/samba restart