SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Using tar
Archive a set of files:
tar -cvf tarfile.tar /var/log/syslog /var/log/messages
Archive and compress (gzip) a set of files:
tar -cvzf file.tar.gz /var/log/syslog /var/log/messages
Archive and compress (bzip2) a set of files:
tar -cvjf file.tar.bz2 /var/log/syslog /var/log/messages
Extract a tar file:
tar -xvf file.tar
tar -xvzf file.tar.gz
tar -xvjf file.tar.bz2
Display the content of a tar file:
tar -tvf file.tar
tar -tvzf file.tar.gz
tar -tvjf file.tar.bz2
Replace a file in an existing tar file:
tar -rvf tarfile.tar filetoreplace
Technology:
- Log in to post comments