Linux/Sparse files: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „== check == <pre> du -h </pre> Category:Linux/System Category:Linux“)
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== check ==
== check ==
<pre>
<pre>
du -h
du -h *
du -h --apparent-size *
</pre>
</pre>


== Make existing files sparse ==
<pre>
fallocate -d file
</pre>
== Copy sparse file ==
<pre>
cp --sparse=always inputfile outputfile
</pre>
== Tar sparse file ==
<pre>
-S / --sparse
tar -Scf file.tar inputfile
</pre>
== Links ==
* https://wiki.archlinux.org/index.php/Sparse_file




[[Category:Linux/System]]
[[Category:Linux/System]]
[[Category:Linux]]
[[Category:Linux]]

Latest revision as of 11:50, 22 October 2019

check

du -h *
du -h --apparent-size *


Make existing files sparse

fallocate -d file


Copy sparse file

cp --sparse=always inputfile outputfile


Tar sparse file

-S / --sparse
tar -Scf file.tar inputfile

Links