我下载的是Fedora14 DVD 版,刻盘安装。主要是分区这个步骤,我划分/sawp 1024MB(我的内存是1GB)。然后 / 和/home 都是10GB。安装完了之后,就是引导问题。GRUB默认的是Fedora14,可是我想要默认的是XP。我去网上找了很久,终于成功更改了。首先打终端,输入 su ,再输入root 的密码。输入 vi /boot/grub/grub.conf

# grub.conf generated by anaconda

#

# Note that you do not have to rerun grub after making changes to this file

# NOTICE:  You have a /boot partition.  This means that

# all kernel and initrd paths are relative to /boot/, eg.

#root (hd0,6)

# kernel /vmlinuz-version ro root=/dev/mapper/vg_colin-lv_root

#initrd /initrd-[generic-]version.img

#boot=/dev/sda

default=1

timeout=5

splashp_w_picpath=(hd0,6)/grub/splash.xpm.gz

hiddenmenu

title Fedora (2.6.35.6-45.fc14.i686)

        root (hd0,6)

        kernel /vmlinuz-2.6.35.6-45.fc14.i686 ro root=/dev/mapper/vg_colin-lv_root rd_LVM_LV=vg_colin/lv_root rd_LVM_LV=vg_colin/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYTABLE=us rhgb quiet

        initrd /initramfs-2.6.35.6-45.fc14.i686.img

title Other

        rootnoverify (hd0,0)

        chainloader +1

~               

看到红色标记的地方 在default= 后面改为0,表示首先启动 第一项 也就是   Fedora (2.6.35.6-45.fc14.i686)。

 

改为1表示启动第二项 Other。我改为1就是先启动XP拉。tilte后的内容就是启动菜单里显示内容,即启动菜单里显示的选项,我们可以将Other改为其它标记,如改为Windows XP

,保存退出就完成了配置操作。这里用VI修改,就需要知道vi的修改方式。这里可以去搜索如何使用vi。 timeout=表示启动菜单停留的时间。我设置的是5秒。(参考http://www.linuxdiyf.com/viewarticle.php?id=74275)

    最后是设置网络。在“系统”——“首选项”——“网络连接”  添加

如图所示。

勾选“自动连接” 输入完用户名和密码后,重启。我试过用注销,可是不行。重启之后就可以了

如有什么错误,请多多指教!