#1 Le 25/09/2008, à 21:27
- frafa
Benchmark de disques, oulils pour...
Bonjour,
si vous en conaissez d'autres, notamment avec une interface graphique,
ou si un pro de gnuplot sait comment interpreter bonnie++ pour obtenir ce genre de resultat,
ben je veux bien des conseils...
j'ai testé ces outils:
Avec hdparm
DISQUE="/dev/sdc1" #reglez cette variable !!!
hdparm -Tt $DISQUE
Avec bonnie++ et bon_csv2html
FOLDER="$HOME/test"
mkdir "$FOLDER"
bonnie++ -r 100 -f -b -u $USER -s 256:64k -x 1 -d "$FOLDER" | bon_csv2html >bonie_test.html
firefox bonie_test.html
Avec bonnie++ et bon_csv2txt
FOLDER="$HOME/test"
mkdir "$FOLDER"
bonnie++ -r 100 -f -b -u $USER -s 256:64k -x 1 -d "$FOLDER" | bon_csv2txt >bonie_test.txt
firefox bonie_test.txt
Avec zcav et gnuplot
DISQUE="/dev/sdc1" #reglez cette variable !!!
#http://www.gnuplot.info/ http://www.gnuplot.info/documentation.html
#man zcav pour les options :)
FILE="zcav.txt"
export FILE DISQUE
cd $HOME
zcav -c 1 -u $USER:$USER -b 40 -f $DISQUE | tee $FILE
sed -i "s/#[0-9]//g" $HOME/zcav.txt
gnuplot<<EOF
unset autoscale x
set autoscale xmax
unset autoscale y
set autoscale ymax
set xlabel "Position MB"
set ylabel "KB/s"
set terminal png small
set output "Disque.png"
plot "${FILE}"
EOF
firefox Disque.png
Avec seeker
wget http://www.linuxinsight.com/files/seeker.c
gcc -O2 seeker.c -o seeker
DISQUE="/dev/sdc1" #reglez cette variable !!!
sudo ./seeker $DISQUE
iozone3 (pas testé)
Edit1: ajout de seeker merci à larotule pour info
Dernière modification par frafa (Le 25/09/2008, à 22:57)
Hors ligne
#2 Le 25/09/2008, à 22:31
- larotule
Re : Benchmark de disques, oulils pour...
y'a seeker pour tester le temps d'acces des disques durs
http://www.linuxinsight.com/how_fast_is_your_disk.html
wget http://www.linuxinsight.com/files/seeker.c
Hors ligne
#3 Le 25/09/2008, à 22:58
- frafa
Re : Benchmark de disques, oulils pour...
Merci, je conaissait pas, ajouté a la liste...
Dernière modification par frafa (Le 25/09/2008, à 22:58)
Hors ligne