Published in: Bash
This command will allow you to make a tar ball with gzip compression: -c = Create -v = Verbosely list files processed -z = Filter the archive through gzip -p = Preserve Permissions ( extract all protection information) -f = Use archive file or device F
tar -pvczf BackUpDirectory.tar.gz /path/to/directory
You need to login to post a comment.
