linux windows 双系统并存与启动引导
- 格式:doc
- 大小:40.00 KB
- 文档页数:5
linux windows 双系统并存与启动引导 2007年08月31日 星期五 14:35
发现网站这类文章不好找 找到的分析也不太详细 小弟不才今天就写这么一个文章 PS: 文章是否保留出处属于个人意愿 本人不喜欢强制要求 一般安装WINDOWS 和 LINUX 并存的有两种方式 1: 先安装windows xp 在安装LINUX 靠 LINUX 的grub 来选择引导两个系统 2: 先安装LINUX 在安装WINDOWSXP 靠 WINDOWS XP C盘根目录下的 boot.ini 来引导 grub FOR DOS (这个是个软件可以下载到) 在引导LINUX 我的硬盘情况 /media/hda1 //WINDOWS C盘的 /media/hda2 //硬盘扩展分区 /media/hda3 // LINUX SWAP 分区 /media/hda4 // LINUX 根分区/ /media/hda5 //WINDOWS D盘的 ……………………………………………………………………………………………………………………………… 一些补充: LINUX 设备中 第一块ATA 硬盘 为hda 第一个分区为 hda1 hda1-4都为主分区 hda5 开始为逻辑分区 ……………………………………………………………………………………………………………………………… 先讲第一种情况 先安装 WINDOWS XP 在安装 LINUX 的 这种出现比较常见的情况 就是 可以引导LINUX 但是启动不了WINDOWS 这个原因是 LINUX 最后安装重新刷新了 mbr(主引导记录) grub 的配置不正确或者 grub 无法识别 WINDOWS 分区 出现这样的情况解决办法就是重新修改grub 配置文件 这个文件一般在LINUX 分区 /boot/grub/.conf 或者/boot/grub/menu.lst 详细根据LINUX发行版本不同而不同 ……………………………………………………………………………………………………………………………… 补充:.conf 为隐藏文件 需要用ls -a 命令可以看见 或者在 X WIN 设置显示隐藏文件也可见 一些人分区直接 就一个根分区 / 和 SWAP 就完了 这样不科学 建议设置一个/BOOT 分区 方便以后好恢复 如果没有分/boot 分区 默认的路径就是/grub ……………………………………………………………………………………………………………………………… 那么怎么来修改这个配置文件~? 看个例子~以下是我计算机上的grub 配置文件 # menu.lst - See: grub(8), info grub, update-grub(8) # grub-install(8), grub-floppy(8), # grub-md5-crypt, /usr/share/doc/grub # and /usr/share/doc/grub-doc/. ## default num # Set the default entry to the entry number NUM. Numbering starts from 0, and # the entry number 0 is the default if the command is not used. # # You can specify 'saved' instead of a number. In this case, the default entry # is the entry saved with the command 'savedefault'. # WARNING: If you are using dmraid do not change this entry to 'saved' or your # array will desync and will not let you boot your system. default 0 ## timeout sec # Set a timeout, in SEC seconds, before automatically booting the default entry # (normally the first entry defined). timeout 10 //超时时间 ## hiddenmenu # Hides the menu by default (press ESC to see the menu) #hiddenmenu # Pretty colours #color cyan/blue white/blue ## password ['--md5'] passwd # If used in the first section of a menu file, disable all interactive editing # control (menu entry editor and command-line) and entries protected by the # command 'lock' # e.g. password topsecret # password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/ # password topsecret # # examples # # title Windows 95/98/NT/2000 # root (hd0,0) # makeactive # chainloader +1 # # title Linux # root (hd0,1) # kernel /vmlinuz root=/dev/hda2 ro # # # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST ### BEGIN AUTOMAGIC KERNELS LIST ## lines between the AUTOMAGIC KERNELS LIST markers will be modified ## by the debian update-grub script except for the default options below ## DO NOT UNCOMMENT THEM, Just edit them to your needs ## ## Start Default Options ## ## default kernel options ## default kernel options for automagic boot options ## If you want special options for specific kernels use kopt_x_y_z ## where x.y.z is kernel version. Minor versions can be omitted. ## e.g. kopt=root=/dev/hda1 ro ## kopt_2_6_8=root=/dev/hdc1 ro ## kopt_2_6_8_2_686=root=/dev/hdc2 ro # kopt=root=UUID=39578435-c0d9-45c6-bb67-a147d26bee3a ro ## Setup crashdump menu entries ## e.g. crashdump=1 # crashdump=0 ## default grub root device ## e.g. groot=(hd0,0) # groot=(hd1,1) ## should update-grub create alternative automagic boot options ## e.g. alternative=true ## alternative=false # alternative=true ## should update-grub lock alternative automagic boot options ## e.g. lockalternative=true ## lockalternative=false # lockalternative=false ## additional options to use with the default boot option, but not with the ## alternatives ## e.g. defoptions=vga=791 resume=/dev/hda5 # defoptions=quiet splash ## should update-grub lock old automagic boot options ## e.g. lockold=false ## lockold=true # lockold=false ## Xen hypervisor options to use with the default Xen boot option # xenhopt= ## Xen Linux kernel options to use with the default Xen boot option # xenkopt=console=tty0 ## altoption boot targets option ## multiple altoptions lines are allowed ## e.g. altoptions=(extra menu suffix) extra boot options ## altoptions=(recovery) single # altoptions=(recovery mode) single ## controls how many kernels should be put into the menu.lst ## only counts the first occurence of a kernel, not the ## alternative kernel options ## e.g. howmany=all ## howmany=7 # howmany=all ## should update-grub create memtest86 boot option