锘??xml version="1.0" encoding="utf-8" standalone="yes"?>草草久久久无码国产专区,久久发布国产伦子伦精品,国产精品久久久久国产A级http://m.shnenglu.com/JonsenElizee/category/13510.htmlC++ Blog <BR> <BR> "An idea is fragile . It can be killed by a scornful smile or a yawn .It can be mound down by irony and scared to death by a cold look." <BR> "Most cultures throughout human history have not liked creative individuals .They ignore them or kill them.It is a very efficient way of stopping creativity." <BR> <BR> ------Advertising boss Charles Browe and Howard Gardner ,professor at Harvard zh-cnThu, 19 Aug 2010 06:40:17 GMTThu, 19 Aug 2010 06:40:17 GMT60How to Install Linux System via Hard Disk http://m.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.htmlJonsenElizeeJonsenElizeeFri, 23 Jul 2010 08:11:00 GMThttp://m.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.htmlhttp://m.shnenglu.com/JonsenElizee/comments/121119.htmlhttp://m.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.html#Feedback0http://m.shnenglu.com/JonsenElizee/comments/commentRss/121119.htmlhttp://m.shnenglu.com/JonsenElizee/services/trackbacks/121119.html

One precondition to make clear:

    My OS is a linux system and there is no Windows system installed on my PC.

    There is no CD or USB with size of more than 2G. Now,

    I'm gonna install new version of linux system via a iso file stored in my system, /opt/sys/iso/el5.5.iso.


Just make clear about grub and partition information about my PC.

[root@localhost ~]# fdisk -l

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1        2611    20972826   83  Linux
/dev/sda2            2612        3133     4192965   82  Linux swap / Solaris
/dev/sda3            3134       14593    92052450   83  Linux
[root@localhost ~]#

as you see, there is no /boot partition on my pc. there are 3 partitions mounted when my OS is running.

from the * char, we know the /boot is contained in /, it's /dev/sda1

/dev/sda3, what's this? this is the /opt partition I made. from the following information, you will be quite aware of it.

and remember the label of / and /opt, and they are /1 and /opt.

[root@localhost ~]# more /etc/fstab
LABEL=/1                /                       ext3    defaults        1 1
LABEL=/opt              /opt                    ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
LABEL=SWAP-sda2         swap                    swap    defaults        0 0
[root@localhost ~]#

The following codes are the content of my /boot/grub/menu.lst


[root@localhost grub]# more menu.lst
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You do not have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /, eg.
#          root (hd0,0)
#          kernel /boot/vmlinuz-version ro root=/dev/sda1
#          initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=3
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server 5.4 (2.6.18-164.el5)
        root (hd0,0)
        kernel /boot/vmlinuz-2.6.18-164.el5 ro root=LABEL=/1 rhgb quiet
        initrd /boot/initrd-2.6.18-164.el5.img
title Red Hat Enterprise Linux Server 5.5 (2.6.18-164.el5)
        root (hd0,2)
        kernel /ins/iso/isolinux/vmlinuz ro root=LABEL=/1 rhgb quiet
        initrd /ins/iso/isolinux/initrd.img
[root@localhost grub]#


comments for Red Hat Enterprise Linux Server 5.5 (2.6.18-164.el5)

title Red H...: title command to show the title of this boot menu item. write whatever you want.

for example: title New Linux System to Install


root (hd0,2): root command, it sets the root for grub to locate the kernel, initrd and iso files.


kernel /ins...: kernel command, it sets the kernel file to load. vmlinuz file is extracted from iso file and be stored under /opt/ins/iso/isolinux/ directory. why did I store vmlinuz, initrd and iso on /opt partition? Answer is I want to format the / partition. If you want too, please store your iso file, vmlinuz file and initrd file on a partition that will not be formatted when you install the new system.

For the /opt is individual partition, so, write as these words please: /ins/iso/isolinux..... and not /opt/ins/iso/isolinux.... root=LABEL=/1, this is to set the linux system root for grub, not the root of grub when it load the vmlinuz and initrd file. this root is for system, not for grub. Of course, my root partition is denoted by /1 or /dev/sda1. you can write like this too: root=/dev/sda1. ro means "read only". rhgb and quiet are no need to know for this action. or you can refer to grub manual.

initrd /ins...: initrd command to set initrd file for loading. For the same reason of partition /opt, please write /ins/iso/isolinux..., not /opt/ins/...

OK, that's all. just reboot your system and choose the tile you given for title command.

Any question for "Installing Linux System from ISO File Stored on Hard Disk"?

Good luck.
 



JonsenElizee 2010-07-23 16:11 鍙戣〃璇勮
]]>
HowT.repair.grubhttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120337.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:25:00 GMThttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120337.html HowTo.repair.grub for Linux When Grub Crashed



JonsenElizee 2010-07-14 15:25 鍙戣〃璇勮
]]>
Install Linux System via Hard Diskhttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120334.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:21:00 GMThttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120334.htmlInstall Linux System via Hard Disk


JonsenElizee 2010-07-14 15:21 鍙戣〃璇勮
]]>
Wonderful Websites for Linux Downloadinghttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120333.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:20:00 GMThttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120333.htmlWonderful WebSite




JonsenElizee 2010-07-14 15:20 鍙戣〃璇勮
]]>
How & Where To Download Redhat Enterprise Linuxhttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120311.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 03:48:00 GMThttp://m.shnenglu.com/JonsenElizee/archive/2010/07/14/120311.html

How && Where To Download RHEL



JonsenElizee 2010-07-14 11:48 鍙戣〃璇勮
]]>
a级成人毛片久久| 青青青青久久精品国产| 久久青青草原精品国产不卡| 欧美伊人久久大香线蕉综合69 | 狠狠色噜噜狠狠狠狠狠色综合久久 | 久久丫精品国产亚洲av不卡 | 亚洲欧美成人久久综合中文网| 久久笫一福利免费导航 | 亚洲日韩欧美一区久久久久我| 久久精品综合一区二区三区| 中文字幕人妻色偷偷久久| 久久香蕉超碰97国产精品| 99久久成人18免费网站| 狠狠色婷婷久久综合频道日韩| 99久久中文字幕| 久久精品人妻中文系列| 99久久亚洲综合精品网站| 伊人久久五月天| 国产999精品久久久久久| 热re99久久精品国99热| 性做久久久久久久久| 天天久久狠狠色综合| 久久精品国产99久久久| 日韩人妻无码一区二区三区久久99| 93精91精品国产综合久久香蕉| 久久人人爽人人爽人人AV东京热| 久久久久国产成人精品亚洲午夜| 久久99国产精品99久久| 久久A级毛片免费观看| 人妻无码中文久久久久专区| 怡红院日本一道日本久久 | 日韩欧美亚洲国产精品字幕久久久| 欧美黑人激情性久久| 精品久久久无码人妻中文字幕| 色偷偷88欧美精品久久久 | 午夜精品久久久久久久| 中文字幕亚洲综合久久菠萝蜜| 狠狠综合久久综合中文88| 亚洲一本综合久久| 91性高湖久久久久| 久久久国产精华液|