bigpup wrote: Fri May 07, 2021 11:47 pm
DriveSpeed-v4-fixed.tar.gz
Are you sure the clr buffers is working?
After I make a test file, clr buffers, and try to read.
It seems to me it is reading what is in the buffers.
Maybe you are running it as standalone ?, clear buffers depends on the DATA/clear_cache script from Mike's setup, so you need to run 'DriveSpeed' from "DriveSpeed_v4-portable" folder.
@mikewalsh
One more thing and then I stop my obsessive behaviour with this
To stop the test I had a bit of a struggle to make it kill exclusively the dd command ran by the program (e.g. "killall dd" will kill all existing dd processes, so not an option).
func_stop improved: (how it was it could kill any command running at the same time with "/testfile" in it, small chance, I know, but still...):
Code: Select all
func_stop () {
# kill -SIGINT "$(ps -eo pid,cmd | grep '/testfile' | grep -v grep | awk '{ print $1 }')"
# kill dd pid (read or write)
kill -SIGINT "$(ps -eo pid,cmd | grep 'dd if=/dev/zero of=.*/testfile\|dd if=.*/testfile of=/dev/null' | grep -v grep | awk '{ print $1 }')"
}; export -f func_stop
One small point; I notice you now can't drag the bottom of the window down to 'expose' more of the progress display; was this intentional, or a 'side-effect' of summat else?
Mmm.. works ok for me, maybe behavior is a bit different because I've set width and height, needed for displaying properly when using yad gtk3.
Fred