On Fri, Sep 22, 2023 at 09:40:40PM -0600, Jonathan Drews wrote: > On Fri, Sep 22, 2023 at 03:11:07PM -0300, vitmau...@gmail.com wrote: > > Hi, > > > > I used the command "cd /SRC && dump 0f - . | (cd /DST && restore -rf - )" > > as suggested by the "Disk Setup" section of the FAQ to transfer everything > > from one of my old hard disks to the one that should replace it. However, > > I'm stuck with something around 35 megabytes/s of speed transfer (measured > > using "systat -h io") following this path. If I use rsync, I get something > > around 70 megabytes/s (measured by both the "--progress" option and > > I have a question and a comment. When I use > # systat -h iostat > > I get the following display: > DEVICE READ WRITE RTPS WTPS SEC > sd0 39M 819 6803 0 1.0 > sd1 0 40M 0 641 0.3 > Totals 39M 40M 6803 641 1.2 > > What does RTPS and WTPS mean? >
the description of iostat says: iostat Display statistics about disk throughput. Statistics on disk throughput show, for each drive, data transferred in bytes, number of disk transactions performed, and time spent in disk accesses (in fractions of a second). so i'm going to hazard a guess that it's (r/w) transactions per second. jmc