我的grub.cfg配置文件

路径:/boot/grub/grub.cfg

配置文件如下:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi

function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}

if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root=‘hd0,msdos7‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 30f3cf07-5fb0-495d-a56a-c76df8f1ec3b
else
search --no-floppy --fs-uuid --set=root 30f3cf07-5fb0-495d-a56a-c76df8f1ec3b
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=zh_CN
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=-1
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry ‘Ubuntu‘ --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option ‘gnulinux-simple-30f3cf07-5fb0-495d-a56a-c76df8f1ec3b‘ {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root=‘hd0,msdos8‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 75f8ba65-ad82-4fd9-b5a0-096df8068541
else
search --no-floppy --fs-uuid --set=root 75f8ba65-ad82-4fd9-b5a0-096df8068541
fi
linux /vmlinuz-3.13.0-24-generic root=UUID=30f3cf07-5fb0-495d-a56a-c76df8f1ec3b ro quiet splash $vt_handoff
initrd /initrd.img-3.13.0-24-generic
}
submenu ‘Ubuntu 高级选项‘ $menuentry_id_option ‘gnulinux-advanced-30f3cf07-5fb0-495d-a56a-c76df8f1ec3b‘ {
menuentry ‘Ubuntu,Linux 3.13.0-24-generic‘ --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option ‘gnulinux-3.13.0-24-generic-advanced-30f3cf07-5fb0-495d-a56a-c76df8f1ec3b‘ {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root=‘hd0,msdos8‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 75f8ba65-ad82-4fd9-b5a0-096df8068541
else
search --no-floppy --fs-uuid --set=root 75f8ba65-ad82-4fd9-b5a0-096df8068541
fi
echo ‘载入 Linux 3.13.0-24-generic ...‘
linux /vmlinuz-3.13.0-24-generic root=UUID=30f3cf07-5fb0-495d-a56a-c76df8f1ec3b ro quiet splash $vt_handoff
echo ‘载入初始化内存盘...‘
initrd /initrd.img-3.13.0-24-generic
}
menuentry ‘Ubuntu, with Linux 3.13.0-24-generic (recovery mode)‘ --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option ‘gnulinux-3.13.0-24-generic-recovery-30f3cf07-5fb0-495d-a56a-c76df8f1ec3b‘ {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root=‘hd0,msdos8‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 75f8ba65-ad82-4fd9-b5a0-096df8068541
else
search --no-floppy --fs-uuid --set=root 75f8ba65-ad82-4fd9-b5a0-096df8068541
fi
echo ‘载入 Linux 3.13.0-24-generic ...‘
linux /vmlinuz-3.13.0-24-generic root=UUID=30f3cf07-5fb0-495d-a56a-c76df8f1ec3b ro recovery nomodeset
echo ‘载入初始化内存盘...‘
initrd /initrd.img-3.13.0-24-generic
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry ‘Memory test (memtest86+)‘ {
insmod part_msdos
insmod ext2
set root=‘hd0,msdos8‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 75f8ba65-ad82-4fd9-b5a0-096df8068541
else
search --no-floppy --fs-uuid --set=root 75f8ba65-ad82-4fd9-b5a0-096df8068541
fi
knetbsd /memtest86+.elf
}
menuentry ‘Memory test (memtest86+, serial console 115200)‘ {
insmod part_msdos
insmod ext2
set root=‘hd0,msdos8‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8 75f8ba65-ad82-4fd9-b5a0-096df8068541
else
search --no-floppy --fs-uuid --set=root 75f8ba65-ad82-4fd9-b5a0-096df8068541
fi
linux16 /memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry ‘Windows 8 (loader) (on /dev/sda1)‘ --class windows --class os $menuentry_id_option ‘osprober-chain-3030-3030‘ {
insmod part_msdos
insmod fat
set root=‘hd0,msdos1‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 3030-3030
else
search --no-floppy --fs-uuid --set=root 3030-3030
fi
parttool ${root} hidden-
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry ‘Windows 7 (loader) (on /dev/sda3)‘ --class windows --class os $menuentry_id_option ‘osprober-chain-484C1B6C4C1B5452‘ {
insmod part_msdos
insmod ntfs
set root=‘hd0,msdos3‘
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 484C1B6C4C1B5452
else
search --no-floppy --fs-uuid --set=root 484C1B6C4C1B5452
fi
parttool ${root} hidden-
chainloader +1
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the ‘exec tail‘ line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

我的grub.cfg配置文件,码迷,mamicode.com

时间: 2024-12-30 01:53:07

我的grub.cfg配置文件的相关文章

Grub2 基本操作 和 grub.cfg 配置信息

grub2基础教程(节选)1.安装ubuntu9.10时,grub默认安装在第一硬盘(hd0)的mbr,其实就是把引导文件 boot.img写入硬盘的mbr,当然,用户也可  以选择不写入硬盘mbr而是写入linux分区的引导扇区.启动时根据mbr所提供信息找到启动分区后,加载分区内的grub核心文件core.img和  配置文件grub.cfg,进入选择菜单画面,在菜单画面,按上下箭号选择需要系统菜单项,按Enter进入选项. 按e进入己选择菜单的编辑状态,在编辑状态下,由上下左右箭号来移动光

linux下怎么修改grub.cfg

一.grub2的启动配置文件grub.cfggrub2的启动配置文件grub.cfg是/boot/grub/grub.cfg,而不是以前的memu.lst.如果你是多系统,有Ubuntu和windows,那么用下面的命令,可以使grub2得到所以可以启动的系统.sudo update-grub实际就是让系统自己生成合适的grub.cfg文件.这个grub.cfg文件是只读属性,so如果你要修改它,需要权限.sudo chmod +w /boot/grub/grub.cfg然后可以编辑grub.c

Grub启动配置文件

和许多其他linux发行版一样,Fedora使用Grub作为32位和64位X86系统的启动加载器(bootloader).grub的配置文件主要是/boot/grub/grub.conf,而/boot/grub/menu.list是这个文件的软连接(soft link).该配置文件样式如下 # grub.conf generated by anaconda## Note that you do not have to rerun grub after making changes to this

如何更改grub.conf配置文件来引导另一个系统

CentOS.RedHat 等linux发行版,通过grub引导程序来完成将内核加载到内存中.如果在自己的一个磁盘上安装了多个操作系统的话,那么这多个操作系统也必须的通过grub引导程序来完成内核的加载的.这是因为一个磁盘上只能有一个grub引导程序,但却可以有多个操作系统. grub引导程序是通过读取自己的配置文件来实现多个系统的引导的. grub的配置文件为:/boot/grub/grub.conf grub.conf为: 其中 default=0 定义了系统默认加载的那个操作系统 time

CentOS7重新生成 /boot/grub2/grub.cfg

CentOS7重新生成 /boot/grub2/grub.cfg CentOS7 is using grub2 and the generated /boot/grub2/grub.cfg rather than the old grub.confformat, which is why you can't find it. The new grub.cfg file is not intended for direct editing, instead you need to modify t

通过telnet自动下载cfg配置文件

源代码如下: import telnetlib import logging import datetime import csv import time def telnetfunc(enbid, host, user, passwd): try: tn = telnetlib.Telnet(host) tn.read_until(b'login: ') tn.write(user.encode('ascii') + b'\n') tn.read_until(b'Password: ') tn

proguard.cfg 配置文件

http://stackoverflow.com/questions/8129040/proguard-missing-type-parameter # ------------------------------------- # android 原始混淆模板 # ------------------------------------- # ---------------------------------- # 通过指定数量的优化能执行 # -optimizationpasses n #

[Android Pro] proguard.cfg 配置文件

转载自:http://my.oschina.net/zhangzhihao/blog/72393 # ------------------------------------- # android 原始混淆模板 # ------------------------------------- # ---------------------------------- # 通过指定数量的优化能执行 # -optimizationpasses n # --------------------------

rhel7 grub配置文件及排错 破解root密码

rhel7 grub配置文件及排错 RHEL7用了grub2,而不再是grub了 MBR分区的前446个字节存放的是系统引导程序grub,中间64字节是分区表,最后2个字节表示结束.那么什么是grub是怎么工作的呢? 简单的说,开机会经历以下几步: 1.BIOS自检,检查硬件: 2.激活MBR,MBR上不存在文件系统,可以视作硬件一部分,因此可以被直接读取 3.grub加载到内存,生成一个微系统,微系统内置了精简版的文件系统 4.通过这个微系统,他会去引导分区,比如默认一般是sda1上去找内核文