我已经在 VirtualBox 上成功安装了 UbuntuWindows 8和 Samba 扩展来处理文件夹。除了以点 ( ) 开头的文件(如或)/var/www/html
之外,它运行良好。.
.htaccess
.maintenance.php
问题是我无法编辑这些文件的内容,因为它们是只读(下图)。我以前没有遇到过这个问题(当我在 Windows XP 上安装 VB + Ubuntu 时,我可以编辑任何内容),但在 Windows 8 中,似乎出现了问题。
- 只读模式
在 Windows 中,我可以看到这些文件是隐藏的,所以我必须关闭隐藏物品在:
我尝试将 chmod 设置为 777,但这并不能使它们成为非只读文件。我可以重命名、删除,但无法编辑其内容。
Samba conf 中是否需要添加/编辑某些内容?我当前的文件包含以下部分:
[share]
comment = PHP Share
path = /var/www/html
browsable = yes
guest ok = yes
read only = no
create mask = 0755
我在用Ubuntu 14.04。
答案1
最后的解决方案是添加hide dot files = no
到smb.conf
。因此配置具有以下格式:
[share]
comment = PHP Share
path = /var/www/html
browsable = yes
guest ok = yes
read only = no
create mask = 0755
hide dot files = no
现在文件不再被隐藏,也不是只读的。