是否可以在主文件夹之外使用 Ubuntu One 共享文件夹?

Col*_*tru 3 sharing ubuntu-one

正如标题所暗示的那样,我无法找到一种使用 Ubuntu One 在我的主文件夹之外共享文件夹的方法。使用 Nautilus 浏览到我的工作分区时,每个文件夹的“共享”选项都变灰了。

Kri*_*per 7

您可以尝试使用mount --bind command. 就像是

mount --bind /path/to/folder /home/username/folder_to_sync
Run Code Online (Sandbox Code Playgroud)

这应该使 的内容/path/to/folder在两个地方都可用。

Ubuntu-one 不支持符号链接,但它可能支持绑定安装。如果它确实有效,您可以添加一行/etc/fstab

/path/to/folder /home/username/folder_to_sync    none    bind    0    0
Run Code Online (Sandbox Code Playgroud)

这样它总是会在启动时挂载。