From owner-freebsd-questions@FreeBSD.ORG Tue Mar 4 00:20:26 2008 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 66C57106566B for ; Tue, 4 Mar 2008 00:20:26 +0000 (UTC) (envelope-from modulok@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by mx1.freebsd.org (Postfix) with ESMTP id 2FAB98FC2B for ; Tue, 4 Mar 2008 00:20:26 +0000 (UTC) (envelope-from modulok@gmail.com) Received: by wr-out-0506.google.com with SMTP id c49so36007wra.19 for ; Mon, 03 Mar 2008 16:20:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=nPGtpixcESbvhByT7Z36DaeykogNhG8vDgA3asIPJOU=; b=OHRmvvNpTFoQu5JNQMFP3ZpNIwZfyJQuahK83k4sYbGx3mWaSQILEB/qNlMAchOlu9H/i08OjmP2BtBB4fA2kOuW3iV0fRKQqrkXDutCKWSJy60BMlaEYCENQj/CEV1eJEUTX089P0t21puUyTfvGXrud3SQ4AGlrxHeOBb8BKw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gFsJUXSafJYm1o9Kq7G/pCdVPmpYq0fMVF6R+FXVC9cbECniWIgSqhLHrvaZn2znIVtiIBkIwd49sRmrnKKV7JeqH1thxspz9Kk3pVpVLP0dnLuXhCIQP8a+vyPyxvcUxHn3FfkF1YW5Vk0D8cUdUlFUO++cQ41Zz4WrThq3xBg= Received: by 10.100.121.12 with SMTP id t12mr523272anc.113.1204590025306; Mon, 03 Mar 2008 16:20:25 -0800 (PST) Received: by 10.70.70.2 with HTTP; Mon, 3 Mar 2008 16:20:25 -0800 (PST) Message-ID: <64c038660803031620x5ed7213r660c23d180512bce@mail.gmail.com> Date: Mon, 3 Mar 2008 17:20:25 -0700 From: Modulok To: comperr In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Cc: freebsd-questions@freebsd.org Subject: Re: HDD missing from sysinstall 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, 04 Mar 2008 00:20:26 -0000 I had a missing hard drive on a FreeBSD box that had a single IDE drive that was incorrectly jumpered. After I switched the jumper on the disk controller, everything was correctly detected by the device probe. (This shouldn't be an issue on SATA drives though.) Something you might try before looking into hardware issues, is to use a liveCD such as Freesbie (available in the ports collection sysutils/freesbie), boot to the liveCD and use dd(1) to entirely obliterate the first few sectors of the disk, nuking the the master boot record. That is, if the device probe on the liveCD detects the disk. (Perhaps use an older version.) This will make any previous data on the disk inaccessible, but if a really corrupt master boot record in concert with a funky BIOS are at fault, this would resolve the issue. You could then use sysinstall to install a new master boot record and so forth. The command would look something like this: dd if=/dev/zero of=/dev/ad0 bs=512 count=1 # Nuke the master boot record. Replace 'ad0' with the appropriate device. # IMPORTANT: This will make the disk not bootable. Just a thought. -Modulok- On 3/1/08, comperr wrote: > Just to add I am using an MSI P6N SLI plat. motherboard > > On Mar 1, 10:28 pm, comperr wrote: > > When I put in my fbsd 6.3 or 7.0 install disk sysinstall is unable to > > detect any of the hard drives in my computer. > > > > This is includes SATA and IDE HDDs in varying orders. BIOS is able > > to detect the the hard drives. I Previously had fbsd 6.2 installed > > on them and the problem started when I upgraded the kernel to 6.3 > > although I don't see my upgrades relevance as I have tried to > > reinstall from a clean disk since then. > > _______________________________________________ > > freebsd-questi...@freebsd.org mailing > listhttp://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > "freebsd-questions-unsubscr...@freebsd.org" > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >