Displaying 20 results from an estimated 24 matches for "avn".
Did you mean:
an
2010 Feb 04
2
help needed using t.test with factors
I am trying to use t.test on the following data:
date type INTERVAL nCASES MTF SDF MTO SDO
nFST MF nOBS MO MB BIASCV BIASEV ME MAE
RMSE CRCF
2001-06-15 avn GE1.00 4385 0.246 0.300 1.502
0.556 1367 1.373 4385 1.502 1.471 0.285 0.164
-1.256 1.266 1.399 0.056
2001-06-15 avn 0.00LT0.01 852225 0.018 0.066 0.000
0.001 708406 0.001 852225 0.000 0.000 1.663
71.664...
2008 May 27
1
How to exclude directories from source with --relative
...de when running rsync version 3.0.2 with --relative.
Here is an artificial test that shows my problem in case 3).
Any help would be appreciated.
# mkdir -p /tmp/source/a/b /tmp/source/a/c
# touch /tmp/source/a/b/hello /tmp/source/a/c/world
1) Try mirroring both b/ and c/, this works:
# rsync -avn --relative /tmp/source/./a/? /tmp/destination
sending incremental file list
created directory /tmp/destination
a/
a/b/
a/b/hello
a/c/
a/c/world
sent 119 bytes received 30 bytes 298.00 bytes/sec
total size is 0 speedup is 0.00 (DRY RUN)
2) Try excluding b/, this works:
# rsync -avn --relativ...
2013 Oct 02
2
unknown message 0:0 [sender]
hi all,
running a transfer from a rsync client (3.0.6) to a rsync server (3.1.0),
I get the following message:
$ RSYNC_PASSWORD="oooo" rsync -avn --delete /xx/yy/ rsync://
aaa at bbb.com/ccc/ddd/
<<motd displayed>>
sending incremental file list
unknown message 0:0 [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(436)
[sender=3.0.6]
Server logs says:
Oct 2 10:47:36 bbb rsyncd[3947]: receiving file l...
2003 Jun 27
2
Using include/exclude options
....
Specifically, I have a backup server with the follow setup:
/backupstorage/D/...all the directories are here...there are roughly 18
directories.
So what I was trying to do was create a file that I can point to specify
what directories I want backed up.
Here is what I was attempting:
rsync -avn --include-file=/home/rsyncfile /backupstorage/D/ /home/rsyncbak
It is a dry run of course. However, it still wants to backup everything in
the /backupstorage/D/.
Here is a quick snip of what is in my rsyncfile:
/backupstorage/D/1999 TaxReturns/
/backupstorage/D/Appraisals/
/backupstorage/D/CLOS...
2010 Aug 13
1
rsync is not deleting subdirectories
...leteme1
[mike at robots mike]$ cd deleteme1/
[mike at robots deleteme1]$ touch deleteme1.txt
[mike at robots deleteme1]$ cd ../Desktop
[mike at robots Desktop]$ mkdir deleteme2
[mike at robots Desktop]$ cd deleteme2/
[mike at robots deleteme2]$ touch deleteme2.txt
[mike at robots deleteme2]$ rsync -avn --delete /home/mike/
/media/8c4d270d-6139-4fed-8a32-2df8d28acdf3/mike | grep deletem
deleting deleteme1/deleteme1.txt
deleting deleteme1/
[mike at robots deleteme2]$
What I would expect is for deleteme1 and 2 to both be deleted, but
rsync is not deleting directories outside of the top level of the...
2019 Jan 02
6
[Bug 13735] New: Synchronize files when the sending side has newer change times while modification times and sizes are identical on both sides
...both files: Update srcfile's mtime to match
destfile's mtime
touch -mr destfile srcfile
# At this point, srcfile and destfile have:
# - identical size
# - identical mtime
# - different content
# - srcfile's ctime is newer than destfile's ctime
# rsync experiments (dry runs)
rsync -avn srcfile destfile # will not synchronize
rsync -avn --checksum srcfile destfile # will synchronize
rsync -avn --ignore-times srcfile destfile # will synchronize
The desired behavior is to synchronize srcfile to destfile, because srcfile is
different and has a newer ctime.
Caveats: --checksum optio...
2012 Jun 18
1
Understanding rsync --delete behavior
Hi,
When running an rsync command of the form:
$ rsync -avn --delete remotehost:/mnt/volsw_dev/AS5/ /mnt/volsw_dev/AS5
rsync wants to delete a slew of files and directories. Partial output
includes, for example:
deleting AS5/zeromq/2.2.0/share/man/man7/zmq_tcp.7
deleting AS5/zeromq/2.2.0/share/man/man7/zmq_pgm.7
deleting AS5/zeromq/2.2.0/share/man/man7...
2004 Sep 28
3
Truncated output from "rsync -e ssh ... 2>&1 | tee"
...eports many fewer file transfers than actually get done when you remove
the -n. (This is not one of the usual "-n" corner cases.)
It turns out that this only happens when you're doing a remote
rsync over ssh AND you redirect stderr into a pipe that fills up, as in
rsync -e ssh -avn host:/path /local/path 2>&1 | tee LOG
I can get the right answer by just not capturing stderr;
i.e. removing the "2>&1" and just saying
rsync -avn host:/path /local/path | tee LOG
works.
The data loss occurs when the pipe (to tee here) fills, so in principle
you cou...
2002 Apr 18
0
Re: Cellspacing
???????? ????????? ?????????? .
----- Original Message -----
From: samba
To: avn@avn.com.ua
Sent: Thursday, April 18, 2002 1:40 PM
Subject: Cellspacing
-------------- next part --------------
HTML attachment scrubbed and removed
2008 Feb 07
2
Over-writing symlinks
...13 2007-02-05 15:06 libc.so.6 -> libc-2.3.3.so
DEST has:
-rwxr-xr-x 1 dale dale 1558836 2008-02-07 12:25 libc-2.3.6.so
-rw-r--r-- 1 dale dale 193 2008-02-07 11:46 libc.so
lrwxrwxrwx 1 dale dale 13 2008-02-07 11:42 libc.so.6 -> libc-2.3.6.so
If I run:
rsync --ignore-existing -avn SRC DEST
output shows the following is to be written to DEST
libc-2.3.3.so
libc.so.6 -> libc-2.3.3.so
How do I avoid libc.so.6 being over-written to point to an old lib?
Using Debian: rsync version 2.6.9 protocol version 29
Dale.
2006 Jan 20
1
deleting remote dirs I no longer want to backup
..."Rsync only deletes inside directories
that it sends" ? I mean, in the command I used, I provide dirb in the
list of dirs to be copied, so "send" mean really send over the wire?
I have tried what is suggested (ie put dira and dirb into test-rsync/
and send test-rsync):
rsync -avn --exclude=dirb --delete-excluded test-rsync/ /tmp
but in this particular case, it tries to remove many things in /tmp
which is obviously populated with many files ;-)
I suppose there is an 'obvious' to do what I want, but how?
Thanks,
Christophe.
2002 Jul 28
2
timestamp on symlink
...touched the directory
since last night."
Thanks.
[root@emily:/tmp]ls -ls a/copying b/copying
8 lrwxrwxrwx 1 root other 7 Jul 28 12:09 a/copying -> COPYING
8 lrwxrwxrwx 1 root other 7 Jul 28 12:07 b/copying -> COPYING
[root@emily:/tmp]rsync -avn /tmp/a/ /tmp/b
building file list ... done
wrote 25424 bytes read 20 bytes 16962.67 bytes/sec
total size is 15972287 speedup is 627.74
[root@emily:/tmp]rsync -av /tmp/a/ /tmp/b
building file list ... done
./
wrote 25424 bytes read 20 bytes 16962.67 bytes/sec
total size is 15972287 speed...
2020 May 24
0
Rsync with three folders
...generating the list of files, copying it to local, and then ping this files from Local A to Local B.
Caveats, I cannot rsync TO server A, only FROM (that is to say, I can run an rsync command on Server A that connect to anyone, but I cannot run an rsync anywhere that connects to Server A).
rsync -avn <remoteserver> <local> > file
xfer file to <local>
Process file list in file to cp files to external
Just checking if there is something else I could/shuld do or something I am forgetting about.
--
"Are you pondering what I'm pondering?"
"I think so, Brai...
2014 Mar 01
2
- automation script
Hi everybody,
I have many server in production but I would verify this:
ex.: I have many domain in /var/www/html/ (domain1 / domain2 / domain3)
now,
How I do check if the files are added or changed?
I should apply this "politic" for all domains but I don't know how
It is possible send me an email with the modification?
so, exist diff command with some option but I don't
2008 May 15
3
Directory Compare
I need to verify some directories of backed up data versus restored data. What would you recommend as the type of comparison to do, and which tool would give the easiest/most usable output?
Thanks!
jlc
2008 Oct 23
5
compare directories
Hello guys,
I have two mirrors. I need to compare files and directories on both mirrors
and as a result print list of those which are missing on mirror 2
What i did
find /data > find.mirror1
find /data > find.mirror2
Now i need to get list of those directories which are missing in mirror1.
Thanks in advance!
David
-------------- next part --------------
An HTML attachment was
2014 Jan 04
0
Problems with blazer_usb. Driver will not shut down my UPS
...KX3KIYH/isnMuJM8DhvDVNIWuFzjg/O
> 5R74VzabCWmF+zGp7EhexwWIRciJKF96C801RkueQTHtzb9IzGugXUnUBQkCRhJz
> p+vjMokWNHXl3Rb7ygaPIcVvMp17iSiKW4PotoO9wQvru6d4IIlx6XeXjY7CkOnF
> +YXGQdYmSLVn35+VdyhcNMarQRgPaEozQUX65PmllCapMX0TGWsDNdfTvNVQFw+N
> SaSoiQtCmtI+4aBEgvspyCQo3cRElDYPukdIcdW/ywdm2JzxPkQy+AVN/4ySAeVD
> tOsoYy0ef1ZGM2z3SX9VeT4ETDzS44ZrBiEUXIR3MIj6ejOZd1c/cSG+8rkjm2A=
> =0aqD
> -----END PGP SIGNATURE-----
2004 Apr 20
1
Strange Fedora Booting problem: can not mount "LABEL=*"partitions
...le. As
you can see, it works fine:
# sed -e 's/hda/hdz/g' -e 's/hdc/hda/g' -e 's/hdz/hdc/' -e
's/0x03/0xf3/' -e s'/0x16/0x03/' -e 's/0xf3/0x16/' /etc/blkid.tab >
/tmp/blkid.tab.broken
# cp /tmp/blkid.tab.broken /etc/blkid.tab
# fsck -AVN -a
fsck 1.35 (28-Feb-2004)
Checking all file systems.
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/hda1
[/sbin/fsck.ext3 (1) -- /usr] fsck.ext3 -a /dev/hda3
[/sbin/fsck.ext3 (1) -- /debian] fsck.ext3 -a /dev/hda5
# e2label /dev/hda1
root
# e2label /dev/hda3
usr
# e2label /dev/hda...
2004 Apr 15
2
Strange Fedora Booting problem: can not mount "LABEL=*"partitions
Hi, Stephen and Jeff,
Thanks. But the problem got debugged&fixed, the answer was post on
fedora-list about 2 weeks ago.
The problem is: the /etc/blkid.tab file works as an old unappropriate
disk partitions cache for fsck|blkid commands when stystem image is
installed to a different arch (scsi->ide) machine, the old cache will
mislead fsck|blkid at the first run and only the first run,
2006 May 10
3
--include-from doesn't include
I'm trying to backup certain pieces of my XP workstations home directory
to a mapped drive using rsync on Cygwin. I was able to create a fairly
useful exclude-from list, but I'm unable to re-include portions a subset
of an excluded directory. My rsync command looks like this:
rsync -avn --delete --stats ~/ \
/cygdrive/i/HRMS/rdavies/backup/home \
--exclude-from=/home/rdavies/rsync_home_list
And the exclude file looks like this:
+ Application\ Data/IDMComp/**
+ Application\ Data/Mozilla/**
- Application\ Data/*
- Cookies/*
- Desktop/*
- Favorites/*
- Local\ Settings/*
- My Do...