From owner-freebsd-questions Sun Jan 11 22:53:44 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA07222 for questions-outgoing; Sun, 11 Jan 1998 22:53:44 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from andrsn.stanford.edu (root@andrsn.Stanford.EDU [36.33.0.163]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA07213 for ; Sun, 11 Jan 1998 22:53:41 -0800 (PST) (envelope-from andrsn@andrsn.stanford.edu) Received: from localhost (andrsn@localhost.stanford.edu [127.0.0.1]) by andrsn.stanford.edu (8.8.8/8.6.12) with SMTP id WAA08571; Sun, 11 Jan 1998 22:38:44 -0800 (PST) Date: Sun, 11 Jan 1998 22:38:43 -0800 (PST) From: Annelise Anderson To: "Michael T. Gray, met" cc: freebsd-questions@FreeBSD.ORG Subject: Re: Poof.... it's gone?? In-Reply-To: <34B9B02F.E6B@dmi.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 11 Jan 1998, Michael T. Gray, met wrote: > Hi, > Managed to get my first server up just a couple days ago. Asked > everyone about FTP Serving software for webpages to customers. One of > the most frequent suggestions was wu-ftpd. I downloaded, installed ran > the Make utility, looks like everything worked fine. Now where did that > file go? I am still having a bit of trouble understanding where files > are going and why. I know DOS very well, UNIX is still new (~ week). > > Thanks in advance, MTG It sounds like you downloaded the port and ran "make install". If so you have the ports files somewhere: a wu-ftpd directory with a "pkg" subdirectory. In this subdir is a file called PLIST, which is a list of the files the port installs, by default in /usr/local. Note in this case (not the only one) there are two binaries with the same name--/usr/libexec/ftpd and /usr/local/libexec/ftpd. Which one runs depends on what you've got in inetd.conf. If the binary runs from the command line and there are binaries with the same name in both /usr/bin and /usr/local/bin, which would happen if you installed a port of perl (version 5.something, e.g.,), which one runs depends on what's in the user's path statement and the order of the directories there. The PLIST file will also tell you what other files (configuration files, for example) got installed. Annelise