From owner-freebsd-questions Sat Feb 3 12:38:28 2001 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 5638337B491 for ; Sat, 3 Feb 2001 12:38:11 -0800 (PST) Received: from [212.238.77.116] (helo=gateway.raggedclown.net) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 14P9Rh-0002o9-00; Sat, 03 Feb 2001 20:38:09 +0000 Received: from buffy.raggedclown.net (buffy.raggedclown.intra [192.168.1.2]) by gateway.raggedclown.net (Ragged Clown Gateway) with ESMTP id 6EDAF337B3; Sat, 3 Feb 2001 21:18:29 +0100 (CET) Received: by buffy.raggedclown.net (Ragged Clown Mailhost, from userid 500) id 82FC712C4F; Sat, 3 Feb 2001 21:18:28 +0100 (CET) Date: Sat, 3 Feb 2001 21:18:28 +0100 From: Cliff Sarginson To: Chris Byrnes Cc: questions@FreeBSD.ORG Subject: Re: tcsh.static vs. tcsh Message-ID: <20010203211828.A4815@raggedclown.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from chris@JEAH.net on Sat, Feb 03, 2001 at 11:11:41AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Feb 03, 2001 at 11:11:41AM -0600, Chris Byrnes wrote: > /sbin/tcsh.static is the root shell on my machine.. Whats the difference > between that and regular tcsh? > Generaly an executable can be linked to use shared libraries, or to have the functions it needs from those libraries statically linked in. Essentially a static image is self-contained and can be run without reference to anything else. A shared lib image needs to access the libraries which may be on other parts of the file systems in order to run. When you boot single user access to these shared libaries may not be available. In this case only statically linked programs can be run. Ergo, this allows you to use the tcsh in such modes. Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message