1、安裝序順linux
1. 先安裝 Windows 操做系統windows
2. 再安裝 RHEL 7 系統ide
2、grub 中,添加Windows 引導信息ui
由於安裝rhel7後,只有Linux 的引導信息,而沒有Windows 系統的信息,須要手工添加。this
1. 修改grub 自定義配置文件(本例 Windows server 2008 是安裝在C 盤,且在安裝時,Windows 自動創建了一個隱藏分區)spa
[root@rhel7 ~]# cat /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 $0
# 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.
操作系統
menuentry 'Windows Server 2008' {
insmod part_msdos
insmod ntfs
insmod ntldr
set root=(hd0,1)
chainloader +1
boot
}server
2.從新編譯生成啓動菜單
[root@rhel7 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg it
3. 從新啓動便可看到有Windows 引導項。console
3、 grub2更改啓動順序
grub2是經過/etc/grub.d/目錄下的文件順序來決定啓動項順序的,所以改變這些文件的序順便可。
1. 修改文件的序順
[root@rhel7 ~]# cd /etc/grub.d/
[root@rhel7 grub.d]# ls
00_header 10_linux 20_linux_xen 20_ppc_terminfo 30_os-prober 40_custom 41_custom README
[root@rhel7 grub.d]# cp 40_custom 02_windows
[root@rhel7 grub.d]# ls
00_header 02_windows 10_linux 20_linux_xen 20_ppc_terminfo 30_os-prober 40_custom 41_custom README
2.從新編譯生成啓動菜單
[root@rhel7 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
4、grub2 修改菜單顯示時間
1.修改配置文件
[root@rhel7 ~]# vi /etc/default/grub
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="vconsole.keymap=us crashkernel=auto vconsole.font=latarcyrheb-sun16 rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
2.從新編譯生成啓動菜單[root@rhel7 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg