Hallo,
ich habe im ihad Forum folgendes script gefunden, welches auch auf der DM funktionieren soll.
NFS Speedscript
NFS Speedscript:
Alles anzeigen
Mein NAS ist über das Mountplugin einbezogen, aber wenn ich das mit der folgenden Config auf meiner DM aufrufe ...
Alles anzeigen
... bekomme ich folgende Fehlermeldung:
Kennt jemand eine Lösung?
Ich fnd das script interessant, weil bei den Testern mit höheren wsize- und rsize-Werten als 8192 eine bessere Performance erzielt wurde und man mit idealen Einstellungen noch ein paar Prozent Bandbreite rauskitzeln kann, welches ja für HD-Aufnahemn auf den NAS hilfreich sein könnte.
Gruß
cruiser
ich habe im ihad Forum folgendes script gefunden, welches auch auf der DM funktionieren soll.
NFS Speedscript
NFS Speedscript:
Shell-Script
- #!/bin/sh
- # IP of your NFS server
- serverip=192.168.69.70
- # exported directory on your NFS server
- exportdir=filme
- # mount point on dbox
- dboxmountpoint="/var/mnt/nfs"
- # filesize to transfer in MBytes.
- # At least 8 MByte. Good values are 32 or 64 MByte.
- # Try 128 to be more accurate (takes much longer!)
- filesize=64
- # block sizes to test in KBytes, possible values are 1 2 4 8 16 32.
- # values have to be separated with spaces. See examples below.
- # blocksizelist="4 8 32"
- # blocksizelist="16"
- blocksizelist="4 8 16 32"
- # wether to enable synchronous reading, writing. Possible values are "yes"
- # or no. Normally synchronous reading or writing should be slower than
- # asynchronous, so to save some time most people would say "no" here.
- enablesynctests="no"
- ##################################################################
- ######## don't edit below this line ########
- ##################################################################
- bs=8192
- count=`expr $filesize \* 1048576 / $bs`
- wlist=""
- rlist=""
- synctests="async"
- if [ $enablesynctests = "yes" ]; then
- synctests="sync "$synctests
- fi
- echo
- echo "Measuring NFS throughput..."
- for factor in $blocksizelist
- do
- for protocol in udp tcp
- do
- for synchronized in $synctests
- do
- size=`expr $factor \* 1024`
- bitcount=`expr $bs \* $count \* 8`
- umount $dboxmountpoint 2>/dev/null
- mount -t nfs -o rw,soft,$protocol,nolock,$synchronized,rsize=$size,wsize=$size $serverip:$exportdir $dboxmountpoint
- echo "Mount options: "$protocol", "$synchronized", wsize="$size
- echo "writing "$filesize" MBytes..."
- a=`date +%s`
- dd if=/dev/zero of=$dboxmountpoint/test bs=$bs count=$count 2>/dev/null;
- if [ $? = "0" ]
- then
- z=`date +%s`
- duration=`expr $z - $a`
- throughput=`expr $bitcount / $duration`
- echo "Success after "$duration" seconds"
- else
- throughput="Failure"
- echo "Failure"
- fi
- wlist=$wlist$throughput" with "$protocol","$synchronized",wsize="$size"\n"
- echo "Mount options: "$protocol", "$synchronized", rsize="$size
- echo "reading "$filesize" MBytes..."
- a=`date +%s`
- dd of=/dev/null if=$dboxmountpoint/test bs=$bs count=$count 2>/dev/null;
- if [ $? = "0" ]
- then
- z=`date +%s`
- duration=`expr $z - $a`
- throughput=`expr $bitcount / $duration`
- echo "Success after "$duration" seconds"
- else
- throughput="Failure"
- echo "Failure"
- fi
- rlist=$rlist$throughput" with "$protocol","$synchronized",rsize="$size"\n"
- echo
- done
- done
- done
- echo "Results for write throughput:"
- echo -e $wlist | sort -nr | sed 's/^\([0-9]*\)\([0-9]\{3\}\)\([0-9]\{3\}\(.*\)\)/\1.\2 Mbit\/s\4/g'
- echo "Results for read throughput:"
- echo -e $rlist | sort -nr | sed 's/^\([0-9]*\)\([0-9]\{3\}\)\([0-9]\{3\}\(.*\)\)/\1.\2 Mbit\/s\4/g'
Mein NAS ist über das Mountplugin einbezogen, aber wenn ich das mit der folgenden Config auf meiner DM aufrufe ...
Shell-Script
- #!/bin/sh
- # IP of your NFS server
- serverip=192.168.178.88
- # exported directory on your NFS server
- exportdir=/dreambox
- # mount point on dbox
- dboxmountpoint="/hdd/NAS"
- # filesize to transfer in MBytes.
- # At least 8 MByte. Good values are 32 or 64 MByte.
- # Try 128 to be more accurate (takes much longer!)
- filesize=64
- # block sizes to test in KBytes, possible values are 1 2 4 8 16 32.
- # values have to be separated with spaces. See examples below.
- # blocksizelist="4 8 32"
- # blocksizelist="16"
- blocksizelist="4 8 16 32"
- # wether to enable synchronous reading, writing. Possible values are "yes"
- # or no. Normally synchronous reading or writing should be slower than
- # asynchronous, so to save some time most people would say "no" here.
- enablesynctests="no"
Kennt jemand eine Lösung?
Ich fnd das script interessant, weil bei den Testern mit höheren wsize- und rsize-Werten als 8192 eine bessere Performance erzielt wurde und man mit idealen Einstellungen noch ein paar Prozent Bandbreite rauskitzeln kann, welches ja für HD-Aufnahemn auf den NAS hilfreich sein könnte.
Gruß
cruiser
DM900UHD DVB-C/T2 Newnigma2 OE 2.5 Daily