samba 服务优化

 1 samba fat32/hfs 文件系统 写入大文件(1G左右)失败问题
 2 
 3 修改代码
 4 
 5 source\smbd\vfs-wrap.c
 6 
 7 vfswrap_ftruncate()
 8 注释掉
 9 result = sys_ftruncate(fd, len);
10     if (result == 0)
11         goto done;
12 if (SMB_VFS_WRITE(fsp, fd, &c, 1)!=1)
13         goto done;
14 
15 
16 https://www.cnblogs.com/Flychown/p/6548021.html
17 
18 
19 
20 samba 配置优化, 开启IO, 提高r/w性能
21 
22 http://www.360doc.com/content/17/0621/13/27498460_665203623.shtml
23 
24 
25 
26 
27 
28 samba配置详解
29 
30 https://www.cnblogs.com/fatt/p/5856892.html

 

posted on 2020-03-25 13:56  listenerln  阅读(695)  评论(0编辑  收藏  举报