锘??xml version="1.0" encoding="utf-8" standalone="yes"?>国产日韩欧美综合一区,国产精品黄页免费高清在线观看,激情六月综合http://www.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://www.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.htmlJonsenElizeeJonsenElizeeFri, 23 Jul 2010 08:11:00 GMThttp://www.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.htmlhttp://www.shnenglu.com/JonsenElizee/comments/121119.htmlhttp://www.shnenglu.com/JonsenElizee/archive/2010/07/23/121119.html#Feedback0http://www.shnenglu.com/JonsenElizee/comments/commentRss/121119.htmlhttp://www.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://www.shnenglu.com/JonsenElizee/archive/2010/07/14/120337.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:25:00 GMThttp://www.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://www.shnenglu.com/JonsenElizee/archive/2010/07/14/120334.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:21:00 GMThttp://www.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://www.shnenglu.com/JonsenElizee/archive/2010/07/14/120333.htmlJonsenElizeeJonsenElizeeWed, 14 Jul 2010 07:20:00 GMThttp://www.shnenglu.com/JonsenElizee/archive/2010/07/14/120333.htmlWonderful WebSite




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

How && Where To Download RHEL



JonsenElizee 2010-07-14 11:48 鍙戣〃璇勮
]]>
日韩精品国产自在久久现线拍| 色欲av伊人久久大香线蕉影院| 久久ww精品w免费人成| 亚洲午夜精品久久久久久app| 国产成人精品久久一区二区三区av | 成人免费网站久久久| 久久婷婷成人综合色综合| 日本久久久久亚洲中字幕| 久久人人爽爽爽人久久久| 国产精品久久久天天影视| 国产精品一久久香蕉产线看| 久久伊人精品青青草原高清| 91久久香蕉国产熟女线看| 国内精品久久久久久不卡影院| 国产精品青草久久久久福利99 | 99久久伊人精品综合观看| 精品久久人人做人人爽综合| 国产日韩欧美久久| 久久久无码精品午夜| 精品国产乱码久久久久久呢 | 99久久精品国产高清一区二区 | 97视频久久久| 69SEX久久精品国产麻豆| 国产精品久久久天天影视香蕉| 女同久久| 国产亚洲美女精品久久久久狼| 国产呻吟久久久久久久92| 久久久久久免费视频| 97久久久久人妻精品专区| 久久人人爽人人爽AV片| 久久精品国产亚洲AV高清热| 日本精品久久久久中文字幕| 中文成人无码精品久久久不卡 | 91精品日韩人妻无码久久不卡 | 久久一区二区三区99| 色综合久久久久无码专区| 四虎国产精品免费久久久| 久久久久久久波多野结衣高潮| 亚洲国产精品久久久久婷婷软件| 久久这里都是精品| 99热热久久这里只有精品68|