2015 को संपादित करें
के रूप में util-linux 2.25, fallocate
लिनक्स पर उपयोगिता एक है -d
/ --dig-hole
उस के लिए विकल्प।
fallocate -d the-file
फ़ाइल में शून्य से भरे हर ब्लॉक के लिए एक छेद खोदेंगे
पुराने सिस्टम पर, आप इसे हाथ से कर सकते हैं:
लिनक्स के पास ऐसा FALLOC_FL_PUNCH_HOLE
करने का विकल्प है fallocate
। मुझे एक उदाहरण के साथ जीथब पर एक स्क्रिप्ट मिली:
पायथन से FALLOC_FL_PUNCH_HOLE का उपयोग करना
मैंने इसे करने के लिए थोड़ा संशोधित किया जो आपने पूछा - शून्य के साथ भरी हुई फ़ाइलों के क्षेत्रों में छिद्र छेद। यह रहा:
फ़ाइलों में छिद्र छेद से FALLOC_FL_PUNCH_HOLE का उपयोग करना
usage: punch.py [-h] [-v VERBOSE] FILE [FILE ...]
Punch out the empty areas in a file, making it sparse
positional arguments:
FILE file(s) to modify in-place
optional arguments:
-h, --help show this help message and exit
-v VERBOSE, --verbose VERBOSE
be verbose
उदाहरण:
# create a file with some data, a hole, and some more data
$ dd if=/dev/urandom of=test1 bs=4096 count=1 seek=0
$ dd if=/dev/urandom of=test1 bs=4096 count=1 seek=2
# see that it has holes
$ du --block-size=1 --apparent-size test1
12288 test1
$ du --block-size=1 test1
8192 test1
# copy it, ignoring the hole
$ cat test1 > test2
$ du --block-size=1 --apparent-size test2
12288 test2
$ du --block-size=1 test2
12288 test2
# punch holes again
$ ./punch.py test2
$ du --block-size=1 --apparent-size test2
12288 test2
$ du --block-size=1 test2
8192 test2
# verify
$ cmp test1 test2 && echo "files are the same"
files are the same
ध्यान दें कि punch.py
केवल 4096 बाइट्स के ब्लॉक को पंच करने के लिए पाया जाता है, इसलिए हो सकता है कि यह फ़ाइल तब तक विरल न हो जैसा कि आपने शुरू किया था। यह होशियार बनाया जा सकता है, ज़ाहिर है। इसके अलावा, यह केवल हल्के ढंग से परीक्षण किया गया है , इसलिए सावधान रहें और इस पर भरोसा करने से पहले बैकअप बनाएं !