From owner-freebsd-questions@FreeBSD.ORG Fri Dec 1 19:47:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BAC316A4D1 for ; Fri, 1 Dec 2006 19:47:48 +0000 (UTC) (envelope-from jnatola@familycareintl.org) Received: from mail.familycareintl.org (mail.familycareintl.org [68.167.21.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BBC343CBF for ; Fri, 1 Dec 2006 19:47:30 +0000 (GMT) (envelope-from jnatola@familycareintl.org) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 1 Dec 2006 14:47:45 -0500 Message-ID: <3A85D7EF44E1C744BF6434691F5659E9B55E1C@www.fcimail.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: SYMLINK Thread-Index: AccVeY/dL6XJLNcxQguhRQCRkldL6gAB/UiQ From: "Jean-Paul Natola" To: "Christian Walther" Cc: freebsd-questions@freebsd.org Subject: RE: SYMLINK X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Dec 2006 19:47:48 -0000 Make sure that your exim data really resides in /usr/var2/exim. Afterwards, remove /var/spool/exim. The ln command won't remove any existing files and directories, but it doesn't complain in this case. And then you have to take care where you specify source and destination: The source is an existing file or directory, while the destination is the directory that should contain the link. Source is first, destination follows. In your case, the command should = be: ln -s /usr/var2/exim /var/spool/exim HTH Christian Thanks everyone, that did it=20