Implementing Hard Drives 10

Total Page:16

File Type:pdf, Size:1020Kb

Implementing Hard Drives 10 All-in-1 / A+ Certification Exm Gde, 6th Ed. / Meyers / 6311-3 CHAPTER Implementing Hard Drives 10 In this chapter, you will learn how to • Explain the partitions available in Windows • Discuss the formatting options • Partition and format hard drives • Maintain and troubleshoot a hard drive From the standpoint of your PC, a new hard drive successfully installed is nothing more than a huge pile of sectors. CMOS sees the drive; it shows up in your autodetect screen and BIOS knows how to talk to the drive; but as far as an operating system is concerned, that drive is unreadable. Your operating system must organize that big pile of sectors so you can create two things: folders and files. This chapter covers that process. Historical/Conceptual After you’ve successfully installed a hard drive, you must perform two more steps to translate a drive’s geometry and circuits into something usable to the system: partition- ing and formatting. Partitioning is the process of electronically subdividing the physical hard drive into groups of cylinders called partitions (or volumes). A hard drive must have at least one partition, and you can create multiple partitions on a single hard drive if you wish. In Windows, each of these partitions typically is assigned a drive letter such as C: or D:. After partitioning, you must format the drive. This step installs a file system onto the drive that organizes each partition in such a way that the operating system can store files and folders on the drive. Several different types of file systems are used in the Windows world. This chapter will go through them after covering partitioning. The process of partitioning and formatting a drive is one of the few areas remaining on the software side of PC assembly that requires you to perform a series of fairly com- plex manual steps. The CompTIA A+ certification exams test your knowledge of what these processes do to make the drive work, as well as the steps needed to partition and format hard drives in Windows 2000/XP. This chapter continues the exploration of hard drive installation by explaining par- titioning and formatting and then going through the process of partitioning and for- matting hard drives. The chapter wraps with a discussion on hard drive maintenance and troubleshooting issues. 343 cch10.inddh10.indd 334343 111/26/20061/26/2006 110:55:230:55:23 AAMM All-in-1 / A+ Certification Exm Gde, 6th Ed. / Meyers / 6311-3 CompTIA A+ Certification All-in-One Exam Guide 344 Hard Drive Partitions Partitions provide tremendous flexibility in hard drive organization. Partitions enable you to organize a drive in a way that suits your personal taste. For example, I partitioned my 500-GB hard drive into a 150-GB partition, where I store Windows XP and all my programs, and a 350-GB partition, where I store all my personal data. This is a matter of personal choice—in my case, it makes backups simpler because the data is stored in one partition, and that partition alone can be backed up without including the applications. Partitioning enables a single hard drive to store more than one operating system (OS). One OS could be stored in one partition and another OS stored in a second, for example. Granted, most people use only one OS, but if you want to choose to boot Windows or Linux, partitions are the key to enabling you to do so. Windows 2000 and XP support two different partitioning methods: the older but more universal master boot record (MBR) partitioning scheme and the newer (but pro- prietary to Microsoft) dynamic storage partitioning scheme. Microsoft calls a hard drive that uses the MBR partitioning scheme a basic disk and a drive using the dynamic storage partitioning scheme a dynamic disk. A single Windows system with two hard drives may have one of the drives partitioned as a basic disk and the other as a dynamic disk, and the system will run perfectly well. The bottom line? You get to learn about two totally differ- ent types of partitioning! Yay! Given that basic disks are much older, we’ll start there. Basic Disks Basic disk partitioning creates two very small data structures on a drive, the master boot record (MBR) and a partition table, and stores them on the first sector of the hard drive— called the boot sector. The MBR is nothing more than a tiny bit of code that takes control of the boot process from the system BIOS. When the computer boots to a hard drive, BIOS automatically looks for MBR code on the boot sector. The MBR has only one job: to look in the partition table for a partition with a valid operating system (Figure 10-1). Figure 10-1 Functions of the MBR and partition table cch10.inddh10.indd 334444 111/26/20061/26/2006 110:55:350:55:35 AAMM All-in-1 / A+ Certification Exm Gde, 6th Ed. / Meyers / 6311-3 Chapter 10: Implementing Hard Drives 345 NNOTEOTE Only one MBR and one partition table exist per basic disk. All basic disk partition tables support up to four partitions. The partition table sup- ports two types of partitions: primary partitions and extended partitions. Primary partitions are designed to support bootable operating systems. Extended partitions are not bootable. A single basic disk may have up to three primary partitions and one extended partition. If you do not have an extended partition, you may have up to four primary partitions. Each partition must have some unique identifier to enable users to recognize it as an individual partition. Microsoft operating systems (DOS and Windows) traditionally assign primary partitions a drive letter from C: to Z:. Extended partitions do not get drive letters. After you create an extended partition, you must create logical drives within that extended partition. A logical drive traditionally gets a drive letter from D: to Z:. (The drive letter C: is always reserved for the first primary partition in a Windows PC.) Windows 2000 and Windows XP partitions are not limited to drive letters. With the exception of the partition that stores the boot files for Windows (which will always be C:), any other primary partitions or logical drives may get either a drive letter or a folder on a primary partition. You’ll see how all of this works later in this chapter. If a primary partition is a bootable partition, then why does a basic drive’s partition table support up to four primary partitions? Remember when I said that partitioning allows multiple operating systems? This is how it works! You can install up to four dif- ferent operating systems, each OS installed on its own primary partition, and boot to your choice each time you fire up the computer. Every primary partition on a single drive has a special setting called active stored in the partition table. This setting is either on or off on each primary partition. At boot, the MBR uses the active setting in the partition table to determine which primary partition to choose to try to load an OS. Only one partition at a time can be the active partition, because you can run only one OS at a time (see Figure 10-2). Figure 10-2 The MBR checks the partition table to find the active partition. cch10.inddh10.indd 334545 111/26/20061/26/2006 110:55:360:55:36 AAMM All-in-1 / A+ Certification Exm Gde, 6th Ed. / Meyers / 6311-3 CompTIA A+ Certification All-in-One Exam Guide 346 The boot sector at the beginning of the hard drive isn’t the only special sector on a hard drive. The first sector of the first cylinder of each partition also has a special sector called the volume boot sector. While the “main” boot sector defines the partitions, the volume boot sector stores information important to its partition, such as the location of the OS boot files. Figure 10-3 shows a hard drive with two partitions. The first parti- tion’s volume boot sector contains information about the size of the partition and the code pointing to the boot files on this partition. The second volume boot sector con- tains information about the size of the partition. Figure 10-3 Volume boot sector NNOTEOTE Every partition on a hard drive has a volume boot sector. Primary Partitions If you want to boot an operating system from a hard drive, that hard drive must have a primary partition. The MBR checks the partition table for the active primary partition (see Figure 10-4). In Windows 2000/XP, the primary partition is C:, and that cannot be changed. cch10.inddh10.indd 334646 111/26/20061/26/2006 110:55:360:55:36 AAMM All-in-1 / A+ Certification Exm Gde, 6th Ed. / Meyers / 6311-3 Chapter 10: Implementing Hard Drives 347 Figure 10-4 The MBR checks the partition table to find a primary partition. NNOTEOTE Don’t confuse primary partition with primary controller. The latter, as you’ll recall from Chapter 9, refers to the first PATA drive controller on a motherboard. Even though hard drives support up to four primary partitions, you almost never see four partitions used in the Windows world. Both Windows 2000 and Windows XP support up to four primary partitions on one drive, but how many people (other than nerdy CompTIA A+ people like you and me) really want to boot up more than one OS? We use a number of terms for this function, but dual-boot and multiboot are the most common.
Recommended publications
  • Optimizing and Protecting Hard Drives ‐ Chapter # 9
    Optimizing and Protecting Hard Drives ‐ Chapter # 9 Amy Hissom Key Terms antivirus (AV) software — Utility programs that prevent infection or scan a system to detect and remove viruses. McAfee Associates’ VirusScan and Norton AntiVirus are two popular AV packages. backup — An extra copy of a file, used in the event that the original becomes damaged or destroyed. boot sector virus — An infectious program that can replace the boot program with a modified, infected version of the boot command utilities, often causing boot and data retrieval problems. buffer — A temporary memory area where data is kept before being written to a hard drive or sent to a printer, thus reducing the number of writes to the devices. chain — A group of clusters used to hold a single file. child, parent, grandparent backup method — A plan for backing up and reusing tapes or removable disks by rotating them each day (child), week (parent), and month (grandparent). cross-linked clusters — Errors caused when more than one file points to a cluster, and the files appear to share the same disk space, according to the file allocation table. defragment — To “optimize” or rewrite a file to a disk in one contiguous chain of clusters, thus speeding up data retrieval. differential backup — Backup method that backs up only files that have changed or have been created since the last full backup. When recovering data, only two backups are needed: the full backup and the last differential backup. disk cache — A method whereby recently retrieved data and adjacent data are read into memory in advance, anticipating the next CPU request.
    [Show full text]
  • Eyelink 1000 Installation Guide
    EyeLink® 1000 Installation Guide Tower, Desktop, LCD Arm, Primate, and Long Range Mounts Remote, 2000 Hz and Fiber Optic Camera Upgrades Version 1.5.0 Copyright ©2005-2009, SR Research Ltd. EyeLink is a registered trademark of SR Research Ltd., Mississauga, Ontario, Canada Read instructions before use. US Entela Safety Mark: Compliance of this product with UL 60950 3rd Edition, CSA C22.2 No 60950-00-CAN/CSA is certified by Entela, an independent testing body. C Certified CLASS 1 LED DEVICE IEC 60825-1 (Ed. 1.2:2001) CONTACT ADDRESS SR Research Ltd. 5516 Osgoode Main St., Ottawa, Ontario, Canada K0A 2W0 Fax: 613-482-4866 Phone: 613-826-2958 Toll Free: 1-866-821-0731 Email: [email protected] http://www.sr-research.com/ ii © 2005-2009 SR Research Ltd. Table of Contents 1. Introduction ....................................................................................................... 1 1.1 Suggested Equipment Layout ............................................................. 2 2. Installation and System Cabling .................................................................. 4 2.1 Unpacking ......................................................................................... 4 2.2 Display PC Hardware Installation ....................................................... 4 2.3 Setting up the Host PC ....................................................................... 5 2.3.1 Rebuilding the Host PC ............................................................................... 6 2.4 Host PC Wiring .................................................................................
    [Show full text]
  • Solarblizzard
    Security Now! Transcript of Episode #800 Page 1 of 27 Transcript of Episode #800 SolarBlizzard Description: This week we open the New Year taking a longer look at fewer topics since the bad guys were apparently enjoying their New Year holiday, too. So we look at an interesting kludge that's been forced upon Chrome by ill-mannered antiviral scanners. We need to warn all enterprise users of Zyxel network border security products of another recently discovered built-in backdoor. We look at the rise in IoT compromise swatting attacks and a series of new flaws and vulnerabilities in the PHP Zend and Yii frameworks. We have a quick bit of miscellany to share, then I want to explain a lot about the value of trimming SSDs and newer SMR drives. And we'll conclude by catching up with what will hopefully be the last news, for a while at least, of the disastrous SolarWinds breach and intrusions. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-800.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-800-lq.mp3 SHOW TEASE: It's time for Security Now!. Steve Gibson is here with a defunct football; a very bad AV security practice that Chrome has had to do something maybe even worse to fix. We'll talk about the built-in password access in 100,000 Zyxel firewalls, VPN gateways, and access point controllers; an update on SpinRite 6.1; and a whole lot more. Security Now! is coming up next.
    [Show full text]
  • FWB's Guide to Storage
    GtoS 2nd Ed. Book Page i Friday, March 27, 1998 12:05 PM FWB’s Guide to Storage Second Edition GtoS 2nd Ed. Book Page ii Friday, March 27, 1998 12:05 PM Copyright Notice This manual is copyrighted by FWB Software, LLC (FWB) with all rights reserved. Your rights with regard to this manual are subject to the restrictions and limitations imposed by the copyright laws of the United States of Amer- ica. Under the copyright laws, this manual may not be copied, reproduced, translated, transmitted or reduced to any printed or electronic medium or to any machine-readable form, in whole or in part, without the written consent of FWB. © 1991, 1996 By FWB Software, LLC December 1996 Part No.: 07-00841-201 GtoS 2nd Ed. Book Page iii Friday, March 27, 1998 12:05 PM Trademarks Hard Disk ToolKit, RAID ToolKit, SpaceMaker ToolKit, and CD-ROM Tool- Kit are trademarks of FWB Software, LLC. FWB is a registered trademark of FWB Software, LLC. All brand and product names are trademarks or registered trademarks of their respective holders. Credits This guide was written by Norman Fong with help from Joan Carter, Steve Dalton, Bruce Dundas, Eric Herzog, Al Pierce, Stuart Saraquse, and Fred Swan. It was designed, edited, and composed by Joan Carter with help from Allan Levite. Illustrations were produced by Deane Morris. The original version of this manual was written in 1991 by Leslie Feldman, Norman Fong, Kevin Kachadourian, Neil Strudwick, and Paul Worthington as part of FWB’s Hard Disk ToolKit 1.x manual. Dedication This book is dedicated to my family and friends who put up with the long hours put into this effort.
    [Show full text]
  • How the Internet Works, Part 1
    Security Now! Transcript of Episode #309 Page 1 of 21 Transcript of Episode #309 How the Internet Works, Part 1 Description: This week, after catching up with our usual grab bag of Internet-related security and privacy news, including another Microsoft Patch Tuesday, Steve and Leo plow into the first of a series of forthcoming episodes, which will be spread out over time, describing the detailed technical operation of the ever-more-ubiquitous global Internet. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-309.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-309-lq.mp3 Leo Laporte: This is Security Now! with Steve Gibson, Episode 309, recorded July 13, 2011: How the Internet Works. It's time for Security Now!, the show that brings you the latest security news, with this guy right here, Steve Gibson, of the Gibson Research Corporation, GRC.com. Steve's a great man, a guy who's been doing this show now for six years. And of all things, after six years, we're finally going to find out the one thing we probably should have started with: how the heck the Internet works. Steve Gibson: Well, I mentioned some time ago that we were going to do this series. And I know it's months ago because, as you know, Leo, as our listeners know, we've had a very busy last few months with the addition of the Attacks & Breaches category in the top of the show, and just never, I mean, like, literally never a moment to breathe.
    [Show full text]
  • Windows 7 Security
    Security Now! Transcript of Episode #197 Page 1 of 25 Transcript of Episode #197 Windows 7 Security Description: This week, Steve and Leo discuss the changes, additions and enhancements Microsoft has made to the security of their forthcoming release of Windows 7. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-197.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-197-lq.mp3 INTRO: Netcasts you love, from people you trust. This is TWiT. Leo Laporte: Bandwidth for Security Now! is provided by AOL Radio at AOL.com/podcasting. This is Security Now! with Steve Gibson, Episode 197 for May 21, 2009: Windows 7 Security. This show is brought to you by listeners like you and your contributions. We couldn't do it without you. Thanks so much. It's time for Security Now!, the show that covers all things secure and insecure. We actually cover insecurity more than security. Privacy, too. Steve Gibson is here. He is the guru of security and privacy, the man who discovered spyware, coined the term, wrote the first antispyware program. He's also famous for [SpinRite], still the world's best disk maintenance utility. And he is here every week talking about security issues, answering questions. Hey, Steve. Steve Gibson: Insecurity issues. Leo: It really is. Steve: You're right. Security is boring. It's the insecurity that's exciting. Leo: Yes. Steve: And trying to get there from here, or here from there. Or somewhere. Security Now! Transcript of Episode #197 Page 2 of 25 Leo: So this week, what insecurity will we be discussing? Steve: The source of the world's greatest lack of security, Windows.
    [Show full text]
  • Acronis Os Selector As a Boot Manager
    User's Guide OS Selector 8.0 Compute with confidence www.acronis.com Copyright © SWsoft, 2000-2002. All rights reserved. Linux is a registered trademark of Linus Torvalds. OS/2 is a registered trademarks of IBM Corporation. UNIX is a registered trademarks of The Open Group. Windows and MS-DOS are registered trademarks of Microsoft Corporation. All other trademarks and copyrights referred to are the property of their respective owners. Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. Distribution of the work or derivative work in any standard (paper) book form for commercial purposes is prohibited unless prior permission is obtained from the copyright holder. DOCUMENTATION IS PROVIDED «AS IS» AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. END-USER LICENSE AGREEMENT BY ACCEPTING, YOU (ORIGINAL PURCHASER) INDICATE YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT WISH TO ACCEPT THE PRODUCT UNDER THESE TERMS YOU MAY CHOOSE NOT TO ACCEPT BY SELECTING "I decline..." AND NOT INSTALLING THE SOFTWARE. The OS Selector (the Software) is copyright © 2000-2002 by SWsoft. All rights are reserved. The ORIGINAL PURCHASER is granted a LICENSE to use the software only, subject to the following restrictions and limitations. 1. The license is to the original purchaser only, and is not transferable without prior written Permission from SWsoft. 2. The Original Purchaser may use the Software on a single computer owned or leased by the Original Purchaser.
    [Show full text]
  • DLCC Software Catalog
    Daniel's Legacy Computer Collections Software Catalog Category Platform Software Category Title Author Year Media Commercial Apple II Integrated Suite Claris AppleWorks 2.0 Claris Corporation and Apple Computer, Inc. 1987 800K Commercial Apple II Operating System Apple IIGS System 1.0.2 --> 1.1.1 Update Apple Computer, Inc. 1984 400K Commercial Apple II Operating System Apple IIGS System 1.1 Apple Computer, Inc. 1986 800K Commercial Apple II Operating System Apple IIGS System 2.0 Apple Computer, Inc. 1987 800K Commercial Apple II Operating System Apple IIGS System 3.1 Apple Computer, Inc. 1987 800K Commercial Apple II Operating System Apple IIGS System 3.2 Apple Computer, Inc. 1988 800K Commercial Apple II Operating System Apple IIGS System 4.0 Apple Computer, Inc. 1988 800K Commercial Apple II Operating System Apple IIGS System 5.0 Apple Computer, Inc. 1989 800K Commercial Apple II Operating System Apple IIGS System 5.0.2 Apple Computer, Inc. 1989 800K Commercial Apple II Reference: Programming ProDOS Basic Programming Examples Apple Computer, Inc. 1983 800K Commercial Apple II Utility: Printer ImageWriter Toolkit 1.5 Apple Computer, Inc. 1984 400K Commercial Apple II Utility: User ProDOS User's Disk Apple Computer, Inc. 1983 800K Total Apple II Titles: 12 Commercial Apple Lisa Emulator MacWorks 1.00 Apple Computer, Inc. 1984 400K Commercial Apple Lisa Office Suite Lisa 7/7 3.0 Apple Computer, Inc. 1984 400K Total Apple Lisa Titles: 2 Commercial Apple Mac OS 0-9 Audio Audioshop 1.03 Opcode Systems, Inc. 1992 800K Commercial Apple Mac OS 0-9 Audio Audioshop 2.0 Opcode Systems, Inc.
    [Show full text]
  • A Windows XP Diagnostic Guide Step 1
    home.comcast.net 20/11/2010 12:26 Diagnose XP Diagnose XP - Step 1 - Malware A Windows XP Removal Diagnostic Guide Malware Infection which includes Viruses, Worms, Trojans, Spyware, Adware and Rootkits can cause or mimic just about any system problem. These in- clude: Application Errors, Lock-ups (freezing), The following Free guide will help you Blue Screen Stop Errors (BSOD) and Random troubleshoot the most common causes of sys- Reboots. tem problems. Diagnosing System problems can be very complicated and time consuming. There Malware Removal Guide - Malware is short are no simple solutions. Windows XP systems should for «Malicious Software». It is a general never Lock-up (freeze), display Blue Screen Stop term that refers to any software or program Errors or Randomly Reboot. These are all warning code designed to infiltrate or damage a computer signs something is wrong or misconfigured with system without the owner’s informed consent. This your system. Unless you are a highly trained, expe- includes Viruses, Worms, Trojans, Spyware, Adware rienced PC Technician do not skip any of the fol- and Rootkits. This 3 step guide will show you how lowing steps. to remove these infections and protect yourself from future infections for free using free software. Notes - Overclocking can cause almost any system problem. It is strongly recommended to only run FACT: 89% of consumer PCs are infected with your system at the correct frequencies. Troubles- spyware hooting any problem on an Overclocked system is feedback a complete waste of time. Set the system back to its ^ TOP default frequencies before you begin troubleshoo- ting.
    [Show full text]
  • Spinrite Free
    Spinrite free click here to download The most popular free stuff on www.doorway.ru This is SpinRite's owners guide which all SpinRite owners should download and print. However, this manual is. SpinRite now brings its legendary data recovery and drive maintenance magic to the latest file systems, operating systems, and hard drives. It runs MUCH faster. Popular Alternatives to SpinRite for Windows, MS-DOS, Mac, Linux, Web and more. Alternatives to SpinRite for all platforms with any license Free Windows. There's quite a bit of demand for SpinRite alternatives and that's mainly because There's also a free demo available so that you can evaluate its capabilities. There have been numerous occasions when SpinRite has helped me repair bad HDD "TestDisk is powerful free data recovery software! Spinrite as prerry much always been the industry standard for disk recovery (in this case bad sectors) but I have had enough. I purchased a. Is Spinrite still "the PC industry's #1 mass storage data recovery & .. www.doorway.ru, but I belive they give a free quote. Smart software to determine your hard disk's health status. Spinrite alternative wanted. Two quite different tools that make you forget GRC's. SpinRite is a computer program for scanning magnetic data storage devices such as hard disks . GRC said in that this issue would be resolved in version , anticipated to be a free-of-charge upgrade for SpinRite users. As of March Size​: ​ MB executable, MB bootable. Does anyone know if there are older, free versions of Spinrite around. Got a disc I'd like to try it on, but the pay version costs almost as much as.
    [Show full text]
  • Red Hat Linux 7.3 the Official Red Hat Linux X86
    Red Hat Linux 7.3 The Official Red Hat Linux x86 Installation Guide Red Hat Linux 7.3: The Official Red Hat Linux x86 Installation Guide Copyright © 2002 by Red Hat, Inc. Red Hat, Inc. 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754 3700 Phone: 888 733 4281 Fax: +1 919 754 3701 PO Box 13588 Research Triangle Park NC 27709 USA rhl-ig-x86(EN)-7.3-HTML-RHI (2002-04-05T13:43-0400) Copyright © 2002 by Red Hat, Inc. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, V1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. Distribution of the work or derivative of the work in any standard (paper) book form for commercial purposes is prohibited unless prior permission is obtained from the copyright holder. The admonition graphics (note, tip, and so on) were created by Marianne Pecci <[email protected]>. They may be redistributed with written permission from Marianne Pecci and Red Hat, Inc.. Red Hat, Red Hat Network, the Red Hat "Shadow Man" logo, RPM, Maximum RPM, the RPM logo, Linux Library, PowerTools, Linux Undercover, RHmember, RHmember More, Rough Cuts, Rawhide and all Red Hat-based trademarks and logos are trademarks or registered trademarks of Red Hat, Inc. in the United States and other countries. Linux is a registered trademark of Linus Torvalds. Motif and UNIX are registered trademarks of The Open Group.
    [Show full text]
  • Reconfiguring the MBR for Multiple Boot Installations
    Hentzenwerke Whitepaper Series Reconfiguring the MBR for Multiple Boot Installations By Whil Hentzen I©ve written a couple of articles on multiple boot configurations. Upon adding a third operating system to a dual-boot machine, I managed to overwrite the machine©s MBR (master boot record) so that it pointed to the wrong bootloader. This paper addresses the solution. Hentzenwerke Publishing, Inc. · [email protected] · www.hentzenwerke.com Reconfiguring the MBR for Multiple Boot Installations Page 2 1. Preface 1.1 Copyright Copyright 2007 Whil Hentzen. Some rights reserved. This work is licensed under the Creative Commons Attribution- NonCommercial-NoDerivs License, which basically means that you can copy, distribute, and display only unaltered copies of this work, but in return, you must give the original author credit, you may not distribute the work for commercial gain, nor create derivative works based on it without first licensing those rights from the author. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/3.0/. 1.2 Revisions 1.2.1 History Version Date Synopsis Author 1.0.0 2007/12/03 Original WH 1.2.2 New version The newest version of this document will be found at www.hentzenwerke.com. 1.2.3 Feedback and corrections If you have questions, comments, or corrections about this document, please feel free to email me at ©[email protected]©. I also welcome suggestions for passages you find unclear. 1.3 Acknowledgments Thanks to MLUG members Ron Bean, Glenn Holmer, Gary Kramlich, among others, for pointers and suggestions, and to Ted Roche, for patiently reviewing version 1.0 and nitpicking every misplaced git.
    [Show full text]