如何在Xubuntu中共享文件夹?

Oro*_*pie 15 xubuntu samba networking shared-folders

如何像在 Ubuntu 中一样在 Xubuntu 中共享文件夹?我没有发现在我的网络上共享文件夹的设置或选项,我确实安装了 Samba。我不知道还能尝试什么。有没有我可以在终端中为 Xubuntu 尝试的命令?我确实在我的网络上的其他计算机上看到了我的 Xubuntu 机器,但是当我在其他计算机上访问它时显示为空。为此,Ubuntu 对用户更加友好。

小智 13

菜单 --> 设置 --> 共享文件夹

或者...

执行:

shares-admin
Run Code Online (Sandbox Code Playgroud)

字体:http : //linuxuserlog.blogspot.com.br/2014/01/como-compartilhar-pastas-arquivos-no.html

  • 这在 Xubuntu 18.04 中对我不起作用。 (4认同)

THe*_*per 7

安装 Samba(包名system-config-samba)。如果您使用的是 Xubuntu 13.10,那么还要安装 gksu。然后转到Settings Manager -> Samba并添加所需的共享。

或者,您可以编辑/etc/samba/smb.conf文件并添加如下内容

[set share name here]
    path = set path here
    comment = set description here
    writeable = no
    browseable = yes
    read only = yes
    guest ok = yes
Run Code Online (Sandbox Code Playgroud)