From owner-freebsd-questions@FreeBSD.ORG Thu Sep 16 13:37:46 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34642106566C for ; Thu, 16 Sep 2010 13:37:46 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from mx.utwente.nl (mx2.utsp.utwente.nl [130.89.2.13]) by mx1.freebsd.org (Postfix) with ESMTP id AAF3D8FC13 for ; Thu, 16 Sep 2010 13:37:45 +0000 (UTC) Received: from pieter-dev.localnet (lux.student.utwente.nl [130.89.161.112]) by mx.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id o8GDbbfE030734; Thu, 16 Sep 2010 15:37:37 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Thu, 16 Sep 2010 15:27:50 +0200 User-Agent: KMail/1.13.5 (Linux/2.6.32-5-amd64; KDE/4.4.5; x86_64; ; ) References: <4C907918.7090609@gmail.com> <4C90D141.9060603@gmail.com> In-Reply-To: <4C90D141.9060603@gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201009161527.50430.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact icts.servicedesk@utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Gholam Mostafa Faridi , freebsd-emulation@freebsd.org, Edho P Arief Subject: Re: virtaullBox AMD64 32bit lib 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: Thu, 16 Sep 2010 13:37:46 -0000 On Wednesday 15 September 2010 15:59:29 Gholam Mostafa Faridi wrote: > On 09/15/2010 13:00, Edho P Arief wrote: > > sh install.sh > > I download all file and go to download directory and run that command , > for first time I do not see error and do not see messages , but when I > run that sh install.sh again I see this error > > "mfaridipc# sh install.sh > > ./usr/lib32/libc.so.7: Could not unlink > ./usr/lib32/libcrypt.so.5: Could not unlink > ./usr/lib32/librt.so.1: Could not unlink > ./usr/lib32/libthr.so.3: Could not unlink > ./libexec/ld-elf32.so.1: Could not unlink > tar: Error exit delayed from previous errors." > > and problem do not solve These files have the schg flag set (see chflags(1)). This means the files are immutable. Try removing the schg flag first: # chflags noschg /usr/lib32/libc.so.7 - Pieter