From owner-freebsd-questions@FreeBSD.ORG Tue Sep 13 21:41:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86E0E16A41F for ; Tue, 13 Sep 2005 21:41:03 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBC3D43D5F for ; Tue, 13 Sep 2005 21:41:01 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [80.192.58.55] ([80.192.58.55]) by smtp-out2.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713); Tue, 13 Sep 2005 22:41:49 +0100 Message-ID: <4327476C.3040107@dial.pipex.com> Date: Tue, 13 Sep 2005 22:41:00 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.11) Gecko/20050903 X-Accept-Language: en-us, pl MIME-Version: 1.0 To: Martin McCormick References: <200509132059.j8DKxAhn016922@dc.cis.okstate.edu> In-Reply-To: <200509132059.j8DKxAhn016922@dc.cis.okstate.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 13 Sep 2005 21:41:49.0999 (UTC) FILETIME=[F2A8BBF0:01C5B8AB] Cc: freebsd-questions@freebsd.org Subject: Re: I've Created a Permission Problem which Baffles Me. 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: Tue, 13 Sep 2005 21:41:03 -0000 Martin McCormick wrote: >On this particular system, the /var and /var/tmp directories certainly >look like they do on other FreeBSD systems that don't have this >problem. > >Script started on Tue Sep 13 15:36:59 2005 >bash-2.05b$ cd / >bash-2.05b$ ls -ld var >drwxr-xr-x 20 root wheel 512 Aug 31 14:44 var >bash-2.05b$ ls -ld /var/tmp >drwxrwxrwT 3 root wheel 512 Nov 11 2004 /var/tmp > > Looks to me like you've taken away x bit for other (otherwise the t would be lower case). x permission on directories allows you to search that directory. Try chmod o+x /var/tmp (as root). --Alex