Home
Categories
WIKI
Topic
User
LANGUAGE:
中文
English
关于 Grub2 引导 livecd,简单说下
Experiences and Insight
872
views ·
1
replies ·
To
floor
Go
OwenJia
deepin
2014-04-17 06:33
Author
不知道有没有人发过这个,以 “grub iso” 为关键词搜了下没看到,不过我也没全翻完帖子~~
其实这个跟硬盘安装是一样的。
简单说下吧,如果你现在是用 grub2 启动的,或者u盘里装了 grub2 ,都可以用下面的方法直接启动 livecd。不需要刻录,只要 iso 文件在你的磁盘上,指明路径就可以~
在你的 grub.cfg 文件中添加类似下面的启动项,根据自己的情况修改下路径什么的就可以~
我的是放在了u盘根目录~
menuentry 'Deepin_2014_Alpha' {
insmod part_msdos
insmod ext2
set root=(hd0,1)
loopback loop /deepin_2014_alpha_zh-hans_amd64.iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/deepin_2014_alpha_zh-hans_amd64.iso locale=zh_CN.UTF-8 splash=silent noprompt noeject
initrd (loop)/casper/initrd.lz
}
Copy the Code
Reply
Like 0
Favorite
View the author
All Replies
181******88
deepin
2014-04-17 06:37
#1
对于小点的ISO确实是个好办法,但是用这个方法安装会出现一些莫名其妙的感觉! 个人感觉!!
Reply
Like 0
View the author
Please
sign
in first
Featured Collection
Change
UOS AI 2.8 Released! Three New Intelligent Agents & Major Evolution
Solid Q&A | deepin 25 Common Questions – The Immutable System Edition
New Thread
Popular Ranking
Change
What is "Switch between desktops" keyboard shortcut?
Dive into the Addictive World of Drift Hunters!
Popular Events
More
其实这个跟硬盘安装是一样的。
简单说下吧,如果你现在是用 grub2 启动的,或者u盘里装了 grub2 ,都可以用下面的方法直接启动 livecd。不需要刻录,只要 iso 文件在你的磁盘上,指明路径就可以~
在你的 grub.cfg 文件中添加类似下面的启动项,根据自己的情况修改下路径什么的就可以~
我的是放在了u盘根目录~