From owner-freebsd-questions@FreeBSD.ORG Mon Aug 30 20:44:45 2004 Return-Path: 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 BD7C916A4CE for ; Mon, 30 Aug 2004 20:44:45 +0000 (GMT) Received: from chylonia.3miasto.net (chylonia.3miasto.net [213.192.74.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3292443D5E for ; Mon, 30 Aug 2004 20:44:44 +0000 (GMT) (envelope-from wojtek@tensor.3miasto.net) Received: from chylonia.3miasto.net (wojtek@localhost [127.0.0.1]) i7UKig3l015588; Mon, 30 Aug 2004 22:44:42 +0200 (CEST) (envelope-from wojtek@tensor.3miasto.net) Received: from localhost (wojtek@localhost)i7UKiZ50015583; Mon, 30 Aug 2004 22:44:41 +0200 (CEST) (envelope-from wojtek@tensor.3miasto.net) X-Authentication-Warning: chylonia.3miasto.net: wojtek owned process doing -bs Date: Mon, 30 Aug 2004 22:44:35 +0200 (CEST) From: Wojciech Puchar X-X-Sender: wojtek@chylonia.3miasto.net To: Fernan Aguero In-Reply-To: <20040830141749.GA534@iib.unsam.edu.ar> Message-ID: <20040830223906.Y15234@chylonia.3miasto.net> References: <20040830141749.GA534@iib.unsam.edu.ar> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD Questions Subject: Re: maximum hard drive capacity supported? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 20:44:45 -0000 > > Upon trying to buy a new hard drive (80 GB) I was asked > about the capabilities of my system, and I just thought that > these were needed to tell what kind the IDE (ATA) > capabilities. However, the vendor said that depending on the > BIOS the system might not be able to recognize a large disk. BIOS is only needed to boot. FreeBSD then drives it without BIOS there are 3 possibilities: 1) BIOS just supports whole drive. nothing special needed 2) BIOS can't support the whole drive, it detects as much smaller one. solution: install system with separate /boot partition that fits in the range that BIOS supports. after booting FreeBSD will get whole disk 3) BIOS hangs completely trying to drive your disk. rare case but i have this with P133 machine with 80GB disk. machine runs NetBSD, and i boot kernel from floppy, then NetBSD supports whole drive. with FreeBSD it could be difficult to fit kernel on floppy but it is possible if you will compile yours with minimal set of drivers (but including disk) and then load modules from disk by startup scripts. my custom kernel compresses to 977000 bytes, loader takes 237568 bytes so it could fit. unfortunately i don't have enough FreeBSD knowledge now to tell you how prepare such floppy.