Hello Friends!
You can have more speed in Samba share inside OMV.
For this there are some commands to put in EXTRA OPTIONS in GLOBAL section or in share that you want.
log level = 1
socket options = TCP_NODELAY SO_RCVBUF=65536 SO_SNDBUF=65536
read raw = yes
write raw = yes
max xmit = 65535
dead time = 15
getwd cache = yes
log level = 1:
Produce the basic log
socket options = TCP_NODELAY SO_RCVBUF=65536 SO_SNDBUF=65536:
Tells the server to send as many packets as necessary to keep delay low. This will account for a 30 percent speedup by itself. In Samba 2.0 socket options = TCP_NODELAY became the default value.
SO_SNDBUF and SO_RCVBUF:
The send and receive buffers can often be the reset to a value higher than that of the operating system. This yields a marginal increase of speed until it reaches a point of diminishing returns. For a modern OpenBSD box serving shares to Windows xp/Vista or Linux machines a SO_SNDBUF and SO_RCVBUF of 65536 increased throughput by as much as 20% by itself.
Raw read and write:
These are important performance configuration options; they enable Samba to use large reads and writes to the network, of up to 64KB in a single SMB request. They also require the largest SMB packet structures, SMBreadraw and SMBwriteraw, from which the options take their names. In the past, some clients failed if you tried to use read raw. No clients suffer from this problem now. Read and write raw default to yes, and should be left on unless you find you have one of the ancient buggy clients.
max xmit:
In Samba, the option that is directly related with the MTU and window size is max xmit. This option sets the largest block of data Samba will try to write at any one time
dead time:
Number of minutes of inactivity before a connection should be terminated.
getwd cache:
This option caches the path to the current directory avoiding directory listing waits.
If you read more about this, click here:
http://www.arm-blog.com/samba-…r-better-transfer-speeds/
I hope that help you!
Thank You
Douglas