On Fri, Oct 22, 2010 at 10:30 AM, Paul Nijjar <span dir="ltr"><<a href="mailto:paul_nijjar@yahoo.ca">paul_nijjar@yahoo.ca</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
This is a Windows question, but Linux solutions would be welcome<br>
(especially Linux solutions that can be run off a LiveCD).<br>
<br>
I am trying to saturate throughput on a gigabit network card.<br>
<br>
I am getting the impression that Samba is inherently slow. The<br>
application used to transfer files does seem to make a difference --<br>
depending on the (proprietary, Windows) utility I use, I am getting<br>
transfers that use from 12% to 25% of the gigabit link.<br>
<br>
Now I am wondering whether I should try to set up an NFS share or FTP<br>
server or something on the host I am testing. Has anybody run into<br>
this issue before? How do you solve it?<br>
<br>
- Paul<br></blockquote></div><br>I never did benchmarks for the same of timing the internal network, but<br>when doing so for other reasons, I would have a file accessible via HTTP<br>and just use:<br><br>$ time wget <a href="http://yourserver.example.com/somefile.tar.gz">http://yourserver.example.com/somefile.tar.gz</a> <br>
<br>If the source server has lots of RAM, then the disk (slowest component)<br>would not be read as much. <br><br>The receiving server can use a tmpfs/ramdisk so that it is not writing to <br>the disk at all.<br><br>Another thing you may want to try, but not sure how fast it can generate<br>
data is using /dev/urandom as the source and /dev/null as the destination.<br>This removes the disk from the equation.<br><br>dd if=/dev/urandom ....<br><br>Can't think of how to pipe that over a network right now.<br>
-- <br>Khalid M. Baheyeldin<br><a href="http://2bits.com">2bits.com</a>, Inc.<br><a href="http://2bits.com">http://2bits.com</a><br>Drupal optimization, development, customization and consulting.<br>Simplicity is prerequisite for reliability. --  Edsger W.Dijkstra<br>
Simplicity is the ultimate sophistication. --   Leonardo da Vinci<br>