From owner-freebsd-current@FreeBSD.ORG Thu Nov 20 12:54:34 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6957316A4CE for ; Thu, 20 Nov 2003 12:54:34 -0800 (PST) Received: from smtp.noos.fr (nan-smtp-16.noos.net [212.198.2.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54D3F43FB1 for ; Thu, 20 Nov 2003 12:54:32 -0800 (PST) (envelope-from boyd@insultant.net) Received: (qmail 26412 invoked by uid 0); 20 Nov 2003 20:54:30 -0000 Received: from unknown (HELO coma) ([81.64.132.185]) (envelope-sender ) by 212.198.2.124 (qmail-ldap-1.03) with SMTP for ; 20 Nov 2003 20:54:30 -0000 Message-ID: <050d01c3afa8$1dfb97a0$b9844051@insultant.net> From: "boyd, rounin" To: References: <2147483647.1069240727@[192.168.42.6]> <20031120095214.GA68334@server.vk2pj.dyndns.org> Date: Thu, 20 Nov 2003 21:51:48 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Re: Unfortunate dynamic linking for everything X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2003 20:54:34 -0000 From: "Peter Jeremy" > >Shouldn't that be 'chmod +t /bin/sh' ??? > > Definitely. Why waste a new bit when there's already a perfectly good > one that is (or was) defined for the purpose. the 't' bit was known as the 'sticky' bit to keep frequently used, sharable (judged by a human) text segments in core. since then that bit has been overloaded to death. shared libraries have always been a mistake. one clear reason is that it caused a dichotomy of binaries; static vs dynamically linked. think about a dynamically linked init(8) ...