From owner-freebsd-questions@FreeBSD.ORG Fri Feb 24 15:33:22 2012 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 DB8B7106564A for ; Fri, 24 Feb 2012 15:33:22 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 94DAE8FC12 for ; Fri, 24 Feb 2012 15:33:22 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q1OFXLo9096863; Fri, 24 Feb 2012 08:33:21 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q1OFXLTM096860; Fri, 24 Feb 2012 08:33:21 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Fri, 24 Feb 2012 08:33:21 -0700 (MST) From: Warren Block To: Omer Faruk SEN In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Fri, 24 Feb 2012 08:33:21 -0700 (MST) Cc: freebsd-questions@freebsd.org Subject: Re: 8.3-BETA1 installation problem 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: Fri, 24 Feb 2012 15:33:22 -0000 On Fri, 24 Feb 2012, Omer Faruk SEN wrote: > Already done that but still habe the same issue. I can dd and sysctl but > after installing without using W at disk label screen still no luck. I have > also done > sysctl kern.geom.debugflags=16 on fixit and restarted installation but > still getting the same error. [Please don't top-post, it makes responding more difficult.] >> If you need to clear the old MBR the "old way", use a LiveFS or Fixit shell >> and do this (as root): >> >> sysctl kern.geom.debugflags=16 and: >> >> dd if=/dev/zero of=/dev/adx oseek=1 bs=512 count=1 The sysctl is not necessary. The dd may not erase enough of the disk. It will erase a bsdlabel, but not the MBR/PMBR. As always, be warned that this will erase the partition table on that disk, so make sure it's the correct target disk and that you have full backups: dd if=/dev/zero of=/dev/adX bs=512 count=34 Replace X with the correct drive number.