Displaying 20 results from an estimated 300 matches similar to: "Problem with --link-dest when syncing AIX to Linux"
2003 Feb 08
1
compare st_mode & 07777, or Aix dirs always differ
Under Aix directories have the mode 024xxxx instead of the customary
04xxxx. Because of this when you sync a directory to or from an Aix
system it's never up to date.
Here is a patch which fixes this. It causes rsync to look at only the
bits that chmod actually influences, 07777, when deciding whether or not
the modes differ.
I was surprised there wasn't an existing constant for 07777,
2006 Mar 20
1
Rsync acl patch 1.113 compilation problems on cygwin
Hi,
Recently, there have been some fundamental achievements regarding
acl-support on the cygwin platform. I thought that it would be convenient to
offer an acl-patch enabled rsync as a part of the cwrsync package (a yet
another minimalist rsync on cygwin solution). I get some compilation errors.
What I did:
- Downloaded acl patch v1.113 from rsync site
- Run commands below In the rsync source
2003 Feb 19
0
FW: compare st_mode & 07777, or Aix dirs always differ
>jw schultz [mailto:jw@pegasys.ws] wrote:
>On Fri, Feb 07, 2003 at 11:15:57AM -0500, Roderick Schertler wrote:
>> Under Aix directories have the mode 024xxxx instead of the customary
>> 04xxxx. Because of this when you sync a directory to or from an Aix
>> system it's never up to date.
>>
>> Here is a patch which fixes this. It causes rsync to look at
2005 Jul 26
1
itemize() needs to use CHMOD_BITS (patch)
When syncing from Linux to Aix --itemize-changes with --perms lists
directories every time because the high-order st_mode bits for
directories differ between the two systems, and itemize() isn't masking
them with CHMOD_BITS. Here is a fix, tested with 2.6.6pre1.
PS: I'm not subscribed to this mailing list, please Cc: if you need
more info from me. Thanks.
--- generator.c.~1~ Thu Jun
2004 Oct 20
1
Drawing multiple line plots
Hi All:
Greetings, and best wishes from the festive times here at Kolkata, India -- the time of Durga Puja celebrations.
I seek your advice as I try plotting lines for my data. The problem:
I have created a dataframe that looks like this (name: myFrame):
lowest second third fourth highest significance
INAS 0.107 0.115 0.123 0.115 0.166 0.000
MMA 0.091 0.107 0.115
2007 Apr 18
1
Linux Equivalent of SetFilePerm() api
Hi everyone,
We are trying to port our own windows application to SUSE linux.Our
application uses SetFilePerm() api defined in commondll.dll.We would like
to know whether there is a linux equivalent of windows commondll.dll in
wine...
If not then what could be the possible alternative to make this api
function exactly as it does in windows.
Waiting for an early reply,
Thanks and Regards,
2003 Dec 14
3
Problem with data conversion
Hi All:
I came across the following problem while working with a dataset, and
wondered if there could be a solution I sought here.
My dataset consists of information on 402 individuals with the followng five
variables (age,sex, status = a binary variable with levels "case" or
"control", mma, dma).
During data check, I found that in the raw data, the data entry
2011 May 31
2
Files are duplicated after renaming (with glusterfs+zfs-fuse)
Hi all,
I installed glusterfs (version 3.1.3) with zfs-fuse (0.6.9) as the
underlying filesystem.
After renaming a file, I found the file duplicated.
Following is my test scenario.
root at ubuntu:/# zpool create tank /dev/sdb
root at ubuntu:/# gluster volume create test-volume ubuntu:/tank/exp1
ubuntu:/exp2
root at ubuntu:/# gluster volume start test-volume
root at ubuntu:/# mount -t glusterfs
1999 Oct 18
1
Problem with sticky bit and free space
Hello,
I have two little problems with samba:
1st.
Samba is not setting the sticky bit anymore !!!
I have a share that look like this:
[publico]
comment = Arquivos publicos
path = /home/publicos
public = yes
writable = yes
force directory mode = 1777
create mask = 0664
With samba 1.9.x it was ok, the directories was being created with the
correct permission (drwxrwxrwt), but since I
2003 Mar 20
2
--link-dest uid/gid checking bug?
Hi --
I was very keen to download rsync and give it a whirl with the
new --link-dest feature. However, I was terribly puzzled when I
couldn't seem to get it working, even though --compare-dest with
the same argument would work. It seemed like new files would
be transferred even though files existed in the compare-dest/link-dest
location; compare-dest would detect them but link-dest would
2001 Jan 23
11
cc & no 64bit int patches
Here are a couple of patches against the CVS (Jan 22 18:41 PST)
Some C++ comments found their way into ssh.h
The no64.patch puts ifdefs around buffer_get_int64()
now in bufaux.[c,h]
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
-------------- next part --------------
--- ssh.h.old Mon Jan 22 18:40:58 2001
+++ ssh.h Mon Jan 22 19:02:02 2001
@@ -25,8 +25,10 @@
# include
2008 Apr 20
3
Problem with object inside a function
Hi all,
I have a problem with an object inside a formula in a function that I make.
I create an object named qvartemp. This object is OK, look the levels:
> print(levels(qvartemp))
[1] "baixomedio" "alto"
Now I create a new object with a new formula:
> new.form <- as.formula(gsub(qvar,"qvartemp",as.expression(mma$formula)))
Look this new object:
>
2008 Feb 21
1
update don't find an object
Hi,
I have a situation here.
I try this update:
mmaa <- update(mma,biomass~qvartemp)
but I have this message:
Error in eval(expr, envir, enclos) : object "qvartemp" not found
but this object exist:
[1] "cont" "i" "levelsord" "mma" "qvar" "qvarmma"
[7] "qvartemp" "test"
2008 Apr 06
3
Multiset Permutations
Dear R users,
I want to perform an exact permutation of multisets. I have looked at the
coin package, but it doesn't seem to offer what I am looking for. I want to
perform permutations (exact - without duplications) on multisets of scalars
(e.g., the multiset 0,0,1,2,2). I want to output all the possible
permutations into a data frame so that each multiset permutation occupies a
row (or
2003 Apr 08
1
link_dest checks perms despite no -p -o or -g
When using --link-dest, this block of code in skip_file causes
new copies of files to be created if source and destination file
permissions differ, even if -p -o and -g haven't been specified.
if (link_dest) {
if((st->st_mode & ~_S_IFMT) != (file->mode & ~_S_IFMT)) {
return 0;
}
if (st->st_uid != file->uid || st->st_gid != file->gid) {
return 0;
}
}
1999 Apr 07
0
nonparametric mixed model ?
Dear friends. I hope you will bear over with a lengthy question. I have a problem of 76 patients on hemodialysis measured repeatedly once a month for nine months for methylmalonic acid and vitamin B12. The vitamin had been administered previously to these patients but was curtailed in the first part and then started again. There was a very clear response in that as vitamin B12 went down
2004 May 26
0
setting files read-only form right click windows properties dialog
Hi all, hope this has not been asked and answered,
I can not seem to set the read-only flag when I right click on a file and
select properties from in Windows XP. It look like it work but if I go
back in it is unchecked. I have the same issue weather I am the owner of
the file or not.
I am using Fedora Core 1 with Samba 3.0.2 ( the one from the care install
with all updates applied) I am using
2001 Sep 20
0
3d java etc.
There was some interest in the commands for creating an HTML file of
3D graphics that can be shown with a Java applet.
Looking at things I discovered (of course) that I should really clean up
quite a few things before releasing it for real. I hope to do some of
that this weekend.
In the meanwhile, here are a couple of pointers to the Java applet &
documentation (apparently free for
2007 Feb 12
1
Build problems
I'm getting remotetest and apitest failing for me on ixion on SVN
HEAD-ish. I can't find a link to tinderbox anywhere obvious (I
expected it to be linked from bleeding edge, and possibly the bugzilla
start page), so I don't know if it's something dumb I've done to my
setup and checkout, or a genuine problem.
Any ideas?
J
--
2005 Dec 13
0
Can't see shares on a server member
Hi team,
I'm dealing with AS/U as a member server on a Samba 3.0.20 PDC.
Jonction seems ok, and from the member server I can see PDC's shares (with
net view) and authenticate user (with net logon user passwd
/domain:domainname).
On the other side, I fell into timeout when running smbclient -L member
from the PDC. Here is a log.nmbd loglevel 10 from PDC as there is no other
log