vote up 1 vote down star

How can I quickly create a large file on a Linux (RHEL) system? dd will do the job, but reading from /dev/zeo and writing to the drive can take a long time when you need a file several hundreds of GB in size for testing... if you need to do that repeatedly the time really adds up.

I don't care about the contents of the file, I just want it to be created quickly. How can this be done?

edit: Using a sparse file won't work this, I need the file to be allocated disk space.

flag

6 Answers

vote up 3 vote down check

Try mkfile <size> myfile as an alternative of dd

# mkfile 10240m 10Gigfile

with the -n option the size is noted, but disk blocks aren't allocated until data is written to them.

link|flag
Where is this mkfile of which you speak, stranger? It's not in the default RHEL install. – paxdiablo Nov 3 '08 at 3:33
It's a solaris utility. if you search for gpl mkfile you will find some source code examples. – mgb Nov 3 '08 at 4:54
Hmm. The OP wanted to know about Linux. I also see that OSX has mkfile, but I couldn't find one for Linux (except for xfs). Funny that this answer got accepted as correct. – Martin v. Löwis Nov 3 '08 at 5:40
vote up 2 vote down

I don't think you're going to get much faster than dd. The bottleneck is the disk; writing hundreds of GB of data to it is going to take a long time no matter how you do it.

But here's a possibility that might work for your application. If you don't care about the contents of the file, how about creating a "virtual" file whose contents are the dynamic output of a program? Instead of open()ing the file, use popen() to open a pipe to an external program. The external program generates data whenever it's needed. Once the pipe is open, it acts just like a regular file in that the program that opened the pipe can fseek(), rewind(), etc. You'll need to use pclose() instead of close() when you're done with the pipe.

If your application needs the file to be a certain size, it will be up to the external program to keep track of where in the "file" it is and send an eof when the "end" has been reached.

link|flag
vote up 2 vote down

Where seek is the size of the file you want in bytes - 1.

dd if=/dev/zero of=filename bs=1 count=1 seek=1048575

link|flag
I like this approach, but the commenter doesn't want a sparse file for some reason. :( – ephemient Nov 3 '08 at 15:19
vote up 1 vote down

One approach: if you can guarantee unrelated applications won't use the files in a conflicting manner, just create a pool of files of varying sizes in a specific directory, then create links to them when needed.

For example, have a pool of files called:

  • /home/bigfiles/512M-A
  • /home/bigfiles/512M-B
  • /home/bigfiles/1024M-A
  • /home/bigfiles/1024M-B

Then, if you have an application that needs a 1G file called /home/oracle/logfile, execute a "ln /home/bigfiles/1024M-A /home/oracle/logfile".

If it's on a separate filesystem, you will have to use a symbolic link.

The A/B/etc files can be used to ensure there's no conflicting use between unrelated applications.

The link operation is about as fast as you can get.

link|flag
good solution IF you have the disk space ready. – hayalci Nov 3 '08 at 3:38
You can have a small pool or a large pool, it's your choice. You were going to need at least one file anyway, since that's what the questioner asked for. If your pool consists of one file, you lose nothing. If you have bucketloads of disk (and you should, given its low price), there's no issue. – paxdiablo Nov 3 '08 at 3:50
vote up 0 vote down

Wasn't that already answered in How to create a file with a given size in Linux?

link|flag
vote up 0 vote down

Ext4 has much better file allocation performance, since whole blocks of up to 100MB can be allocated at once.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.