回覆列表
-
1 # 使用者7266214309263
相關內容
- linux是否比Windows系統更適合用作各大學計算機系統?
- MACBOOK如何從WINDOWS系統切換成OS系統?
- windows作業系統是由訊息驅動的,那linux呢,是由什麼驅動的,求高人解答,簡要將下原理,謝謝?
- 虛擬機器裝Linux我還能理解,裝Windows有什麼用?
- 虛擬機器怎樣切換回windows?
- Windows辨別檔案為什麼一定要副檔名?感覺Linux上要求就沒有這麼高?
- 為什麼windows系統有重新整理操作,而Linux卻不需要?
- 從技術角度出發看,Linux有沒有可能作為PC遊戲平臺並超越Windows?
- windows上的許可權管理機制是什麼?
- 學習python,公司裡用Linux多,還是windows多?
安裝Windows和Linux雙系統,啟動由linux的grub來引導,預設進入linux。如果要啟動win系統,在啟動的時候按下鍵選擇啟動win系統,可以修改/etc/grub.conf檔案來實現切換:
以root身份登入Linux系統
1
vim /etc/grub.conf
#開啟grub.conf啟動檔案
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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,8)
# kernel /vmlinuz-version ro
root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/hdc
default=0#啟動的系統
#default=0代表預設啟動序號為0的系統Linux,改成1即可預設啟動win系統
timeout=5 #等待時間
#修改啟動系統等待時間,可以有機會再開機的時候選擇Linux還是Windows
splashimage=(hd0,8)/grub/splash.xpm.gz
hiddenmenu #隱藏menu
title Fedora Core
(2.6.18-1.2798.fc6) #default=0
root (hd0,8)
kernel /vmlinuz-2.6.18-1.2798.fc6 ro
root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.18-1.2798.fc6.img
title Other#default=1 windows7
rootnoverify (hd0,0)
chainloader +1