artemeciagreen Posted November 27, 2016 Report Share Posted November 27, 2016 Is it a good or bad idea to take a syste, backup by running: tar cpJfv funtooLinux.tar.xz / rather than making an iso image of the partition/disk. Does it matter? AdiosKid 1 Link to comment Share on other sites More sharing options...
AdiosKid Posted November 28, 2016 Report Share Posted November 28, 2016 you can use that of course is as the Stage 3 is compress don't have any problem but you can use a personal script, I use that more faster but more size on disk : tar -cvpf /stage4.tar.xz --directory=/ --exclude=/stage4.tar.xz --exclude=/dev/* --exclude=/lost+found --exclude=/mnt/* --exclude=/proc/* --exclude=/run/* --exclude=/sys/* --exclude=/tmp/* --exclude=/var/log/* --exclude=/var/run/* --exclude=/var/tmp/* / or that more slow(very slow) but less than half of the other option : tar -cpvf - --directory=/ --exclude=/stage4.tar.xz --exclude=/dev/* --exclude=/lost+found --exclude=/mnt/* --exclude=/proc/* --exclude=/run/* --exclude=/sys/* --exclude=/tmp/* --exclude=/var/log/* --exclude=/var/run/* --exclude=/var/tmp/* . | xz -9e -c - > /stage4.tar.xz of course you can change the exclude folders and files as you wish. coosee, artemeciagreen and AdiosKid 3 Link to comment Share on other sites More sharing options...
artemeciagreen Posted December 3, 2016 Author Report Share Posted December 3, 2016 Intersting, thanks. Link to comment Share on other sites More sharing options...
Recommended Posts