2015'i Düzenle
util-linux 2.25'ten itibaren, fallocate
Linux'taki yardımcı program bunun için bir -d
/ --dig-hole
seçeneğe sahiptir.
fallocate -d the-file
Dosyadaki sıfırlarla dolu her blok için bir delik kazardım
Eski sistemlerde, el ile yapabilirsiniz:
Linux'un bunu yapabilmesi FALLOC_FL_PUNCH_HOLE
için bir seçeneği var fallocate
. Bir örnek ile github'da bir script buldum:
Python'dan FALLOC_FL_PUNCH_HOLE kullanarak
İstediğiniz şeyi yapmak için biraz değişiklik yaptım - sıfırlarla dolu dosyaların bölgelerine delik açın. İşte burada:
Dosyalarda delik açmak için Python'dan FALLOC_FL_PUNCH_HOLE kullanımı
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
Örnek:
# 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
Sadece 4096 baytlık blokları dışarı çıkartacağını unutmayın , bu nedenle bir dosyayı başlattığınız zamanki kadar seyrek yapamayabilir. Elbette daha akıllı hale getirilebilir. Ayrıca, sadece hafifçe test edilmiştir , bu yüzden güvenmeden önce dikkatli olun ve yedekleyin !