如何在 Xubuntu 中共享文件夹?

如何在 Xubuntu 中共享文件夹?

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

答案1

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

或者...

执行:

shares-admin

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

答案2

安装 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

答案3

不幸的是,在最近的 Xubuntu 版本中shares-admin,(崩溃)和system-config-samba(弃用)都不起作用。除了 Nautilus 之外,我们没有从 Thunar 共享目录的选项。

这显然意味着截至今天我们还没有一种可行的图形方法来在 Xubuntu 中设置 Samba 共享。

因此,安装 samba 并定义 Samba 用户后:

sudo apt install samba
sudo smbpasswd -a [user]  ## [user] must already exist for Xubuntu

我们可以使用命令net usershare 用于添加目录。由于复制粘贴功能更强大,我发现在以下位置创建条目更加方便/etc/samba/smb.conf

[share name]
    path = full path to shared directory
    comment = optional description
    writeable = yes
    browseable = yes
    read only = yes
    guest ok = yes

更多选项smb.conf可参阅Samba 文档. 指定份额将在重新启动 samba 服务器

相关内容