Activity log for bug #320593

Date Who What changed Old value New value Message
2009-01-23 19:22:56 Mahyuddin Susanto bug added bug
2009-01-25 09:42:44 Mahyuddin Susanto sedot: status New Fix Released
2009-01-25 09:42:44 Mahyuddin Susanto sedot: statusexplanation fix dengan panduan ini http://net.doit.wisc.edu/~plonka/list/flowscan/archive/1448.html quote: When you want to copy/move from one platform to another, you can use "rrdtool dump" to convert them to a portable XML format, then "rrdtool restore" to restore them to a binary format appropriate for the localhost. berikut scriptnya #!/bin/bash BASE=/home/sedot/mirror-size/ for i in `ls $BASE -all | grep .rrd | sed -e "s/.rrd/ /g" | cut -b 47-80`; do /usr/bin/rrdtool dump $BASE/$i.rrd > $BASE/$i.xml /bin/rm $BASE/$i.rrd /usr/bin/rrdtool restore -r -f $BASE/$i.xml $BASE/$i.rrd done exit 0