close

使用的主機是裝 Ubuntu 12.04 的

紀錄一下快速啟用 Samba 的方法。

 

#apt-get install samba

安裝完之後

#vi /etc/samba/smb.conf

修改 config

在此對細節不多做說明,

分享目錄主要增加下面內容,

下面例子分享兩個目錄做比對,

share1 為 read only, share2 為 R/W

確保 path 只到的目錄是存在的,

並且目錄的權限要注意,不然就算 config 設定好,

也會被系統設定的權限給影響,

[share1_RO]    <- 外部所看到的分享資料假夾名稱
path=/home/rd/samba_share1    <- 內部實際分享的資料夾位置
browseable = yes    <- 允許其他使用者看到這個分享資料夾
read only = yes    <- 設定為 read only
guest ok = yes
create mask = 0755
directory mask = 0755

[share2_RW]
path=/home/rd/samba_share2
browseable = yes
writable = yes    <- 設定為可讀寫
guest ok = yes
create mask = 0755
directory mask = 0755

儲存 config 之後,

#/etc/init.d/smbd restart

重啟之後,啟用新的設定。

arrow
arrow
    文章標籤
    samba network fileserver
    全站熱搜
    創作者介紹
    創作者 rex5405 的頭像
    rex5405

    雷射's zone

    rex5405 發表在 痞客邦 留言(0) 人氣()