Hello Patrick,

How would I track the 5 minutes of data transfer with bash?

The only reliable way on unix to ensure all data has been written to the disk is to umount it. The "sync" (API call or program) is merely a hint to flush filesystem buffers at the point where the call was made, but one second later, while the sync is still running, new dirty buffers might be generated. So you should use something along the following:

time ( mount /dev/xxx /mnt/yyy ; cp -a /whatever /mnt/yyy ; umount /mnt/yyy )

--
---> Dirk Jagdmann
----> http://cubic.org/~doj
-----> http://llg.cubic.org
_______________________________________________
Linux-audio-dev mailing list
Linux-audio-dev@lists.linuxaudio.org
http://lists.linuxaudio.org/mailman/listinfo.cgi/linux-audio-dev

Reply via email to