锘??xml version="1.0" encoding="utf-8" standalone="yes"?>草草久久久无码国产专区,久久发布国产伦子伦精品,国产精品久久久久国产A级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 鍙戣〃璇勮
]]>
久久久久久久久久久| 久久夜色精品国产| 久久久久久综合网天天| 久久久99精品成人片中文字幕| 久久综合狠狠综合久久综合88| 久久精品国产亚洲av麻豆图片| 久久激情亚洲精品无码?V| 久久精品国产亚洲网站| 色综合久久天天综合| 久久综合九色综合欧美狠狠| 精品久久久久香蕉网| 亚洲午夜久久久精品影院| 国产成人精品综合久久久| 久久国产成人亚洲精品影院| 久久久WWW成人| 2021国内精品久久久久久影院| 久久久久久精品免费免费自慰| 伊人久久精品无码av一区| 久久国产精品成人片免费| 99久久婷婷国产一区二区| 久久影视国产亚洲| 很黄很污的网站久久mimi色| 国产成人无码久久久精品一| 久久精品国产亚洲5555| 久久er热视频在这里精品| 久久综合88熟人妻| 囯产精品久久久久久久久蜜桃| 亚洲国产成人久久综合野外| 国产精品久久久久久久久久免费| 国产精品久久久久jk制服| 麻豆一区二区99久久久久| 伊人久久综合精品无码AV专区| 久久精品视频一| 久久精品国产欧美日韩99热| 久久伊人中文无码| 亚洲国产成人精品无码久久久久久综合| 99re久久精品国产首页2020| 看久久久久久a级毛片| 久久精品99久久香蕉国产色戒| 日韩久久久久久中文人妻 | 亚洲国产另类久久久精品黑人 |