Displaying 4 results from an estimated 4 matches for "source_directory".
2005 Feb 17
4
Incremental Backups
I read the following hint at:
http://www.mikerubel.org/computers/rsync_snapshots/#Incremental
mv backup.0 backup.1
rsync -a --delete --link-dest=../backup.1 source_directory/ backup.0/
I simply want to maintain a dated backup of a server so that I could
always go back to a certain date. I would like to keep this structure
for each day for the last seven days, then one weekly snapshot for each
week in the month and then each month I would like to have as well.
I...
2003 Oct 31
1
rsync and smbfs
...configure rsync snapshots as described at
http://www.mikerubel.org/computers/rsync_snapshots/. I'm
essentially using the following commands:
mv backup.3 backup.tmp
mv backup.2 backup.3
mv backup.1 backup.2
mv backup.0 backup.1
mv backup.tmp backup.0
cp -al backup.1 backup.0
rsync -a --delete source_directory/ backup.0/
I'm trying to backup two directories in a Windows 2000 share onto a RH9 linux
computer. The problem I appear to be having is rsync copying file that
already exist and haven't changed since the previous rsync backup process.
Why would rsync believe the file has changed? Th...
2001 Jan 22
0
vorbiscomment gui ideas
...f
you're inclined and let's hash out some UI designs here.
Jon Shiring
<?xml version="1.0"?>
<GTK-Interface>
<project>
<name>Vorbiscomment</name>
<program_name>vorbiscomment</program_name>
<directory></directory>
<source_directory>src</source_directory>
<pixmaps_directory>pixmaps</pixmaps_directory>
<language>C</language>
<gnome_support>True</gnome_support>
<gettext_support>True</gettext_support>
</project>
<widget>
<class>GtkWindow</cla...
2000 May 10
3
Trying to build OpenSSH-2.1.0 on HP-UX 10.20
.../local/openssh/bin
rm: /usr/local/openssh/bin/ directory
cp: illegal option -- d
Usage: cp [-f|-i] [-p] [-S] [-e warn|force|ignore] source_file target_file
cp [-f|-i] [-p] [-S] [-e warn|force|ignore] source_file ... target_directory
cp [-f|-i] [-p] [-S] -R|-r [-e warn|force|ignore] source_directory ... target_directory
...
- The INSTALL document (and probably others) have not yet fully integrated
ssh2 support.
- First tests:
openssh client -> ssh-1.2.27 server: works
openssh client -> openssh-server [Proto 1]: works, but without X-forwarding
even though confi...