|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!用U盘装置CentOS,假如利用默许的boot挂载,会将引诱装置在U盘上,必需用U盘启动,碰到这类情形能够经由过程grub手动写进引诱。(我在另外一台办事器上装置时手动设置boot可是装好停止在Grub没法启动,这个没深切研讨了,在这里就先说手动修正引诱***,给碰到一样成绩的人参考,若有毛病,接待拍砖)
进进grub
Linux代码
- [root@mfsmasterhome]#/sbin/grub
找到grub的地位
Linux代码
- grub>find/grub/stage1
- (hd1,0)
假如提醒Error15:Filenotfound,则实验find/boot/grub/stage1大概findstage1
(hd1,0)代表的第二个硬盘的第一个分区,响应的(hd0,0)代表的就是第一个硬盘第一个分区,这一步实在就是告知我们引诱被写进了U盘中==
上面进进正题
我们将引诱写进(hd0,0),即第一个磁盘第一个分区中,我在这里的体系盘是这个,详细能够在linux下用df指令检察
Linux代码
- grub>root(hd0,0)
- Filesystemtypeisext2fs,partitiontype0x83
- grub>setup(hd0)
- Checkingif"/boot/grub/stage1"exists...no
- Checkingif"/grub/stage1"exists...yes
- Checkingif"/grub/stage2"exists...yes
- Checkingif"/grub/e2fs_stage1_5"exists...yes
- Running"embed/grub/e2fs_stage1_5(hd0)"...15sectorsareembedded.
- succeeded
- Running"install/grub/stage1(hd0)(hd0)1+15p(hd0,0)/grub/stage2/grub/grub.conf"...succeeded
- Done.
- grub>reboot
然后修正启动的/boot/grub/menu.lst大概/boot/grub/grub.confCentOS下这两个文件是绑定的,改一个便可
Linux代码
- [root@mfsmasterhome]#vi/boot/grub/menu.lst
- #grub.confgeneratedbyanaconda
- #
- #Notethatyoudonothavetorerungrubafter***changestothisfile
- #NOTICE:Youhavea/bootpartition.Thismeansthat
- #allkernelandinitrdpathsarerelativeto/boot/,eg.
- #root(hd1,0)
- #kernel/vmlinuz-versionroroot=/dev/VolGroup00/LogVol00
- #initrd/initrd-version.img
- #boot=/dev/sdb
- default=0
- timeout=5
- splashimage=(hd0,0)/grub/splash.xpm.gz
- hiddenmenu
- titleCentOS(2.6.18-274.3.1.el5)
- root(hd0,0)
- kernel/vmlinuz-2.6.18-274.3.1.el5roroot=/dev/VolGroup00/LogVol00
- initrd/initrd-2.6.18-274.3.1.el5.img
- titleCentOS(2.6.18-238.el5)
- root(hd0,0)
- kernel/vmlinuz-2.6.18-238.el5roroot=/dev/VolGroup00/LogVol00
- initrd/initrd-2.6.18-238.el5.img
- titleOther
- rootnoverify(hd0,3)
- chainloader+1
把傍边的(hd1,0)都改成(hd0,0),splashimage=(hd0,0)/grub/splash.xpm.gz这个是开机引诱背景图片的地位,改不改都干系不年夜,重启CentOS就能够一般启动了
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|