|
|
开了两个共享目录,一个是ext3分区的,另外一个是ntfs分区的。
其中ntfs分区通过ntfs-3g已经在linux下实现读写了,权限是777,smb.conf里如下
[global]
server string = company's Samba Server %v, enjoy!
log file = /var/log/samba/%m.log
max log size = 50
security = user
encrypt passwords = yes
smb passwd file = /etc/samba/smbpasswd
display charset = UTF-8
unix charset = UTF-8
dos charset = UTF-8
[Share SoftWare for company]
comment = Share SoftWare for company
path = /home/com
browseable=yes
valid users =com
writable = yes
[test's Document]
comment = test's Document
path = /mnt/WinD/test
browseable=yes
valid users =com
writable = yes
在windows下访问的时候,那个ext3分区的可以正常访问(Share SoftWare for company)
而另外一个却不行(test's Document)
是不是和ntfs分区有关,还是哪里没有设置好? |
|