White Papers

Table Of Contents
Dell HPC NFS Storage Solution - High Availability Configurations
Page 57
C.4. dd
dd is a Linux utility provided by the coreutils rpm distributed with RHEL 5.5. It is used to copy a file.
The file system was mounted at /mnt/xfs on the client.
To write data to the storage, the following command line was used.
# dd if=/dev/zero of=/mnt/xfs/file bs=1M count=90000
To read data from the storage, the following command line was used.
# dd if=/mnt/xfs /file of=/dev/null bs=1M