Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-28 Thread jens . oehlschlaegel
-project.org, r-sig-...@r-project.org Betreff: Re: [R-sig-hpc] Quickest way to make a large empty file on disk? Folks: Asked this question some time ago, and found what appeared (at first) to be the best solution, but I'm now finding a new problem. First off, it seemed like ff as Jens

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-28 Thread Jonathan Greenberg
...@illinois.edu j...@illinois.edu *An:* r-help r-help@r-project.org r-help@r-project.org, r-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty file (e.g. filled with all zeroes

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-28 Thread Rui Barradas
-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty file (e.g. filled with all zeroes) on disk, given a byte size and a given number number of empty values. I know I can use writeBin

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-28 Thread Simon Urbanek
Uhr *Von:* Jonathan Greenberg j...@illinois.edu j...@illinois.edu *An:* r-help r-help@r-project.org r-help@r-project.org, r-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-27 Thread Jonathan Greenberg
gc() *Gesendet:* Donnerstag, 03. Mai 2012 um 00:23 Uhr *Von:* Jonathan Greenberg j...@illinois.edu *An:* r-help r-help@r-project.org, r-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-09-27 Thread Rui Barradas
...@illinois.edu *An:* r-help r-help@r-project.org, r-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty file (e.g. filled with all zeroes) on disk, given a byte size and a given

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-03 Thread Jens Oehlschlägel
-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty file (e.g. filled with all zeroes) on disk, given a byte size and a given number number of empty values. I know I can use writeBin, but the object

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-03 Thread Jonathan Greenberg
() *Gesendet:* Donnerstag, 03. Mai 2012 um 00:23 Uhr *Von:* Jonathan Greenberg j...@illinois.edu *An:* r-help r-help@r-project.org, r-sig-...@r-project.org *Betreff:* [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way to make a large empty file

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-02 Thread Jeff Ryan
Look at the man page for dd (assuming you are on *nix) A quick google will get you a command to try. I'm not at my desk or I would as well. Jeff Jeffrey Ryan|Founder|jeffrey.r...@lemnica.com www.lemnica.com On May 2, 2012, at 5:23 PM, Jonathan Greenberg j...@illinois.edu

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-02 Thread Jeff Ryan
Something like: http://markus.revti.com/2007/06/creating-empty-file-with-specified-size/ Is one way I know of. Jeff Jeffrey Ryan|Founder|jeffrey.r...@lemnica.com www.lemnica.com On May 2, 2012, at 5:23 PM, Jonathan Greenberg j...@illinois.edu wrote: R-helpers: What

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-02 Thread Simon Urbanek
On May 2, 2012, at 6:23 PM, Jonathan Greenberg wrote: R-helpers: What would be the absolute fastest way to make a large empty file (e.g. filled with all zeroes) on disk, given a byte size and a given number number of empty values. I know I can use writeBin, but the object in this case

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-02 Thread Jeff Newmiller
On most UNIX systems this will leave a large unallocated virtual hole in the file. If you are not bothered by spreading the allocation task out over the program execution interval, this won't matter and will probably give the best performance. However, if you wanted to benchmark your

Re: [R] [R-sig-hpc] Quickest way to make a large empty file on disk?

2012-05-02 Thread Denham Robert
-sig-hpc-boun...@r-project.org [mailto:r-sig-hpc-boun...@r-project.org] On Behalf Of Jonathan Greenberg Sent: Thursday, 3 May 2012 8:24 AM To: r-help; r-sig-...@r-project.org Subject: [R-sig-hpc] Quickest way to make a large empty file on disk? R-helpers: What would be the absolute fastest way