Isilon: How to create test files using the dd command
Summary: This documents how to create test files using the "dd" Direct Disk utility.
This article applies to
This article does not apply to
This article is not tied to any specific product.
Not all product versions are identified in this article.
Instructions
Introduction
How to quickly create test files of a specific size using the UNIX "direct disk" utility, the "dd" command. For more information about the dd Command and its options, run the following command from the command line to view its manual:
man dd
Procedure
- Open an SSH connection on any node in the cluster and log in using the "root" account.
- Create a 100MB zero-padded file by running the following command. This is useful to create large files whose contents are not important.
dd if=/dev/zero of=zero-padded.bin bs=1024 count=102400
- Create a 100MB file of random data by running the following command. This is useful for creating multiple files whose data differs (for example, when testing utilities that examine the differences in files):
dd if=/dev/urandom of=random-data.bin bs=104857600 count=1
- Create a 100MB sparse file that takes up no space on disk by running the following command. This is useful for resizing binary image files without overwriting them.
dd if=/dev/zero of=sparse-file.bin bs=1 count=0 seek=104857600
Then verify the real and apparent size of the sparse file.
- Verify the real size of the sparse file by running the following command:
du -A sparse-file.bin
Output similar to the following is displayed, indicating that the file uses 0MB of space on the disk:
0 sparse-file.bin - Verify the apparent size of the sparse file by running the following command:
ls -lh sparse-file.bin
Output similar to the following is displayed, indicating that the file appears to consume 100MB of space on the disk:-rw------- 1 root wheel 100M Jul 1 20:35 sparse-file.bin
- Verify the real size of the sparse file by running the following command:
Additional Information
Requisite tools or skills
The procedures in this article require a familiarity with the OneFS operating system and UNIX commands and be comfortable running commands from the command-line interface.
Affected Products
IsilonArticle Properties
Article Number: 000022920
Article Type: How To
Last Modified: 02 Jul 2025
Version: 4
Find answers to your questions from other Dell users
Support Services
Check if your device is covered by Support Services.