similar to: --fake-super and xattr between Linux and Solaris 10

Displaying 20 results from an estimated 1000 matches similar to: "--fake-super and xattr between Linux and Solaris 10"

2010 Sep 21
1
Old FreeBSD4.11 build.
I'm trying to get an old FreeBSD 4.11 server to talk to a newer FreeBSD 7 server that is running rsync 3.0.4 but I am running into an error with extended file attributes: Basic steps: Applied the fileflags patch per the instructions: patch -p1 <patches/fileflags.diff ./prepare-source Ran the following configure line: ./configure --with-included-popt --disable-iconv
2008 May 10
1
Failed to create rounding.h!
On an i686 with glibc 2.5 installed I'm not able to compile rsync 3.0.2 and later. rsync 3.0.0 was no problem, this compiled. Also on an x86_64 with glibc 2.7 installed rsync compiled. Here is a script of the failing comilation: Script started on Sat May 10 07:33:39 2008 teddy@mail /usr/src/rsync-HEAD-20080508-0612GMT $ mkdir build teddy@mail /usr/src/rsync-HEAD-20080508-0612GMT $ cd build
2014 Mar 14
3
[Bug 10496] New: --itemize-changes always reports xattr changes with --xattrs --fake-super
https://bugzilla.samba.org/show_bug.cgi?id=10496 Summary: --itemize-changes always reports xattr changes with --xattrs --fake-super Product: rsync Version: 3.1.1 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at
2013 Jan 24
2
[Bug 9594] New: Error transferring user and non-user xattr using --fake-super under Linux
https://bugzilla.samba.org/show_bug.cgi?id=9594 Summary: Error transferring user and non-user xattr using --fake-super under Linux Product: rsync Version: 3.1.0 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at
2007 Nov 15
2
2.6.9 w/ acl, xattr, and fake-super support?
Hello, As i cannot get 3.0.0pre5 to work in my environment (throwing crazy errors which i've posted previously), i would like to revert to 2.6.9 . Of course, the reason i tried to use v3 in the first place was for the acl, xattr, and fake-super options - which, evidently, can be enabled under 2.6.9, as per the following sources: http://lists.samba.org/archive/rsync/2007-February/017218.html
2002 Nov 08
0
Painfully slow writes in MS-DOS
Hey folks, I was having a problem at work with Samba 2.2.3a (SuSE 8.0) as well as a Redhat machine I know nothing about and an HP Workstation station I know nothing about. Each had painfully slow writes from dos clients (for using Norton Ghost). I tried many machines, many nics, and even played with different hubs. All caused problems. I even tried VM-Ware to VM-Ware. I have Samba 2.2.4 at
2003 Feb 15
1
File won't copy to client
This is strange, but I use samba for a software archive at work, and we are having trouble with Office 97. I traced it back to riched20.dll. The file is one the server, but it never copies. I can't even see the file. If i rename it, it shows up. What is up with that? /\/\/\/\/\/\ Nothing is foolproof to a talented fool. /\/\/\/\/\/\ coreyfro@coreyfro.com http://www.coreyfro.com/
2008 Apr 07
3
rsync installation _error exit code1
Skipped content of type multipart/alternative-------------- next part -------------- # ./configure configure.sh: Configuring rsync 3.0.1 checking build system type... hppa2.0w-hp-hpux11.11 checking host system type... hppa2.0w-hp-hpux11.11 checking target system type... hppa2.0w-hp-hpux11.11 checking for gcc... no checking for cc... cc checking for C compiler default output file name... a.out
2008 Feb 15
4
Revised flags patch
Hi, first of all, sorry for taking so long. Unfortunately, some other tasks kept coming up. Anyway, attached is the version of the flags patch, that is based on the one I'm using with 2.6.9. It is against the rsync-3.0.0pre9 release. I've included the option name change from the repository, so the option is now called --fileflags. Improved from the previously distributed version is the
2016 Apr 18
0
[Bug 1953] Implementation of xattr in sftp-server for sshfs
https://bugzilla.mindrot.org/show_bug.cgi?id=1953 TJ Saunders <tj at castaglia.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tj at castaglia.org --- Comment #6 from TJ Saunders <tj at castaglia.org> --- Instead of using custom SFTP
2014 Dec 02
7
Help with at Bash script
I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 box. Simplified it looks like this: tcpdump -l -n -e port 53 \ | awk '{if ($14 ~ /A.*?/) print $15}' \ | while read domain ; do echo $domain ; done ; The sticking point is the 'while read' construct. Run just as 'tcpdum | awk' I get this: english.stackexchange.com. www.urbandictionary.com.
2014 Dec 02
0
Help with at Bash script
Am 02.12.2014 um 19:05 schrieb James B. Byrne: > I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 > box. Simplified it looks like this: > > tcpdump -l -n -e port 53 \ > | awk '{if ($14 ~ /A.*?/) print $15}' \ > | while read domain ; do echo $domain ; done ; > > The sticking point is the 'while read' construct. Run just as
2014 Dec 02
1
Help with at Bash script
On Tue, Dec 2, 2014 at 2:19 PM, Alexander Dalloz <ad+lists at uni-x.org> wrote: > Am 02.12.2014 um 19:05 schrieb James B. Byrne: > >> I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 >> box. Simplified it looks like this: >> >> tcpdump -l -n -e port 53 \ >> | awk '{if ($14 ~ /A.*?/) print $15}' \ >> | while
2014 Dec 03
0
Help with at Bash script
You have to do cat domain in back tiks instead of read domain. (Sent from iPhone, so please accept my apologies in advance for any spelling or grammatical errors.) > On Dec 2, 2014, at 12:05 PM, James B. Byrne <byrnejb at harte-lyne.ca> wrote: > > I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 > box. Simplified it looks like this: >
2014 Dec 03
0
Help with at Bash script
What is domain, BTW? (Sent from iPhone, so please accept my apologies in advance for any spelling or grammatical errors.) > On Dec 2, 2014, at 12:05 PM, James B. Byrne <byrnejb at harte-lyne.ca> wrote: > > I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 > box. Simplified it looks like this: > > tcpdump -l -n -e port 53 \ > | awk '{if
2008 Mar 04
1
Several changes missing from [HEAD] fileflags.diff
Looking at http://rsync.samba.org/ftp/rsync/patches/fileflags.diff -- It looks like the changes from fileflags-fixes.diff patch were applied to the patch from http://rsync.samba.org/ftp/rsync/rsync-patches-3.0.0.tar.gz , but this entire chunk of the that original diff file was lost: > diff -up a/config.h.in b/config.h.in > --- a/config.h.in > +++ b/config.h.in > @@ -64,6 +64,9 @@
2003 Apr 08
3
Automating cupsaddsmb or some alternative
I am developing a print server for a client, and I need to make the ability to add and configure print servers as simple as possible. So far, cups and samba are top notch, but there are two problems I have. One, I need to restart the samba service every time I add a printer. Two, I need to log in via console or SSH to run cupsaddsmb, and I need to then authenticate. I was wondering if there was
2004 Jan 05
0
No subject
2000) into dos, and with your boot disk, read the share listing of machine A from a linux box and mount it, and the rsync the whole drive if shared (say c:\ with c:\winnt and all the good stuff). Though, i still could NOT actually restore this 'mirror' image like i could a 'mirror' image of a linux root?? So, ultimately, there is no reason to even waste the hard-drive space
2008 Mar 02
2
DO NOT REPLY [Bug 5298] New: xattrs and acls do not work well together along with fake-super, even worse on XFS
https://bugzilla.samba.org/show_bug.cgi?id=5298 Summary: xattrs and acls do not work well together along with fake-super, even worse on XFS Product: rsync Version: 3.0.0 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo:
2002 Nov 14
0
Reason for slow MS-DOS MS client writes
The low speed of writes with the MS-DOS, MS newtworking client has to do with the limit of MAXSENDSIZE (from TCPUTILS.INI) By default, the value is 1024, but the maximum value is 2048. If this value is not set to the same as the Samba server's SO_RCVBUF, then performence will suffer GREATLY. We had a Windows system hosting Norton Ghost images, but it took a dive, and our company has