Displaying 15 results from an estimated 15 matches for "rsync_options".
2003 Feb 27
1
Problems with rsync -e ssh
I'm doing the following from a linux box to a solaris box:
rsync_options="-aPvrz --progress --stats --delete --delete-after"
rsync $rsync_options -e ssh root@207.156.7.100:/usr2/docs/ /export/export/www/current/www
rsync $rsync_options -e ssh root@207.156.7.100:/usr2/was/ /export/export/www/current/www
rsync $rsync_options -e ssh root@207.156.7.100:/usr2/soe/...
2008 Apr 04
2
scripting rsync ssh port issue
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 3088 bytes
Desc: not available
Url : http://lists.samba.org/archive/rsync/attachments/20080404/a87f68ba/attachment.gif
2003 Oct 22
1
Feature Request - Recursive Rsync Parameter - Example Script
...g is order dependent."
exit 1
fi
# Some debugging help, fifth parm will echo args
if [ -n "$5" -a "$5" = "args" ]
then
for arg in "$@"
do
echo "Arg #$index = $arg"
done
fi
# Assign parameters to some variables.
r_level=$1
rsync_options=$2
source_path_parm=$3
dest_path_parm=$4
rsync_no_r_options=`echo $rsync_options | sed -e "s/r//" | sed -e "s/a/lptgoD/"`
# Let's support the rsync test mode.
test_run=`echo $rsync_options | grep n`
# We need to decide if the source is a remote host
# Parse out the <s...
2004 Mar 24
1
rsync --files-from with symlink in path
Here is what I have been doing with rsync(This is condinced version of
the main script that runs):
#!/usr/local/bin/bash
SSH=/usr/local/bin/ssh
RSYNC=/usr/local/bin/rsync
SED=/usr/bin/sed
USER=vmladmin
ROLLLISTDIR=/home/vmladmin/rolllists/
ROLLFILE=${ROLLLISTDIR}rollfile.${CELERITYID}
EXCLUDEFILE=${ROLLLISTDIR}rollfile.exclude
RSYNC_OPT="-zrc --delete"
2007 Jul 06
1
quiet option doesnt seem to work
Guys im running Rsync 2.6.8 on Solaris. I use the following options :-
RSYNC_BIN="/usr/local/bin/rsync"
RSYNC_OPTS=" -PaRz --quiet --stats --delete --delete-excluded
--copy-unsafe-links --numeric-ids"
RSYNC="${RSYNC_BIN} ${RSYNC_OPTS}"
Its part of a script see.
Now everything works but in my log file im getting each file which is
transferred listed and i didnt want
2011 Sep 12
2
Ignoring /boot
Hi,
I have the following script that I'm writing to backup my gentoo linux
system.
----- start of script -----
#!/bin/sh
#
#
RSYNC_OPTS="--archive --one-file-system --perms --executability --progress
--stats --delete-after --hard-links --keep-dirlinks --verbose --inplace"
RSYNC_USER="bs"
RSYNC_SERVER="192.168.6.6"
RSYNC_MODULE="ben-desktop"
2018 Aug 07
3
Best practices for backing up small mailserver to remote location
My webserver also houses our mailserver. There's about six users on that
mail system and I'm thinking it would be good to back up the mailboxes to
my always on HTPC computer at home, which is reachable via a dynamic IP
service.
I know (or think) I need to use doveadm-backup for this but rather than
reinvent the wheel (or use the wrong wheel altogether) I'm wondering if
anyone can
2018 Mar 19
4
rsync time machine backup permissions
Dear rsync users,
I'm trying to copy my Time Machine Backup from my old USB hard drive to a new one. I got error messages, because rsync don't create group and other permissions.
I use rsync 3.1.3.
Did I use the correct parameters? Who has an idea, what mistake?
Thanks!
Best, André
--
The bash script:
#!/bin/bash
source=/Volumes/LaCie\ d2\ Quadra\ v3/Backups.backupdb
2018 Aug 09
2
Best practices for backing up small mailserver to remote location
...ons. The --one-file-system prevents rsync from
trying to back up /dev, /proc, and /sys. The --delete option will remove
local files that were deleted on the remote server. Use that set of
options once you're happy that the backup is working right.
#!/bin/sh
#set -e
set -x
#DRYRUN=--dry-run
#RSYNC_OPTIONS="$DRYRUN --one-file-system -avH --delete"
RSYNC_OPTIONS="$DRYRUN --one-file-system -avH"
DEST=/home/rsync/Server1
# Allow one hour so we don't burn up our bandwidth allowance
# from a command error
time timeout 1h \
rsync -e 'ssh -C -p 1234' $RSYNC_OPTIONS example....
2007 Jun 06
2
omit /etc/issue message when running rsync
Is there a way to omit the text printed out by issue(5) on some
systemes? Like what --no-motd does for motd-texts.
2008 Apr 15
1
rsync man page
Hi there.
Someone might want to notice that - compared to the official rsync man page - this page has a lot more information about each option, when to use and what to expect:
http://www.ss64.com/bash/rsync_options.html
Thanks
Hiran Chaudhuri
_____________________________________________________________________
Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
http://smartsurfer.web.de/?mc=100071&distributionid=000000000066
2007 Feb 16
1
Destination directory creation
Hi people. My first post so be lenient :)
I have read stuff on rsync, looked through the options and read the man
page but cannot seem to find an answer to my problem.
Ok.
I have a script which connects to a remote machine via ssh and pulls
back a list of source directories/files from a config file on the remote
server. I then loop these lines and do an rsync for each item to pull
the files
2008 Sep 13
1
tricky rsync setup quit working
Hi,
some time ago I had started working on a rsync-based backup system.
After I longer break; I now tried to continue this project but can't
get it to work anymore. Maybe somebody here has any idea. The basic
setup looks like this:
client:
$rsync $rsync_opts --rsh="'ssh -i $ssh_key'" $filesystems $bak_host::backup_module/path
on the server side, the ssh key triggered a
2014 Nov 21
4
[Bug 10951] New: Emtpy parameter triggers unwanted behavior, but no error message
https://bugzilla.samba.org/show_bug.cgi?id=10951
Bug ID: 10951
Summary: Emtpy parameter triggers unwanted behavior, but no
error message
Product: rsync
Version: 3.1.0
Hardware: x64
OS: Linux
Status: NEW
Severity: major
Priority: P5
Component: core
Assignee:
2004 Aug 10
2
out of memory in receive_file_entry rsync-2.6.2
Hello,
I've had some problems using rsync to transfer directories with more than
3 million files. Here's the error message from rsync:
<snip>
ERROR: out of memory in receive_file_entry
rsync error: error allocating core memory buffers (code 22) at util.c(116)
rsync: connection unexpectedly closed (63453387 bytes read so far)
rsync error: error in rsync protocol data stream (code