Tagged Questions
7
votes
4answers
251 views
How to make file sparse?
If I have a big file containing many zeros, how can i efficiently make it a sparse file?
Is the only possibility to read the whole file (including all zeroes, which may patrially be stored sparse) ...
6
votes
7answers
907 views
How does one reclaim zeroed blocks of a sparse file?
Consider a sparse file with 1s written to a portion of the file.
I want to reclaim the actual space on disk for these 1s as I no longer need that portion of the sparse file. The portion of the file ...
3
votes
3answers
487 views
Remote linux server to remote linux server large sparse files copy - How To?
I have two twins CentOS 5.4 servers with VMware Server installed on each.
What is the most reliable and fast method for copying virtual machines files from one server to the other, assuming that I ...
3
votes
2answers
492 views
Using Sparse to check C code
Does anyone have experience with Sparse? I seem unable to find any documentation, so the warnings and errors it produces are unclear to me. I tried checking the mailing list and man page but there ...
0
votes
2answers
246 views
How to check if the block is present in a sparse file (for simple copy-on-write)?
How to get sparse block size and check if data is present at the given offset in sparse file in reiserfs/ext3 in Linux?
I want to use it to implement simple copy-on-write block device using FUSE.
Or ...