artemeciagreen 2 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 post Share on other sites
AdiosKid 71 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. artemeciagreen, AdiosKid and coosee 3 Link to post Share on other sites
artemeciagreen 2 Posted December 3, 2016 Author Report Share Posted December 3, 2016 Intersting, thanks. Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now