search for: rsync_xal_set

Displaying 20 results from an estimated 28 matches for "rsync_xal_set".

2017 Dec 18
0
Centos7: backup with rsync problem: "rsync: rsync_xal_set: lremovexattr(""/tmp/test/etc/fstab"", "security.selinux") failed: Permission denied (13)"
...command in order to backup /etc from remote server to local dir I get a lot of this message: [root at s-virt tmp]# rsync -a --delete --numeric-ids --relative --delete-excluded --compress --acls --xattrs rsync://server-dati/root/etc/ /tmp/test/ -v receiving incremental file list rsync: rsync_xal_set: lremovexattr(""/tmp/test/etc/fstab"","security.selinux") failed: Permission denied (13) rsync: rsync_xal_set: lremovexattr(""/tmp/test/etc/resolv.conf"","security.selinux") failed: Permission denied (13) rsync: rsync_xal_set: lrem...
2006 Apr 19
4
DO NOT REPLY [Bug 3701] New: rsync_xal_set: lsetxattr system.posix_acl_default failed: Permission denied
https://bugzilla.samba.org/show_bug.cgi?id=3701 Summary: rsync_xal_set: lsetxattr system.posix_acl_default failed: Permission denied Product: rsync Version: 2.6.7 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core AssignedT...
2007 Oct 21
2
xattrs: Permission denied?
...Version 8.10.0: Wed May 23 16:50:59 PDT 2007; root:xnu-792.21.3~1/RELEASE_PPC Power Macintosh powerpc kiwiw:~/x terpstra$ echo test > bar kiwiw:~/x terpstra$ xattr --set broken demo bar kiwiw:~/x terpstra$ chmod 0444 bar kiwiw:~/x terpstra$ rsync-3.0 -aHAXSx bar pumpkin::staging/tmp/ rsync: rsync_xal_set: lsetxattr(".bar.E055QA","user.broken") failed: Permission denied (13) rsync: rsync_xal_set: lsetxattr (".bar.E055QA","user.com.apple.crtime96") failed: Permission denied (13) rsync error: some files could not be transferred (code 23) at main.c (1053) [se...
2020 May 12
1
[Bug 14377] New: rsync rsync_xal_set lsetxattr failed invalid argument
https://bugzilla.samba.org/show_bug.cgi?id=14377 Bug ID: 14377 Summary: rsync rsync_xal_set lsetxattr failed invalid argument Product: rsync Version: 3.1.3 Hardware: All OS: FreeBSD Status: NEW Severity: normal Priority: P5 Component: core Assignee: wayne at opencoder.net Reporter:...
2015 Mar 11
0
Rsync ACLs over NFSv4 to EXT4 - rsync_xal_set: lsetxattr - Operation not supported
...r > a solution and have turned up nil. > > I'm trying to rsync with options -AX over an NFSv4 mount TO an > ext4 drive FROM an ext4 drive and both have acl and user_xattr > enabled. The command: > > rsync -aAX /data/ /mnt/back/data > > results in: > > rsync: rsync_xal_set: > lsetxattr(""/mnt/back/data/Users/user/Documents/Desktop"","security.NTACL") > > failed: Operation not supported (95) > > along with all the other files. > > Running the same command to a local folder works perfect so I'm > assuming it...
2007 Oct 17
0
xattrs on symlinks
As we all know, only osx supports xattrs on symlinks. Unfortunately, not only does osx support xattrs on symlinks, *every* symlink has, at the least, com.apple.FinderInfo. When backing up to a linux system, this results in one error message per symlink: rsync: rsync_xal_set: lsetxattr("User Guides And Information","user.com.apple.FinderInfo") failed: Operation not permitted (1) rsync: rsync_xal_set: lsetxattr("User Guides And Information","user.com.apple.crtime96") failed: Operation not permitted (1) rsync: rsync_xal_set...
2010 Aug 27
0
rsync_xal_set failed : Operation not supported
Hi guys, I have a question about this error. It occurs for some files when I try to backup a file server running Samba on FreeBSD, using aHAXR rsync options. The exact error is : rsync_xal_set: lsetxattr("****","user.SAMBA_PAI") failed: Operation not supported (95) (stars are a real path I cannot provide) The source file is located on a read-only mounted volume snapshot. It appears rsync tries to modify the source for some reason, but this filesystem is mounted r...
2015 Mar 11
2
Rsync ACLs over NFSv4 to EXT4 - rsync_xal_set: lsetxattr - Operation not supported
.... :) I've been searching for over a week for a solution and have turned up nil. I'm trying to rsync with options -AX over an NFSv4 mount TO an ext4 drive FROM an ext4 drive and both have acl and user_xattr enabled. The command: rsync -aAX /data/ /mnt/back/data results in: rsync: rsync_xal_set: lsetxattr(""/mnt/back/data/Users/user/Documents/Desktop"","security.NTACL") failed: Operation not supported (95) along with all the other files. Running the same command to a local folder works perfect so I'm assuming it has something to do with NFS4 or EXT4 on...
2007 Nov 15
2
rsync error?
...Can anyone help me with the following error - is it serious; is the file transferred; are the other files transferred? [morgan@morgansmachine ~]$ rsync -a -X -A -z -v /home/morgan/Documents 192.168.1.30:/home/morgan/Documents morgan@192.168.1.30's password: building file list ... done rsync: rsync_xal_set: lsetxattr("Documents/Projects/CBT/SH20/HearingSubmission/ManukauBridgeSubCBT_PostPatrick_3_2.doc","user.Beagle.AttrTime") failed: Permission denied (13) rsync: rsync_xal_set: lsetxattr("Documents/Projects/CBT/SH20/HearingSubmission/ManukauBridgeSubCBT_PostPatrick_3_2.doc&q...
2016 Dec 01
3
[PATCH v2 1/2] xattrs: Skip security.evm extended attribute
...e user namespace. */ - if (am_root <= 0 && !HAS_PREFIX(name, USER_PREFIX)) { + if (am_root <= 0 && + (!HAS_PREFIX(name, USER_PREFIX) || + !strcmp(name, "security.evm"))) { if (!am_root) { free(ptr); continue; @@ -962,6 +970,11 @@ static int rsync_xal_set(const char *fname, item_list *xalp, for (i = 0; i < xalp->count; i++) { name = rxas[i].name; +#ifdef HAVE_LINUX_XATTRS + if (!strcmp(name, "security.evm")) + continue; +#endif + if (XATTR_ABBREV(rxas[i])) { /* See if the fnamecmp version is identical. */ len = n...
2014 Feb 02
1
Bugg when using Extended Attributes flag -X
...mes to Extended Attributes (-X flag). The server I use has Ubuntu with the filesystem XFS and I am trying to backup a OS X system to it. The problem is as far as I understand it that Linux Kernel has a liming on 64k f?r Extended Attributes and OS X don?t have this limit. Some error output. rsync: rsync_xal_set: lsetxattr(""/srv/danne/extern2/1000_EXT/2013/2013-03-05/IMG_6872-Edit.tif"","user.com.apple.ResourceFork") failed: Argument list too long (7) Error 2 rsync: rsync_xal_set: lsetxattr(""/srv/nas/home/apple_bak_rsync/xxxxx/Pictures/iPhoto Library/Database/BigB...
2009 Apr 03
1
"Invalid argument (22)" & "Operation not supported (95)" ???
Hi Folks I've gone back over the list and the only reference I've found to "Invalid argument (22)" is here: http://lists.samba.org/archive/rsync/2006-May/015478.html That seems a different context of character set mismatches. The common parts to my errors are: rsync: rsync_xal_set: lsetxattr("...","security.selinux") failed: Invalid argument (22) And: rsync: rsync_xal_set: lsetxattr("...","user.Beagle") failed: Operation not supported (95) Where ... is some reference to a file relative to the source. Seems to be a selinux issue on th...
2007 Oct 30
1
Rsync 3.0.0pre4 errors with ACLs and Xattrs between OSX and Linux
....DS_Store file_with_ACLs file_with_resource_fork file_with_xattrs file_with_xattrs copy dir_with_ACLS/ macosx_metadata_test/ macosx_metadata_test/catty_with_no_resource.jpg macosx_metadata_test/catty_with_resource.jpg macosx_metadata_test/readme.txt rsync: rsync_xal_set: lsetxattr(".file_with_xattrs.EGbmPN","user.com.apple.ResourceFork") failed: Argument list too long (7) rsync: rsync_xal_set: lsetxattr(".file_with_xattrs copy.Tnlkcp","user.com.apple.ResourceFork") failed: Argument list too long (7) rsync: rsync_xal_...
2009 Oct 28
1
Operation not supported (95)
...he process fails. I use wget (OSX Leopard, wget 3.0.6 compiled from source) to backup my ~/Pictures directory to a linux server, also with wget 3.0.6 (Debian). In persuit of being sure I get everything from HFS filesystem (resource fork/metadata), I'm getting the following error: rsync: rsync_xal_set: lsetxattr("Pictures/...[snip].../IMG_7766/IMG_7766.dng","user.com.apple.FinderInfo") failed: Operation not supported (95) I have search through the archives and only found this error in what seemed to be an error relating to selinux (which I'm not using). The target f...
2008 Apr 14
0
[PATCH] xattrs not set on locked files that already exist on target
Working with rsync 3.0.2, it appears that rsync isn't unlocking files before setting the file attributes when those files already exist. This generates error messages on subsequent such as: rsync: rsync_xal_set: lsetxattr("locked_file","test_xattr") failed: Operation not permitted (1) rsync: rsync_xal_clear: lremovexattr("locked_file","test_xattr.temp") failed: Operation not permitted (1) I assume this would also affect ACLs. Presumably, this is what -- force...
2007 Mar 08
3
[BUG] clear ACL-s on destination
Destroy ACL-s on destination when no ACL-s differens between source and destination. Bug is somehow related with function send_file_name() called with negative file descriptor f. There is no such bug in 2.6.9 version, but there options "-X -A --deleted" can't be used (we have "Internal error: wrong write used in receiver."). If I fix this, avoid calling send_acl() &
2008 Jun 25
2
DO NOT REPLY [Bug 5565] New: xattrs not set on locked files that already exist on target
...AssignedTo: wayned@samba.org ReportedBy: mike@bombich.com QAContact: rsync-qa@samba.org It appears that rsync isn't unlocking files before setting the file attributes when those files already exist. This generates error messages on subsequent backups such as: rsync: rsync_xal_set: lsetxattr("locked_file","test_xattr") failed: Operation not permitted (1) rsync: rsync_xal_clear: lremovexattr("locked_file","test_xattr.temp") failed: Operation not permitted (1) I assume this would also affect ACLs. Presumably, this is what --force-chang...
2009 Jul 10
6
DO NOT REPLY [Bug 6546] New: lremovexattr problems
https://bugzilla.samba.org/show_bug.cgi?id=6546 Summary: lremovexattr problems Product: rsync Version: 3.0.6 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: Dave@Yost.com QAContact:
2019 Nov 05
0
[Bug 14183] New: rsync fails transferring only attributes for file without write permission
...nds: cd /var/tmp mkdir stage mkdir stage/{source,destination} touch stage/source/foo rsync -a --xattrs stage/source/ stage/destination/ xattr -w abc def stage/source/foo chmod ugo-w stage/source/foo rsync -a --xattrs stage/source/ stage/destination/ is: rsync: rsync_xal_set: lsetxattr("/private/var/tmp/stage/destination/foo","abc") failed: Permission denied (13) rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1189) [sender=3.1.3] Note that if "echo ghi >stage/source/foo" is inserted aft...
2010 Nov 11
1
lsetxattr() failed: Operation not permitted on symlinked locked directory
...--force-change src/ dst xattr-util is a utility that I have found at http://www.bombich.com/groups/ccc/wiki/7ba51/, but any method to add an extended attribute will do. This is the output: sending incremental file list ./ symlink-to-dir -> src/dir-with-ea-and-uchg/ dir-with-ea-and-uchg/ rsync: rsync_xal_set: lsetxattr("dir-with-ea-and-uchg","mamma.mia") failed: Operation not permitted (1) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20101111/bb639ce4/attachment.html>