search for: bdir

Displaying 15 results from an estimated 15 matches for "bdir".

Did you mean: dbdir
2005 Jul 23
2
link_stat
...> rsync error: errors selecting input/output files, dirs (code 3) at > main.c(412) > rsync: connection unexpectedly closed (8 bytes received so far) > [sender] > rsync error: error in rsync protocol data stream (code 12) at io.c > (434) my script; > #!/bin/sh > > bDir="/work/data" > rSvr="my.remote.domain" > rDir="/ftproot/" > attr="-auzv -e ssh --delete --exclude=\".*\" --exclude=\"~*\"" > > case `date +%a` in > Mon) > tDay="sunday" > yDay="saturday&quot...
2006 Apr 15
2
include and exclude file
hi i try to include and exclude file when i do a rsync #!/bin/sh # directory to backup BDIR=/home/collinm/test/home # includes file - this contains a wildcard pattern per line of files to exclude INCLUDE=include.txt # excludes file - this contains a wildcard pattern per line of files to exclude EXCLUDE=exclude.txt OPTS="-a -r -v -p -t --delete-before --exclude-from=$EXCLUDE --incl...
2007 Sep 26
4
Rsync and opened files
...emental backups... in my tests seem to always have worked backing up from a debian server to the copy server that runs debian too... I'm using the next : OPTS="--force --ignore-errors --delete --backup --backup-dir=/home/ramattack/pruebas-rsync/$BACKUPDIRMES/$dia -avz" rsync $OPTS $BDIR /home/ramattack/pruebas-rsync/$BACKUPDIRMES/imagen-copia BDIR is source I want to backup and /home/ramattack/pruebas-rsync....... is the destination... could this copy correctly opened files? Normally I will use it for backing up linux machines normally... and the backup server will be of course...
2009 Apr 09
3
Help creating incremental backups using --backup-dir.
...when the script runs the directory with the name of the current week day is created but everything just goes into current. and stays there. Can someone post an example that does work for what I'm trying to do? Below is the script I'm using. #------------------- # directory to backup BDIR=$HOME/Documents BACKUPDIR=`date +%A` OPTS=" -aX --force --progress --ignore-errors --delete --backup -- backup-dir=/$BACKUPDIR" # the following line clears the last weeks incremental directory [ -d $HOME/emptydir ] || mkdir $HOME/emptydir /usr/local/bin/rsync3.0.5 --delete -a $HOME/emp...
2006 May 20
1
problem to backup some folder - folder empy
hi my script to backup my home folder BDIR=/home/$USER EXCLUDE=exclude.txt OPTS="-a -r -v -p -t --del --exclude-from=$EXCLUDE --progress" BACKUPDIR=/media/dvdrecorder rsync $OPTS $BDIR $BACKUPDIR my exclude file + .kde/ + .kde/share/ + .kde/share/apps/ + .kde/share/apps/kmail/*** + .kde/share/apps/kwallet/*** + .kde/share/apps/ko...
2009 Mar 24
3
DO NOT REPLY [Bug 6209] New: rsync exiting suddenly
https://bugzilla.samba.org/show_bug.cgi?id=6209 Summary: rsync exiting suddenly Product: rsync Version: 3.0.5 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: mathieu.coavoux@aktor.fr QAContact:
2010 Feb 21
2
some file are not there
...d i had an old script... but i lost it... i tried to create a new one, without success include.txt + .kde/ + .kde/share/ + .kde/share/apps/ + .kde/share/apps/kmail/*** + .kde/share/apps/kwallet/*** - .** exclude.txt rpm/ mp3/ Download/ .* my backup script: #!/bin/sh # directory to backup BDIR=/home/$USER #destination DEST=/dev/sr0 # excludes file EXCLUDES=/home/$USER/bin/exclude.txt #include file INCLUDES=/home/$USER/bin/include.txt #rsync -a -r -v --delete --exclude-from=exclude.txt /home/test /tmp/ rsync -a -r -v --delete --prune-empty-dirs --exclude-from=$EXCLUDES --include- fr...
2004 Sep 23
1
rsync script from homepage: trouble
...d point me the right way? As I said: I'm new to rsync and have little experience with shell scripting ... Thanks, Joh Script: #!/bin/sh # This script does personal backups to a rsync backup server. You will # end up with a 7 day rotating incremental backup. The incrementals # will go into subdirectories named after the day of the week, and the # current full backup goes into a directory called "current" # tridge@linuxcare.com # directory to backup BDIR=/home # excludes file - this contains a wildcard pattern per line of files to # exclude. # Your excludes files tells rsync what...
2003 Mar 20
1
bind blocking rsync
Hi Guys, Here is the setup. LVS NAT cluster with director (dir), backup director (bdir), and two realservers (rs1 and rs2) running apache webserver. SSH DSA key-based authentication set up between rs1 and rs2 in order to facilitate automated (via cron) mirorring of htdocs directories. All works fine untill I decide to host DNS on the same cluster. As soon as I start BIND on rs1, ssh...
2003 Apr 09
0
rsync incremental backup problem with --backup-dir switch
...examples I could find in order to find a solution, but I could not find any. Either I am missing something here, the example on the website is incorrect or some bug has gotten into rsync. Here is the script I am using, with some irrelevant pieces/comments stripped: ---- cd / # directory to backup BDIR=/ # Override the user USER=rtr-heijen # excludes file (Works well) EXCLUDES=/etc/rsync-exclude # the name of the backup machine BSERVER=192.168.1.7 # your password on the backup server export RSYNC_PASSWORD=SomePassword BACKUPDIR=`date +%A` # Results in 'Monday', 'Tuesday', etc. # M...
2020 Sep 29
1
Back-up differences. Raspberry Pi and Fedora
...ode in the .sh module for all three computers is the name of the share(Linux1 for the Fedora Computer) and the home directory. #~ #!/bin/sh # This script does personal backups to a rsync backup server. You will end up # with a 7 day rotating incremental backup. The incrementals will go # into subdirectories named after the day of the week, and the current # full backup goes into a directory called "current" # tridge at linuxcare.com HOME=/home/XXX # directory to backup BDIR=/ # excludes file - this contains a wildcard pattern per line of files to exclude EXCLUDES=$HOME/Documents/...
2003 Dec 05
0
[Linux-ME] daily backup (incremental backup ) - SOLVED
...) > > BSERVER=/home/bipin/ > > > > #sub-directory date wise for everyday's > incremental > > backup??? > > BACKUPDIR=`date +%Y%m%d` > > > > OPTS="--backup --backup-dir=/home/bipin/$BACKUPDIR > > -a" > > > > rsync $OPTS $BDIR $BSERVER/current > > > > above command creates directory current but > doesnot > > create any sub-directory backup-dir (date wise > where > > only latest updated or newly created files get > > backedup). Can I get some guidance. > > > > Thanking...
2003 Nov 19
1
daily back (incremental backup )
...# # for backup purpose #directory on which backup back to be taken(destination) BSERVER=/home/bipin/ #sub-directory date wise for everyday's incremental backup??? BACKUPDIR=`date +%Y%m%d` OPTS="--backup --backup-dir=/home/bipin/$BACKUPDIR -a" rsync $OPTS $BDIR $BSERVER/current above command creates directory current but doesnot create any sub-directory backup-dir (date wise where only latest updated or newly created files get backedup). Can I get some guidance. Thanking you in advance. Bipin __________________________________ Do you Yahoo!? Prot...
2013 Sep 27
2
Error: C stack usage is too close to the limit when using list.files()
R-helpers: I'm running a file search on my entire drive (Mac OS X) using: files_found <- list.files(dir="/",pattern=somepattern,recursive=TRUE,full.names=TRUE) where somepattern is a search pattern (which I have confirmed via a unix "find / -name somepattern" only returns ~ 3 results). I keep getting an error: Error: C stack usage is too close to the limit when
2007 Jan 01
5
File configuration difficulty
Hi, I''ve been using puppet to manage a small Linux network fairly successfully for a while now - thanks. I''ve hit a spot of bother in managing some files, though. There are a number of folders in /usr/local that I want to manage efficiently using puppet - for example /usr/local/share/templates. I want to copy the contents of a number of source folders on the puppet fileserver