Ulrich Spoerlein wrote: > What kind of C program or script did you have in mind? My C-foo is very > weak ... If you have python installed, this is a simple way: ---- print "writing" f = file("a_file", "w") for x in xrange(1024): # write 1024 MB f.write(' '*1024*1024) f.close() raw_input("press enter to rewrite") print "rewriting" f = file("a_file", "r+") for x in xrange(1024): # write 1024 MB again f.write(' '*1024*1024) f.close() ---- save it to a file, run the file with python interpreter. If you don't observe the weird read-before-write effect, then it's not a problem in FreeBSD / NFS.
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:07 UTC