引导加载程序grub的使用详解

引导加载程序grub的使用详解

  • 为运行于虚拟机上的CentOS 6添加一个新硬件,提供两个主分区

    • 为硬盘建两个主分区;并为其安装grub
    • 为硬盘的第一个主分区提供内核和ramdisk文件;为第二个分区提供rootfs
    • 为rootfs提供bash、ls、cat程序以及所依赖的库文件
    • 为grub提供配置文件
    • 将新的硬盘设置为第一启动项并能够正常启动目标主机

      • 1.新建分区

          [root@slave1 ~]# fdisk /dev/sdb
           Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
           Building a new DOS disklabel with disk identifier 0xf614f379.
           Changes will remain in memory only, until you decide to write them.
           After that, of course, the previous content won't be recoverable.
        
           Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
        
           WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
                    switch off the mode (command 'c') and change display units to
                    sectors (command 'u').
        
           Command (m for help): n
           Command action
              e   extended
              p   primary partition (1-4)
           1
           Invalid partition number for type `1'
           Command action
              e   extended
              p   primary partition (1-4)
           p
           Partition number (1-4): 1
           First cylinder (1-2610, default 1):
           Using default value 1
           Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610): +5G
        
           Command (m for help): n
           Command action
              e   extended
              p   primary partition (1-4)
           p
           Partition number (1-4): 2
           First cylinder (655-2610, default 655):
           Using default value 655
           Last cylinder, +cylinders or +size{K,M,G} (655-2610, default 2610): +5G
        
           Command (m for help): w
           The partition table has been altered!
        
           Calling ioctl() to re-read partition table.
           Syncing disks.
           [root@slave1 ~]# fdisk -l
        
           Disk /dev/sda: 21.5 GB, 21474836480 bytes
           255 heads, 63 sectors/track, 2610 cylinders
           Units = cylinders of 16065 * 512 = 8225280 bytes
           Sector size (logical/physical): 512 bytes / 512 bytes
           I/O size (minimum/optimal): 512 bytes / 512 bytes
           Disk identifier: 0x00026a25
        
              Device Boot      Start         End      Blocks   Id  System
           /dev/sda1   *           1          64      512000   83  Linux
           Partition 1 does not end on cylinder boundary.
           /dev/sda2              64        2611    20458496   8e  Linux LVM
        
           Disk /dev/sdb: 21.5 GB, 21474836480 bytes
           255 heads, 63 sectors/track, 2610 cylinders
           Units = cylinders of 16065 * 512 = 8225280 bytes
           Sector size (logical/physical): 512 bytes / 512 bytes
           I/O size (minimum/optimal): 512 bytes / 512 bytes
           Disk identifier: 0xf614f379
        
              Device Boot      Start         End      Blocks   Id  System
           /dev/sdb1               1         654     5253223+  83  Linux
           /dev/sdb2             655        1308     5253255   83  Linux
        
           Disk /dev/mapper/vg_slave1-lv_root: 18.9 GB, 18865979392 bytes
           255 heads, 63 sectors/track, 2293 cylinders
           Units = cylinders of 16065 * 512 = 8225280 bytes
           Sector size (logical/physical): 512 bytes / 512 bytes
           I/O size (minimum/optimal): 512 bytes / 512 bytes
           Disk identifier: 0x00000000
        
           Disk /dev/mapper/vg_slave1-lv_swap: 2080 MB, 2080374784 bytes
           255 heads, 63 sectors/track, 252 cylinders
           Units = cylinders of 16065 * 512 = 8225280 bytes
           Sector size (logical/physical): 512 bytes / 512 bytes
           I/O size (minimum/optimal): 512 bytes / 512 bytes
           Disk identifier: 0x00000000
      • 2.挂载boot和根文件系统

           [root@slave1 ~]# mke2fs -t ext4 /dev/sdb1
           [root@slave1 ~]# mke2fs -t ext4 /dev/sdb2
           [root@slave1 ~]# mkdir /myroot
           [root@slave1 ~]# mkdir /myroot/boot
           [root@slave1 ~]# mount /dev/sdb2 /myroot/boot
           [root@slave1 ~]# mkdir /myroot/sysroot
           [root@slave1 ~]# mount /dev/sdb1 /myroot/sysroot
           [root@slave1 myroot]# vi /etc/fstab
           /dev/sdb1               /myroot/sysroot                ext4     defaults        1 1
           /dev/sdb2               /myroot/boot           ext4     defaults        1 2
      • 3.安装配置grub

           [root@slave1 /]# grub-install --root-directory=/myroot /dev/sdb
           [root@slave1 boot]# cp /boot/vmlinuz-2.6.32-431.el6.x86_64 /myroot/boot/
           [root@slave1 boot]# cp /boot/initramfs-2.6.32-431.el6.x86_64.img /myroot/boot/
           [root@slave1 grub]# vim /myroot/boot/grub/grub.conf
            default=0
            timeout=5
            title centos6.5 simple
               root (hd1,1)
               kernel /vmlinuz-2.6.32-431.el6.x86_64 ro root=/dev/sdb1 selinux=0 init=/bin/bash
               initrd /initramfs-2.6.32-431.el6.x86_64.img
      • 4.创建根文件系统

           [root@slave1 myroot]# mkdir etc bin sbin lib lib64 usr home root sys proc var mnt media
           [root@slave1 myroot]# cp /bin/{bash,ls,cat} /myroot/bin/
           [root@slave1 bin]# ldd bash
                   linux-vdso.so.1 =>  (0x00007fffc5f45000)
                   libtinfo.so.5 => /lib64/libtinfo.so.5 (0x00007f0fbe3f8000)
                   libdl.so.2 => /lib64/libdl.so.2 (0x00007f0fbe1f4000)
                   libc.so.6 => /lib64/libc.so.6 (0x00007f0fbde5f000)
                   /lib64/ld-linux-x86-64.so.2 (0x00007f0fbe622000)
           [root@slave1 bin]# cp  /lib64/{libtinfo.so.5,libdl.so.2,libc.so.6,ld-linux-x86-64.so.2}  /myroot/lib64/
           [root@slave1 bin]# ldd ls
                   linux-vdso.so.1 =>  (0x00007fff6adfe000)
                   libselinux.so.1 => /lib64/libselinux.so.1 (0x00007fd0f7832000)
                   librt.so.1 => /lib64/librt.so.1 (0x00007fd0f762a000)
                   libcap.so.2 => /lib64/libcap.so.2 (0x00007fd0f7425000)
                   libacl.so.1 => /lib64/libacl.so.1 (0x00007fd0f721d000)
                   libc.so.6 => /lib64/libc.so.6 (0x00007fd0f6e89000)
                   libdl.so.2 => /lib64/libdl.so.2 (0x00007fd0f6c84000)
                   /lib64/ld-linux-x86-64.so.2 (0x00007fd0f7a5a000)
                   libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fd0f6a67000)
                   libattr.so.1 => /lib64/libattr.so.1 (0x00007fd0f6862000)
           [root@slave1 bin]# cp /lib64/ {libselinux.so.1,librt.so.1,libcap.so.2,libacl.so.1,libc.so.6,libdl.so.2,ld-linux-x86-64.so.2,libpthread.so.0,libattr.so.1} /myroot/lib64/   
             cp: overwrite `/myroot/lib64/libc.so.6'? no
             cp: overwrite `/myroot/lib64/libdl.so.2'? no
             cp: overwrite `/myroot/lib64/ld-linux-x86-64.so.2'? no
           [root@slave1 bin]# ldd cat
                   linux-vdso.so.1 =>  (0x00007fff749e7000)
                   libc.so.6 => /lib64/libc.so.6 (0x00007f6bdc516000)
                   /lib64/ld-linux-x86-64.so.2 (0x00007f6bdc8b3000)
           [root@slave1 bin]# cp  /lib64/{libc.so.6,ld-linux-x86-64.so.2} /myroot/lib64/
             cp: overwrite `/myroot/lib64/libc.so.6'? no
             cp: overwrite `/myroot/lib64/ld-linux-x86-64.so.2'? no
      • 5.更改启动项

        • 点击菜单栏的虚拟机选项,下拉菜单里点击电源,电源选项里选择打开电源时进入固件,进入BIOS设置界面,选择boot菜单里的VMware Virtual SCSI Hard Drive(0:1)将新的硬盘设置为第一启动项,保存

原创文章,作者:N27_xiaoni,如若转载,请注明出处:http://www.178linux.com/85827

(3)
N27_xiaoniN27_xiaoni
上一篇 2017-09-04
下一篇 2017-09-04

相关推荐

  • Ansible(From Wikipedia)

           Ansible 是一个免费的用于配置和管理计算机的的软件平台。它集成了软件部署,ad hoc任务执行,和管理配置的功能。它依赖Python2.4之后的版本和通过SSH或者PowerShell管理节点。模块工作在JSON格式,输出信息可以被任何编程语言再次编写。系统管理员可以使用YAML…

    Linux干货 2015-11-18
  • 知识提炼之0714

    history          history[-c] [-d offset] [n]          history-anrw [filename]    &nbs…

    Linux干货 2017-07-14
  • sed命令

    Linux sed命令是利用script来处理文本文件。 sed可依照script的指令,来处理、编辑文本文件。 Sed主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换程序等。 语法 sed [-hnV][-e<script>][-f<script文件>][文本文件] 参数说明: -e<script&gt…

    Linux干货 2016-08-12
  • vim小结

    1. 简介 Vim(Vi[Improved])编辑器是功能强大的跨平台文本文件编辑工具,继承自Unix系统的Vi编辑器,支持Linux/Mac OS X/Windows系统,利用它可以建立、修改文本文件。进入Vim编辑程序,可以在终端输入下面的命令: $vim [filename] 其中filename是要编辑器的文件的路径名。如果文件不存在,它将…

    Linux干货 2016-08-12
  • N24期第四周作业

    1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 2、编辑/etc/group文件,添加组hadoop。 vim /etc/group,增加此行 3、手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组ID为hadoop组的id号;其家目录为/home…

    Linux干货 2016-11-22
  • 计划任务&脚本进阶练习

    1、每天的2点和12点整,将/etc备份至/testdir/backup目录中,保存的文件名称格式为“etcbak-yyyy-mm-dd-HH.tar.xz” mkdir /testdir/backup vim /root/bin/etcbak.sh tar cvf /testdir/backup/etcbak-`date “+%F-%H”`.tar.xz …

    Linux干货 2017-03-26

评论列表(1条)

  • 马哥教育
    马哥教育 2017-10-10 13:01

    看完的眼都花了,完成的很不错,讲解的也比较清楚。注意给代码着色,增加可读性。