锘??xml version="1.0" encoding="utf-8" standalone="yes"?>国产日韩欧美综合一区,国产精品黄页免费高清在线观看,激情六月综合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级毛片免费观看| 国产精品免费看久久久香蕉| 少妇内射兰兰久久| 99热精品久久只有精品| 模特私拍国产精品久久| 久久天堂电影网| 少妇久久久久久久久久| 久久久艹| 日韩欧美亚洲综合久久影院d3| 久久精品久久久久观看99水蜜桃| 91精品国产综合久久香蕉 | 亚洲国产日韩综合久久精品| 国产亚洲欧美精品久久久| 国产成人综合久久精品红| 精品久久久久一区二区三区| 欧美丰满熟妇BBB久久久| 日日狠狠久久偷偷色综合免费 | 青青青国产精品国产精品久久久久| 久久亚洲AV成人无码| 久久综合视频网站| 久久久久亚洲AV成人网| 精品久久久久久国产| 国产精品美女久久久m| 久久久久久国产精品免费无码| 久久婷婷人人澡人人爽人人爱| 热久久视久久精品18| 三级韩国一区久久二区综合| 久久九九久精品国产免费直播| 国产福利电影一区二区三区久久老子无码午夜伦不 | 亚洲综合伊人久久大杳蕉| 欧美精品九九99久久在观看| 久久精品中文字幕一区| 久久久久久青草大香综合精品| 久久国产精品二国产精品| 色诱久久av| 久久亚洲欧美国产精品| av无码久久久久久不卡网站 | 久久99精品国产麻豆婷婷| 国产一区二区精品久久凹凸| 久久九九久精品国产免费直播| 要久久爱在线免费观看|