in reply to Net FTPServer

I found this by googling the error message: http://archives.postgresql.org/pgsql-ports/1998-06/msg00005.php.

Basically, the author's install works differently. The fix in the above case was to change Makefile definitions which look like:

INSTLOPTS= -c -m 444 INSTL_EXE_OPTS= -c -m 555 INSTL_LIB_OPTS= -c -m 644
to:
INSTLOPTS= -m 444 -c INSTL_EXE_OPTS= -m 555 -c INSTL_LIB_OPTS= -m 644 -c

Replies are listed 'Best First'.
Re^2: Net FTPServer
by YGP (Acolyte) on Mar 14, 2008 at 12:27 UTC
    Hi, thansk for the reply, I did a work around here, tried to install it without installing config file, later I copied the ftpd.conf file to the location where it should be ( /etc) and started the server, It worked............Thanks a lot for your help.