Displaying 20 results from an estimated 7000 matches similar to: "Initial debug of client - Need command line help"
2003 Oct 12
7
rsync.h always including syslog.h even when not used.
Hello,
rsync.h is always including the syslog.h file, even though it is only
used when the LOG_DAEMON macro is defined.
Could someone change it to be as follows:
#ifdef LOG_DAEMON
#include <syslog.h>
#endif
OpenVMS currently does not have a syslog facility, so it does not have a
syslog.h.
Thank you,
-John
wb8tyw@qsl.net
Personal Opinion Only
2002 Jan 02
3
2.5.1pre3 - Bugs in configure script / config.h.in breaks build.
Compaq C 6.5
OpenVMS Alpha 7.3
The config.h.in template file is missing the line:
#undef HAVE_INET_NTOP
This caused the resulting CONFIG.H on OpenVMS to not test for the
existance of the inet_ntop() routine in it's system tables.
This configure bug exposed that the prototype in inet_ntop() in RSYNC.H
does not match the one in the Compaq C header files. This stopped the
build. I am
2002 Jul 21
5
superlifter design notes (OpenVMS perspective)
> Qualities
>
> 1. Be reasonably portable: at least in principle, it should be
> possible to port to Windows, OS X, and various Unixes without major
> changes.
In general, I would like to see OpenVMS in that list.
> Principles
>
> 1. Clean design rather than micro-optimization.
A clean design allows optimization to be done by the compiler, and tight
optimization
2002 Jan 07
2
rsync-2.5.1 / popt patches
The following popt files need patches in order to compile using Compaq C
on OpenVMS. These patches should also be needed on a Tru64 or LINUX on
ALPHA using Compaq C. Except for the alloca issue, these should work on
any ANSI compliant compiler.
Operating System: OpenVMS ALPHA V7.3
Compiler: Compaq C T6.5
Compiler switches: /WARN=ENABLE=(LEVEL4, QUESTCODE)
SYSTEM.H is doing tests on
2020 Jun 11
2
Patches for OpenVMS && Samba4
Refer to this:
https://legacyos.org/vsi-introduces-new-samba-release/
I noticed that VSI, the new owners of VMS, have created a package for
Samba4 under OpenVMS. I also notice the samba-vms list appears to be
abandoned (for years). So, I apologize for posting here on the general
list, but it seemed fruitless trying the dedicated list.
I am under the impression that the GPL v3 compels all
2001 Aug 14
1
malloc() with out free() in popt (2.4.7pre)
I am still chasing this down, but in doing the build for OpenVMS,
I have discovered that one of the popt modules is using HAVE_ALLOCA_H
to determine if the alloca function is on a platform.
That is not a good assumption. Compaq C does have an alloca() built in
(slightly different symbol name, I assume because of symbol naming rules
in the C standard.)
Because alloca is a non-standard
1999 Jul 16
5
Samba for VMS
I just installed Samba for VMS (1.9.17p4) on a DecServer 1000A running VMS
7.1
The University Network is primarily NT Server 4.0 SP5. My experience is
with Netware and NT, not with VMS, but I have the luck of supporting the
system.....
My main question is about Encrypted Passwords.....Does this release of Samba
support them, or do I have to modify the clients who want access to our
Alpha to
2002 Nov 15
2
SPAM on List...
Re: Per the discussions about spam on this list.
Sending a confirming message to an unregistered poster is not a good
idea. The return/reply-to addresses in spam is forged, and that is just
adding to some victims e-mail.
Filtering runs the risk that a legitimate message gets lost, and the
sender does not realize it.
Filtering is also the most expensive and innefficient way to deal with
2005 Feb 13
2
#include <inttypes.h> missing for 64 bit integers.
The Open Group Single Unix standard shows that the data types int64 and
uint64 are defined in the inttypes.h header file.
Rsync is not including this file, nor is there a feature test for this
header file in the configure phase, but rsync is using these data types.
-John
wb8tyw@qsl.net
Personal Opinion Only
2002 Feb 05
3
Doubt in Rsync !!
Sir,
How to run the rsync server in the remote machine.
I want to mirror the set of directories from one machine to another
machine
which are in the network.
I used the following command :
/usr/sbin/rsync -vv --delete --recursive --times --perms --update
source directory
destinationmachine:destination directory.
I got the error:
Permission denied.
How to tackle this error ?
thanks
laks
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch is an update to a previous patch that I submitted.
The only change from the previous patch is that the const qualifier has
been added to write_batch_*() routines to improve compiler efficiency.
Because the gdiff -u was done against the distribution it includes the
previous patch.
The functions with no parameters
2002 Oct 29
1
configuration question.
Your users have rsh access to the machine, and are getting wherever they
want, using the server:/path syntax.
if they were using the server::module syntax, they would be restricted to
only what's provided by the modules. If you don't want them getting
everything all over the system, you will need to prevent shell access.
Tim Conway
conway.tim@sphlihp.com reorder name and reverse
2002 May 16
4
rsynch related question
Hello,
I had a question on rsynch'ing, please do help me on this,
I have scenario where,I need to synch the two softwares, where both
the software are across the network, on different cells( AFS cells).
For ex: first1 - /afs/tr/software , second1 - /afs/ddc/software
Both the softwares are same & fist1 cell will be constantly
updating and I need to synch this
1999 Dec 27
2
help needed with smbclient with broken pipe
I am getting the following error from smbclient and am not sure as where the
problem is.
smb: \gcc\> dir
write_socket_data: write failure. Error = broken pipe
write_socket: Error writing 91 bytes to socket 3: ERRNO = broken pipe
failed session setup
Error writing 91 bytes to client. -1. Exiting
This appears to be happening about a minute after I establish a session. Up
until that time file
2003 Oct 28
4
simple compile
I could not find this question anywhere, but I apologize if it is and I
just missed it.
Running an Alpha, OSF1 V5.1 1885
configure went fine.
compile failed:
cc -I. -I. -g -DHAVE_CONFIG_H -I./popt -c lib/getaddrinfo.c -o
lib/getaddrinfo.o
cc: Error: lib/getaddrinfo.c, line 182: In this statement, "EAI_MAX" is
not declared. (undeclared)
if (ecode < 0 || ecode > EAI_MAX)
2002 Jul 27
1
superlifter design notes (was Re: ...
> From: jw schultz <jw@pegasys.ws.invalid>
>
> On Fri, Jul 26, 2002 at 09:03:32AM -0400, Bennett Todd wrote:
>
>>2002-07-26-03:37:51 jw schultz:
>>
>>>All that matters is that we can represent the timestamps in
>>>a way that allows consistent comparison, restoration and
>>>transfer.
>>
>>A very good statement indeed. There are
2002 Nov 13
4
getaddrinfo: Host not found problem
Hello,
I am trying to use rsync (version 2.5.5) in a server client
model to distribute software files. When I kick off the
rsync client on an AIX 4.3.3 pwr3 platform, I get the
following error message. We are in a real bind to get this
protocol going; any help/insight/suggestions would be
"greatly" appreciated.
rsync: getaddrinfo: grp4c 873: Host not found
rsync error: error in
2001 Dec 15
1
Newbe....
I'm just starting out with rsync and having the following problems: I'm
getting autorization errors when I try to fire up a transfer between two
e250's. I would like to basically mirror users between two systems.
I've used the basic format that has been stipulated in the doc's still
having problems
Joe Despres
jdespres@csc.com
2002 Apr 16
3
Update: WARNING: --rsh or -e option ignored when connecting to rsyncdaemon]
the --pasword-file= option is only for passing a password to a rsync
server, as you have set up with the rsync --daemon process. Your
rsyncd.conf file is fine, too. The problem is that you aren't calling
your rsync daemon from your commandline. You are trying to connect via
rsync to host as axlink and start a 'rsync --sender' process, to transfer
data within the ssh process.
2001 Oct 23
1
Connection Timeout
This is my first post so first of all I will say hello to everyone.
I have rsync configured and working properly on my local network however
when I try to connect from a remote host (one located in a different state)
the connection times out. I was wondering if there was another way to set
the timeout besides in the rsyncd.conf file?
As I said the connection works fine on the internal lan, but