Nicely Create a symlink preserving, gzipped tarball archive (*.tar.gz)
tar czhf output_archive.tar.gz /folder/to/backup
Here, c
indicates that we want to create an archive, z
says use gzip as well, h
'defreferences' symlinks (preserving them), f
indicates that we're going to specify the output destination next.
No Comments Yet!