Displaying 8 results from an estimated 8 matches for "file_b".
Did you mean:
file_db
2008 May 31
1
rsync 3.0.2 with --fileflags on FreeBSD: cannot rsync hardlinked immutable files
...--------------------------------------------------------------
#! /bin/sh
#
#
set -x
DIR="/var/tmp/rsync_$(date +%s)/"
mkdir "${DIR}/"
# Preparing dir_A
mkdir "${DIR}/dir_A/"
touch "${DIR}/dir_A/file_A"
ln "${DIR}/dir_A/file_A" "${DIR}/dir_A/file_B"
chflags schg "${DIR}/dir_A/file_A"
ls -laio "${DIR}/dir_A/"
# Try rsync: will fail because of schg'ed hardlinked file
/usr/local/bin/rsync -avHWx --fileflags "${DIR}/dir_A/" "${DIR}/dir_B/"
ls -laio "${DIR}/dir_B/"
# Try cpdup: will work...
2014 Dec 05
1
functionality to rsync from dir to dir(gzip)
Dear all
is it possible to rsync in a master-slave scenario saving to slave gzip
content?
i'm not talking about compression during transfer, i'm talking about
-saving- the destination in a compressed format.
Example:
FROM:
-folder_A
--file_A
--file_B
TO:
-folder_A
--file_A.gz
--file_B.gz
I know that this won't be a "real" rsync between two folder, but it will be
an extremely useful feature to do some remote backup saving space.
To check if the file has been changed it will be enough to compare the date
of files because i assume...
2010 May 26
3
Simple whole volume copy
I have a volume at 192.168.0.2 on my local network. I'd like to rsync the
entire volume to a backup volume, skip all files already present on the
backup volume (same name and the same or earlier timestamp), and include all
flags, dates, etc. as applicable to Mac OS X 10.6.x.
Can someone tell me the proper command to do this.
2005 May 25
2
rsync file sync by priority
Hello All -
I'm looking for a switch(es) to ensure rsync indexes the pull of files from
remotedir, LIFO (last in first out) and then by .ext type where file basenames
are similar.
example)
file_a.xml ctime of 09:01:07
file_a.jar ctime of 09:01:02
get transfered before
file_b.xml ctime of 09:01:45
file_b.jar ctime of 09:01:45
and the .xml of basename $file would always be transferred first.
I'm unsure if this is in the detailed docs on the algorithm, but RTFM method was
not working for me and I couldn't find anything in the man pages other than
preservation...
2009 Oct 30
2
Unix file ownership for wide open directories
An HTML attachment was scrubbed...
URL: <http://lists.samba.org/pipermail/rsync/attachments/20091030/c43a29f5/attachment.html>
2005 Mar 29
7
[Bug 2554] Output overwrite action
https://bugzilla.samba.org/show_bug.cgi?id=2554
------- Additional Comments From wayned@samba.org 2005-03-29 11:50 -------
(In reply to comment #0)
>> If a file will be deleted the line starts with "Delete", but when a
> file will be copied or overwritten, nothing is displayed.
I assume you mean, "no prefix is displayed" since there is something that is
2005 Jul 04
2
[LLVMdev] function inlining threshold ?
I am using llvm for source-to-source inlining. So I did:
% llvm-gcc file_a.c file_b.c ... file_n.c -o file
% opt -inline -inline-threshold=1000 < file.bc | llc -march=c > outfile.c
Can anyone tell me how llvm determines if a function should be inlined,
and what roll does "inline-threshold" play ? (Does the example mean that
if the function body has fewer than 10...
2005 Jul 05
0
[LLVMdev] function inlining threshold ?
On Mon, Jul 04, 2005 at 03:32:39PM -0500, Long Fei wrote:
> I am using llvm for source-to-source inlining. So I did:
>
> % llvm-gcc file_a.c file_b.c ... file_n.c -o file
> % opt -inline -inline-threshold=1000 < file.bc | llc -march=c > outfile.c
>
> Can anyone tell me how llvm determines if a function should be
> inlined, and what roll does "inline-threshold" play ? (Does the
> example mean that if the function...