Samba用於Ubuntu和Windows進行網路共用的工具

來源:互聯網
上載者:User
關鍵字 Ubuntu 網路共用 Samba

Samba是HTTP://www.aliyun.com/zixun/aggregation/13835.html">Ubuntu和Windows進行網路共用的工具,比如分享印表機,互相之間傳輸資料檔。

安裝Samba

安裝samba

sudo apt-get install samba

Kubuntu

安裝系統設置的共用模組

sudo apt-get install kdenetwork-filesharing

配置

1.windows 訪問 ubuntu

第一步創建共用目錄: 比如要創建/home/使用者名/share首先創建這個資料夾 (這個使用者名就是你的使用者名,為了方便易懂我才這樣寫的,到時記得自己改啊)

代碼:

mkdir /home/使用者名/share (新建share資料夾)chmod 777 /home/使用者名/share (設置該資料夾的許可權使其讓所有使用者可讀可寫可運行)

備份並編輯smb.conf允許網路使用者訪問 (養成隨時備份的好習慣,在關鍵的時候你會發現當初的備份是多麼的明智! )代碼:

sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backupsudo gedit /etc/samba/smb.conf

搜尋這一行文字代碼:

; security = user

用下面這幾行取代

代碼:

security = userusername map = /etc/samba/smbusers

將下列幾行新增到檔的最後面,假設允許訪問的使用者為:new。 而資料夾的共用名稱為 Share #這裡之所以這麼寫就是因為後面我們要創建一個smb使用者new,並且讓XP使用者通過這個new來和我們進行資料交流。 當然你可以寫為自己喜歡的名字 只不過前後要一致就可以了

代碼:

[Share]

comment = Shared Folder with username and password

path = /home/使用者名/share

public = yes

writable = yes

valid users = new

create mask = 0700

directory mask = 0700

force user = nobody

force group = nogroup

available = yes

browseable = yes

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.