`
JasonShieh
  • 浏览: 527436 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

修改Ubuntu启动菜单使windows XP/Vista/win 7变为默认启动系统

 
阅读更多
很多朋友在电脑上装了Windows和ubuntu双系统,电脑是一个人用的还好;假如是公用的,其他用户在启动时看到多系统启动界面会不知所措,对于自己而言,这样的启动也会给自己浪费很多时间。所以,将默认启动的系统改为Windows是很有必要的。

在ubuntu系统中打开终端,输入:sudo gedit/boot/grub/menu.lst

这时会弹出文本编辑器,内容如下:

-----------------------------------------------------------------------------------------------------------------------------------

# 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=2d1136cb-416a-4329-8c6d-703537a2d578 ro

## Setup crashdump menu entries
## e.g. crashdump=1
# crashdump=0

## default grub root device
## e.g. groot=(hd0,0)
# groot=(hd0,7)

## 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 locale=zh_CN

## 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
## e.g. memtest86=true
## memtest86=false
# memtest86=true

## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false

## ## End Default Options ##

title Ubuntu, kernel 2.6.20-16-generic
root (hd0,7)
kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=2d1136cb-416a-4329-8c6d-703537a2d578 ro quiet splash locale=zh_CN
initrd /boot/initrd.img-2.6.20-16-generic
quiet
savedefault 0

title Ubuntu, kernel 2.6.20-16-generic (recovery mode)
root (hd0,7)
kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=2d1136cb-416a-4329-8c6d-703537a2d578 ro single
initrd /boot/initrd.img-2.6.20-16-generic 1

title Ubuntu, memtest86+
root (hd0,7)
kernel /boot/memtest86+.bin
quiet 2

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root 3

# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda1
title Microsoft Windows XP Professional
root (hd0,0)
savedefault
makeactive
chainloader +1 4
-----------------------------------------------------------------------------------------------------------------------------------

在上面的内容中原本的default值为0,意即启动排行第一的操作系统,这里代表的就是title Ubuntu, kernel 2.6.20-16-generic。

现在对其进行修改,将其值改到与Windows 相对应,Windows 对应的索引号为4,那么就将default后的值改为4,以后启动的默认系统即为Windows了。

另外,启动界面的等待时间也可通过修改timeout后面的值进行修改。
分享到:
评论

相关推荐

    windows Linux 双系统 启动顺序更改为默认windows启动

    在本文中,我们将详细讨论如何在已经安装了Windows XP SP3和Ubuntu LTS 12.10 64位桌面版的双系统环境中,将启动顺序更改为默认启动Windows XP。 首先,当安装了多个操作系统后,电脑会在启动时显示一个启动菜单,...

    FastTrak TX4660/TX8660 阵列卡驱动 Windows XP/Windows 2003/Vista

    《FastTrak TX4660/TX8660 阵列卡驱动在Windows XP/Windows 2003/Vista环境下的应用与详解》 FastTrak TX4660和TX8660是SILICON IMAGE公司推出的专业级存储阵列卡,它们在数据中心和服务器环境中广泛使用,为用户...

    Ubuntu、Windows XP、Windows Vista三系统启动引导教程

    ### Ubuntu、Windows XP、Windows Vista 三系统启动引导教程 #### 序言 随着操作系统的多样化,越来越多的技术爱好者选择在一台计算机上安装多个操作系统以满足不同的需求。本文将详细介绍如何在一台计算机上安装...

    安装windows和ubuntu双系统后如何恢复ubuntu启动项

    如果你使用Vista或Windows7系统,那么你需要按照以下步骤恢复Ubuntu启动项: 1. 把安装Ubuntu->winboot文件夹下的wubildr和wubildr.mbr两个文件拷贝到C盘根目录下。 2. 打开命令提示符,输入bcdedit /create /d ...

    Ubuntu和Windows7双系统修改启动顺序问题

    Ubuntu 和 Windows7 双系统修改启动顺序问题是指在 Ubuntu 和 Windows7 双系统中,如何修改启动顺序,使得系统默认从 Windows 启动。解决这个问题的关键是修改 GRUB 启动器的配置文件。 GRUB(GRand Unified ...

    安装win7,Vista,XP后Ubuntu启动项恢复

    在计算机操作系统领域,多系统共存是一个常见的需求,比如Windows 7、Vista、XP与Ubuntu的混合安装。然而,在重装Windows系统后,可能会导致Ubuntu的启动项丢失,使得无法正常启动Ubuntu。本篇文章将深入探讨如何在...

    ubuntu 假设代理服务器squid(xp/win7实现上网)

    通过以上步骤,我们已经成功地在Ubuntu系统上安装并配置了Squid3代理服务器,并且实现了Windows XP/7客户端通过该代理服务器上网的功能。需要注意的是,实际操作过程中可能还会遇到各种问题,比如防火墙设置、DNS...

    grub修改ubuntu启动项

    **Grub修改Ubuntu启动项详解** 在早期的Ubuntu版本中,Grub(GRand Unified Bootloader)作为系统启动引导程序,用户可以通过简单的编辑 `/boot/grub/menu.lst` 文件来定制启动选项。然而,随着Grub的升级到Grub 2...

    修改ubuntu启动顺序

    例如,如果希望默认启动Windows XP Professional,而它位于菜单项的第四位,则需要将数字修改为4(对于旧版Ubuntu)或`"4"`(对于新版Ubuntu)。 ##### 4. 查找并确认菜单项 接下来,需要找到所有以`title`开头的...

    修改UBUNTU启动菜单

    修改UBUNTU里的GRUB的启动菜单.

    Win10与Ubuntu双系统开机不能进入Ubuntu的问题

    在处理Windows 10与Ubuntu双系统无法正常启动的问题时,我们首先需要了解双系统启动的原理以及可能导致启动问题的原因。双系统配置下,计算机启动时会由引导管理器(如GRUB)来进行操作系统的选择。如果在这个过程中...

    ubuntu和windows双系统启动顺序的修改攻略

    ### Ubuntu与Windows双系统启动顺序修改攻略 #### 知识点概述 在使用Ubuntu与Windows双系统的环境中,用户可能会遇到开机时需要手动选择操作系统的问题。默认情况下,GRUB(Grand Unified Bootloader)作为启动...

    ubuntu、windows7 双系统安装

    "Ubuntu和Windows 7双系统安装" 在这篇文章中,我们将学习如何在一台机器上同时安装Windows 7和Ubuntu 10.04双系统。这种安装方式可以让我们同时使用两个操作系统,可以满足不同需求和场景下的需求。 标题:Ubuntu...

    修改Ubuntu 的Grub2启动项

    在使用Ubuntu双系统环境下,用户可能需要根据实际需求调整启动时的默认操作系统或者更改启动菜单中的某些设置。本文将详细介绍如何在Ubuntu系统中修改Grub2启动项,包括调整默认启动项、更改启动等待时间等。 #### ...

    多操作系统的安装攻略 Ubuntu Linux windows7 windows XP

    多操作系统安装攻略主要涵盖在Windows XP、Windows 7以及Ubuntu Linux之间进行的系统安装和卸载过程。在本文中,我们将深入探讨如何在不同的配置环境下安装这些操作系统。 ### 安装单系统 #### 1. 安装XP 安装...

    windows多系统下安装ubuntu不覆盖默认引导为windows经验总结,实测对win7.win8.XP有效.docx

    本经验总结适用于Windows 7、Windows 8以及XP系统,通过遵循以下步骤,你可以确保在安装Ubuntu后仍然保留Windows作为默认引导。 1. **准备工作**: - 下载Ubuntu的ISO镜像,这是从官方渠道获取的,地址为:...

    Ubuntu和XP双系统 grub2 默认启动项的更改

    Ubuntu和XP双系统 grub2 默认启动项的更改

    Win7和Ubuntu双系统安装(硬盘安装)

    在早期的双系统安装实践中,尤其是将Windows XP与Ubuntu 7.10建立为双系统时,主要采用的是通过Windows XP的引导文件ntldr读取Boot.ini文件来实现双启动的方式。然而,随着操作系统的不断更新迭代,如Windows Vista...

    Ubuntu、XP、Vista三系统启动引导全教程!

    Ubuntu、XP、Vista 三系统启动引导全教程 Ubuntu、XP、Vista 三系统启动引导全教程是一篇关于三系统安装和启动引导的详细教程。该教程通过分章节的方式,详细介绍了三系统的安装和启动引导过程。 第一个章节介绍...

Global site tag (gtag.js) - Google Analytics