- 浏览: 527462 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
c7887qin:
貌似还要使用相同的证书进行签名。。。
Android - 如何将两个/多个应用放到一个进程中去? -
北极光之吻:
天天向上1989 写道不是有OnDoubleTapListen ...
android实现双击事件监听 -
nielong123:
nielong123 写道onCheckedChanged(M ...
Android RadioGroup 换行, 支持多行多列 -
nielong123:
onCheckedChanged(MultiRadioGrou ...
Android RadioGroup 换行, 支持多行多列 -
zk_Ming:
zk_Ming 写道我用了你的,但是radiogroup 点击 ...
Android RadioGroup 换行, 支持多行多列
很多朋友在电脑上装了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后面的值进行修改。
在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后面的值进行修改。
发表评论
-
正则表达式大全
2014-03-18 17:05 1008正则表达式匹配网址: (https://[\w]*.|http ... -
正则表达式大全
2014-03-18 16:53 0正则表达式匹配网址: (https://[\w]*.|http ... -
root卸载系统程序
2013-02-20 10:31 1731大家知道,卸载程序分为两种。一种是普通的应用程序,一种 ... -
java.lang.IllegalStateException: tried to write 1544 bytes with content-length
2013-01-31 14:57 1416上传文件时,content-length定义的长度小于 ... -
基于socket简单通信协议实现(c/c++)
2012-09-03 10:48 127821 场景 当用socket进行进 ... -
Ubuntu adb devices :???????????? no permissions 解决方法
2012-04-06 16:54 1813因为ubuntu这样的系统都是默认以非root身份在运行的,要 ... -
sysv-rc-conf 设置ubuntu开机自启动
2012-03-08 15:49 3560Java代码 sudo apt-get install s ... -
Ubuntu 创建开机自启动脚本
2012-03-08 14:27 2029Ubuntu 创建开机自启动脚本的步骤如下: 1) 将你的启动 ... -
Swing界面美化
2012-02-13 18:18 9565转发自:http://blog.163.com/li_hy20 ... -
Android JNI知识简介
2011-10-20 13:47 1679Java Native Interface (JNI)标准是j ... -
一个JNI入门级教程(linux版)
2011-10-16 21:46 3674学了JAVA一段时间后,如果你意识到JAVA的瓶颈所在,那就是 ... -
解决java.lang.NoClassDefFoundError错误
2011-10-16 21:30 1884一个基础问题: package com.test; pu ... -
Eclipse ADT插件在ubuntu从10.04升级到10.10后失效的问题解决
2011-07-28 17:34 2234原文出处:http://sonalsantan.blogspo ... -
SDL init failure, reason is: No available video device: On Ubuntu64 .
2011-07-21 15:48 1648If you are installing Android S ... -
Android系统源码导入到eclipse
2011-07-21 11:05 74471.把eclipse工程配置文件复制到android源码根目录 ... -
JAVA执行Linux命令的方法
2011-07-20 15:59 2282/** 执行Linux命令,并返回执行结果。 ... -
ubuntu 10.04 设置ibus自启动
2011-05-13 18:11 1254System -> administration -&g ... -
常用的VIM命令列表
2011-04-25 15:59 1077移动光标 上:k nk:向上移 ... -
ubuntu下eclipse的svn切换用户的方法
2010-12-29 16:09 1549ubuntu下eclipse使用svn 想更改用户,但上一个 ... -
Ubuntu10.04配置adb环境变量
2010-12-15 23:18 37331、sudo gedit ~/.bashrc 2、将下面 ...
相关推荐
在本文中,我们将详细讨论如何在已经安装了Windows XP SP3和Ubuntu LTS 12.10 64位桌面版的双系统环境中,将启动顺序更改为默认启动Windows XP。 首先,当安装了多个操作系统后,电脑会在启动时显示一个启动菜单,...
《FastTrak TX4660/TX8660 阵列卡驱动在Windows XP/Windows 2003/Vista环境下的应用与详解》 FastTrak TX4660和TX8660是SILICON IMAGE公司推出的专业级存储阵列卡,它们在数据中心和服务器环境中广泛使用,为用户...
### Ubuntu、Windows XP、Windows Vista 三系统启动引导教程 #### 序言 随着操作系统的多样化,越来越多的技术爱好者选择在一台计算机上安装多个操作系统以满足不同的需求。本文将详细介绍如何在一台计算机上安装...
如果你使用Vista或Windows7系统,那么你需要按照以下步骤恢复Ubuntu启动项: 1. 把安装Ubuntu->winboot文件夹下的wubildr和wubildr.mbr两个文件拷贝到C盘根目录下。 2. 打开命令提示符,输入bcdedit /create /d ...
Ubuntu 和 Windows7 双系统修改启动顺序问题是指在 Ubuntu 和 Windows7 双系统中,如何修改启动顺序,使得系统默认从 Windows 启动。解决这个问题的关键是修改 GRUB 启动器的配置文件。 GRUB(GRand Unified ...
在计算机操作系统领域,多系统共存是一个常见的需求,比如Windows 7、Vista、XP与Ubuntu的混合安装。然而,在重装Windows系统后,可能会导致Ubuntu的启动项丢失,使得无法正常启动Ubuntu。本篇文章将深入探讨如何在...
通过以上步骤,我们已经成功地在Ubuntu系统上安装并配置了Squid3代理服务器,并且实现了Windows XP/7客户端通过该代理服务器上网的功能。需要注意的是,实际操作过程中可能还会遇到各种问题,比如防火墙设置、DNS...
**Grub修改Ubuntu启动项详解** 在早期的Ubuntu版本中,Grub(GRand Unified Bootloader)作为系统启动引导程序,用户可以通过简单的编辑 `/boot/grub/menu.lst` 文件来定制启动选项。然而,随着Grub的升级到Grub 2...
例如,如果希望默认启动Windows XP Professional,而它位于菜单项的第四位,则需要将数字修改为4(对于旧版Ubuntu)或`"4"`(对于新版Ubuntu)。 ##### 4. 查找并确认菜单项 接下来,需要找到所有以`title`开头的...
修改UBUNTU里的GRUB的启动菜单.
在处理Windows 10与Ubuntu双系统无法正常启动的问题时,我们首先需要了解双系统启动的原理以及可能导致启动问题的原因。双系统配置下,计算机启动时会由引导管理器(如GRUB)来进行操作系统的选择。如果在这个过程中...
### Ubuntu与Windows双系统启动顺序修改攻略 #### 知识点概述 在使用Ubuntu与Windows双系统的环境中,用户可能会遇到开机时需要手动选择操作系统的问题。默认情况下,GRUB(Grand Unified Bootloader)作为启动...
"Ubuntu和Windows 7双系统安装" 在这篇文章中,我们将学习如何在一台机器上同时安装Windows 7和Ubuntu 10.04双系统。这种安装方式可以让我们同时使用两个操作系统,可以满足不同需求和场景下的需求。 标题:Ubuntu...
在使用Ubuntu双系统环境下,用户可能需要根据实际需求调整启动时的默认操作系统或者更改启动菜单中的某些设置。本文将详细介绍如何在Ubuntu系统中修改Grub2启动项,包括调整默认启动项、更改启动等待时间等。 #### ...
多操作系统安装攻略主要涵盖在Windows XP、Windows 7以及Ubuntu Linux之间进行的系统安装和卸载过程。在本文中,我们将深入探讨如何在不同的配置环境下安装这些操作系统。 ### 安装单系统 #### 1. 安装XP 安装...
本经验总结适用于Windows 7、Windows 8以及XP系统,通过遵循以下步骤,你可以确保在安装Ubuntu后仍然保留Windows作为默认引导。 1. **准备工作**: - 下载Ubuntu的ISO镜像,这是从官方渠道获取的,地址为:...
Ubuntu和XP双系统 grub2 默认启动项的更改
在早期的双系统安装实践中,尤其是将Windows XP与Ubuntu 7.10建立为双系统时,主要采用的是通过Windows XP的引导文件ntldr读取Boot.ini文件来实现双启动的方式。然而,随着操作系统的不断更新迭代,如Windows Vista...
Ubuntu、XP、Vista 三系统启动引导全教程 Ubuntu、XP、Vista 三系统启动引导全教程是一篇关于三系统安装和启动引导的详细教程。该教程通过分章节的方式,详细介绍了三系统的安装和启动引导过程。 第一个章节介绍...