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.
Backups and Mirrors
Primary tabs
Backing up your repository
- Shut down svnserve, Apache, and anything else that might be accessing the repository:
svc -d /service/apache
- Dump a backup of the repository:
- Uncompressed:
svnadmin dump /var/svn/repo_name > dumpfile.txt
- Compressed:
svnadmin dump /var/svn/repo_name | gzip -9 > dumpfile.gz
- Compressed, with a datestamp:
svnadmin dump /var/svn/repo_name | gzip -9 > `date "+dumpfile_%Y-%m-%d_%H:%M:%S.gz"`
- Uncompressed:
- Load a database dump:
- Uncompressed:
svnadmin load /var/svn/repo_name < dumpfile.txt
- Compress:
gunzip -c dumpfile.gz | svnadmin load /var/svn/repo_name
- Uncompressed:
Mirroring a Repository
How to Mirror a Subversion Repository
svnadmin hotcopy path_to_repos path_to_mirror
Resources
- Log in to post comments