6

I am copying huge file from NFS mount using dd:

dd if=/mnt/nfs/image.img of=/dev/sda

I need to limit the speed of reading from NFS. How can I achieve it? The only precondition is to use some easy compilable utility in order to put into my custom ram-only live linux distro.

Pablo
  • 245

1 Answers1

6

You could use pv:

</mnt/nfs/image.img pv -L 5m >/dev/sda

The -L flag limits the throughput to 5 megabytes per second. pv also writes to the stdout so you have to redirect to the target with >.

chaos
  • 48,171
  • @Gilles Sure, thanks for the edit. =) Sometimes I think around too many corners, without seeing the obvious.. – chaos Aug 26 '15 at 05:29