Changes

Jump to navigation Jump to search
459 bytes added ,  17:27, 24 May 2017
no edit summary
Line 28: Line 28:  
to tar do:
 
to tar do:
 
<pre>
 
<pre>
tar -cvzf backup.tgz /home/
+
tar -cvf backup.tar /home/
 
</pre>
 
</pre>
 
To boost the tar on cron jobs remove the "-v" Switch
 
To boost the tar on cron jobs remove the "-v" Switch
 +
 +
on Single Core Server compress with TAR
 +
<pre>
 +
tar -cvf backup.tar /home/
 +
</pre>
 +
 +
==== pigz ===
 +
on Multi CPU Servers you can compress TAR-Files with PIGZ it offers Multi Core Usage against of TAR builtin compressor<br>
 +
This saves Time, Energy and Space!
 +
enter:
 +
<pre>
 +
tar -cf - /home | pigz -9 > backup.tgz #collect home to TAR Archiv then compress it with all CPU's you have on Compress Level 9 (High)
 +
<pre>
 +
At the htop Process Viewer you can view the usage!
 +
     

Navigation menu