Displaying 20 results from an estimated 80 matches similar to: "--compare-dest= dir list ?"
2005 Feb 01
2
Rsync and SSH on Windows
I am writing a program that synchronizes my companies Windows laptops
with our home server. Due to the nature of our proxy/firewall, I must
use SSH with port forwarding to achieve this goal. Currently I establish
the SSH connection using the following command:
ssh ssh_user@proxy.example.com -i file_name -L 873:200.200.60.60:7000 -N
and then run rsync with the following command:
rsync
2006 Oct 12
6
backup system files (and permissions) over ssh
how do you backup system files like /etc/ over ssh to another machine
and keep permissions the same on the remote backup location ?
i tried using -a flag, but because i'm connecting through ssh i'm not using Rsync module on the remote computer and therefore i cant write files as root so -a flag is not working.
all the files are being written with owner SSH_USER and group SSH_USER_GROUP
i
2005 Apr 04
0
io timeout after 180 seconds
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Thanks for all the help so far. I am learning a lot from it.
I have a script that I will post bellow that when I run it gives me
this error.
mysql/website_forum/nntp_settings.MYD
io timeout after 180 seconds - exiting
rsync error: timeout in data send/receive (code 30) at io.c(103)
rsync: connection unexpectedly closed (1493583 bytes read so far)
2013 May 21
2
SSH users authentication depending on their public key.
Hi everyone.
I'm looking for a way to identify my SSH's users according to their
public key; I mean I would like to have their name logged in my bash
session (in a shared unix account).
I put this in my .profile:
export HISTTIMEFORMAT="[%Y-%m-%d %H:%M:%S - $SSH_USER] "
So now I'm trying to make OpenSSH fill the "SSH_USER" variable.
First I have to exclude the
2011 Mar 17
1
[nut-commits] svn commit r2940 - in branches/windows_port/scripts/Windows/Installer
>
> ---------- Forwarded message ----------
> From: Frederic BOHE <fbohe-guest at alioth.debian.org>
> To: nut-commits at lists.alioth.debian.org
> Date: Wed, 16 Mar 2011 14:57:09 +0000
> Subject: svn commit r2940 - in
> branches/windows_port/scripts/Windows/Installer: . ImageFiles
> ImageFiles/Binary ImageFiles/Others ImageFiles/emptyDir
>
2009 Apr 11
0
sudo make check fails on OSX
Since snapshot rsync-HEAD-20090220-0710GMT.tar.gz
make check is successful but sudo make check fails
------------------------------------------------------------
----- overall results:
29 passed
3 failed
6 skipped
------------------------------------------------------------
failed
FAIL batch-mode
FAIL chmod-option
FAIL daemon-gzip-upload
2004 Sep 23
1
rsync script from homepage: trouble
Hello,
I'm new to this and am trying to modify the "backup to a central backup
server with 7 day incremental" script from
http://samba.anu.edu.au/rsync/examples.html to suit my situation.
I have ended up with the script attached below and when running it from
command line I get these errors:
rsync error: syntax or usage error (code 1) at main.c(726)
and a plethora of this
>
2003 Apr 09
0
rsync incremental backup problem with --backup-dir switch
Hello,
I am using rsync v2.5.6 to backup our entire server filesystem over the
network to a central backup server.
I have copied the example script from the rsync website
(http://rsync.samba.org/examples.html) to create incremental backups, the
--backup-dir seems to have a strange side-effect.
Everything goes well, but on the server side where the backup is stored I
can't seem to break out
2020 Sep 29
1
Back-up differences. Raspberry Pi and Fedora
I am using the 'backup to a central backup server with 7 day
incremental' example to archive three separate computers to identically
configured (apart from name) shares on a Western Digital 'MyBookLive'
NAS which has rsync enabled. The backup from two Raspberry Pi Computers
operates without a problem but the backup from a Fedora 32 computer
fails with an 'unknown module
2008 May 06
3
DO NOT REPLY [Bug 5440] New: 'relative' test fails on SunOs 5.8
https://bugzilla.samba.org/show_bug.cgi?id=5440
Summary: 'relative' test fails on SunOs 5.8
Product: rsync
Version: 3.0.2
Platform: Sparc
OS/Version: SunOS
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: brianegge@yahoo.com
2002 Jun 26
5
[PATCH] improved chroot handling
There are a couple of niggles with the sandboxing of the unprivileged
child in the privsep code: the empty directory causes namespace pollution,
and it requires care to ensure that it is set up properly and remains set
up properly. The patch below (against the portable OpenSSH, although the
patch against the OpenBSD version is very similar) replaces the fixed
empty directory with one that is
2005 Nov 23
2
HELP: need better understanding of "--delete" flag
Need to understand exactly what the "--delete" flag
does when rsync runs.
Here is my understanding... If a file is created on
the source machine on monday, then rsync'd to the
rsync server on monday night, then deleted on the
source machine tuesday, then it will be deleted from
the rsync server on tuesday night when the cron job
runs again.
But, would rsync under any circumstances,
2003 Aug 14
1
Incremental Backup
Hi folks,
What is the purpose of following statements?
[ -d $HOME/emptydir ] || mkdir $HOME/emptydir
rsync --delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/
Expecting reply.
Baskar
2003 Jan 09
2
Help With Restoring
Hi All,
I have been using rsync to backup to a central server with a 7 day
incremental script on 2 Redhat boxen.
#!/bin/sh
PATH=/usr/local/bin:/usr/bin:/bin
DAY=`date +%A`
export PATH DAY
[ -d /root/emptydir ] || mkdir /root/emptydir
rsync --rsh=/usr/bin/ssh --delete -a /root/emptydir/
CENTRAL_SERVER_IP:/backup2/BACKED_UP_SERVER_FQDN/$DAY
rmdir /root/emptydir
rsync --delete
2007 Nov 02
0
build/test problems with rsync-3.0.0pre4
Hi,
I tried to build rsync-3.0.0pre4 on a list of different plattforms
and got some problems with build or test suite.
first, the good news: the build and tests worked fine on these plattforms
Solaris 5.5.1, 5.6 and 5.8 (sparc) and 5.10 (x86 and sparc)
SUSE Linux 9.0 (amd64), 10.1 (amd6) SLES10 (32 and 64 bit)
RedHat 7.1 and 9.0 (32 bit)
RedHat EL3 (ia64)
problems
2009 Apr 09
3
Help creating incremental backups using --backup-dir.
Normally I would use the --link-dest option to do this but I can't
since I'm rsyncing from a Mac to a Samba share on a Linux box and hard
links don't work. What I want to do is create a 10 day rotating
incremental backup. I used the first script example on the rsync
examples page as a template. The only thing I changed was the
destination to be a local directory and paths for
2000 Apr 03
1
2.0.7pre3: smbclient issues
My systems: rh61, 2.2.14 + smbfs-nls.patch.
I refer to 2.0.7pre3 as 2.0.7
=== 1) "ls" of an empty dir
1a)
1.9.18 doing "ls" to an empty samba dir:
smb: \> ls
49550 blocks of size 16384. 33754 blocks available
1b)
2.0.7 doing "ls" to an empty samba dir:
smb: \> ls
ERRDOS - ERRbadfile (File not found.) listing \* <=======
2003 Feb 22
1
rsync ported to BeOS-bone
Hello, here is a preliminary patch allowing rsync 2.5.6
to compile in BeOS (using the new BONE networking stack).
Some explanations:
- BeOS doesn't have chroot(),
- the BONE networking stack export legacy network function
for old apps in libnet.so (linked to by default), so it's
necessary to force linking to the new libraries for things
to work. I've yet to get inet_ntop() to be
2006 Feb 02
0
DO NOT REPLY [Bug 3241] Multiple source to dest transfers in one invocation (to same host)
https://bugzilla.samba.org/show_bug.cgi?id=3241
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Comment #1 from wayned@samba.org 2006-02-01 20:05 MST -------
2016 Oct 10
2
Problem with one User after upgrade to 4.5.0
On 10/09/2016 12:14 PM, Rowland Penny via samba wrote:
> On Sun, 9 Oct 2016 11:50:42 -0600
> "Paul R. Ganci via samba"<samba at lists.samba.org> wrote:
>
>> >On 10/09/2016 02:51 AM, Rowland Penny via samba wrote:
>>> > >Have you by any chance got another 3001108 'xidNumber' in
>>> > >idmap.ldb ? If you give a user a