From owner-freebsd-newbies@FreeBSD.ORG Sun Jul 18 17:06:16 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C4EF16A4CE for ; Sun, 18 Jul 2004 17:06:16 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1F0843D39 for ; Sun, 18 Jul 2004 17:06:15 +0000 (GMT) (envelope-from freebsd@nbritton.org) Received: from nbritton.org (12-203-241-116.client.insightbb.com[12.203.241.116]) by sccimhc92.asp.att.net (sccimhc92) with SMTP id <20040718170614i9200q1qdje>; Sun, 18 Jul 2004 17:06:15 +0000 Message-ID: <40FAAE00.4030803@nbritton.org> Date: Sun, 18 Jul 2004 12:06:08 -0500 From: Nikolas Britton User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Josh Ockert , freebsd-newbies@freebsd.org References: <200407181213.i6ICDYPB015830@eastgate.starhub.net.sg> <126eac4804071808593b74c22b@mail.gmail.com> In-Reply-To: <126eac4804071808593b74c22b@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Trouble installing OpenOffice 1.1.2 on 4.10 X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2004 17:06:16 -0000 >try >#chmod +x setup >and *then* >#./setup -net >That's the only thing I can think of -- that setup is a script or >something and not set to be executable. > yea try what he says... check that the script is executable using the ls command "ls -alF" (or just use "ll", an alias of ls for "long list" ) look for your file and then look to the left to make sure the x (executable) bit is set. if its not run "chmod +x setup", "chmod 777 setup", etc. to make the file executable. and if "./setup -net" still isn't workin try something like "sh ./setup -net" or "sh %full path name%/setup -net". Now would be a good time to read the man pages for ls, and chmod, and man..."man ls", "man chmod", and "man man". BTW why are you trying to do a network install (setup -net)?