On 10/26 02:50 , Philip Mötteli wrote: > I tried, but it doesn't work and I have no hint, where the problem is: > > # BackupPC_tarCreate -h localhost -n 1 -s /etc/apache2 -t > usage: /usr/local/bin/BackupPC_tarCreate [options] files/directories...
here's a couple of examples out of my history: /usr/share/backuppc/bin/BackupPC_tarCreate -h localhost -n -1 -s /etc -t / this one will extract the last backup (-n -1) of the /etc share (-s /etc) on the localhost machine (-h localhost) print a summary (-t) and we're taking all the files from that share (/). it will give you a stream of raw tarfile to STDOUT; so you might want to capture it with dd, like so: /usr/share/backuppc/bin/BackupPC_tarCreate -h localhost -n -1 -s /etc -t /|dd of=etc.tar for more help, do a 'BackupPC_tarCreate --help' to get usage information. -- Carl Soderstrom Systems Administrator Real-Time Enterprises www.real-time.com ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ BackupPC-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/backuppc-users http://backuppc.sourceforge.net/
