Ubuntu和Fedora与Samba共享


1

如何在使用samba的同一网络中在台式PC(使用Ubuntu)和笔记本(使用Fedora)之间共享文件?我试着为他们两个配置samba,但什么都没有?在Fedora上我使用GUI配置了Samba(添加新用户,命名服务器等)。有人能给我一个好教程的链接吗?我在谷歌搜索,但没什么好。


你为什么要尝试桑巴舞?最好使用NFS在Linux系统之间共享。虽然我们需要安全考虑。
kamae 2011年

你能编辑并告诉我们你做了什么以及卡在哪里的更多细节吗?samba tutorial谷歌的第一页提供了“好”的教程,所以也许您需要更具体的帮助?
保罗

Answers:


0

在两台机器上试试这个。

首先,备份现有的smb.conf文件:

sudo mv /etc/samba/smb.conf /etc/samba/smb.conf.old

然后把它放在/etc/samba/smb.conf中:

[global]
server string = Your computer's description
workgroup = Your workgroup name
security = user
map to guest = Bad User
name resolve order = bcast hosts wins
client lanman auth=Yes
wins support = yes

include = /etc/samba/smbshared.conf

然后在/etc/samba/smbshared.conf中输入:

[Desktop] ; user="yourusername"
force user = yourusername
path = /path/to/share
writable = yes
public = yes
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.