当前位置:首页 > linux教程 > 列表

在KVM或Xen下挂载一个镜像文件(how to mount an image file)的两种方

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-20 17:27:04 浏览: 评论:0 

在使用KVM或Xen虚拟化的情况下,经常需要使用镜像文件(image file),我们可以将Guest系统启动起来,然后对镜像文件进行修改,不过这样有时也是比较麻烦,其实也是可以将镜像文件直接进行mount的,可以用如下两种办法.

方法一:找出分区开始的开始位置,使用mount命令的offset参数偏移掉前面不需要的,即可得到真正的分区,其具体步骤如下.

1.用“fdisk -lu my.img”查询image信息;

2.计算image内分区开始的地方(计算offset),用从N号sector(扇区)开始,则offset=N*M (M为一个sector的大小,一般为512).

3.使用mount命令挂载为loop设备即可,如LVM分区,则会较复杂,请见本文最后的介绍).

在Linux系统上具体操作演示如下:

  1. [root@jay-linux image]# fdisk -lu rhel6u2.img 
  2. You must set cylinders. 
  3. You can do this from the extra functions menu. 
  4.  
  5. Disk rhel6u2.img: 0 MB, 0 bytes 
  6. 255 heads, 63 sectors/track, 0 cylinders, total 0 sectors 
  7. Units = sectors of 1 * 512 = 512 bytes 
  8. Sector size (logical/physical): 512 bytes / 512 bytes 
  9. I/O size (minimum/optimal): 512 bytes / 512 bytes 
  10. Disk identifier: 0x00048b34 
  11.  
  12.       Device Boot      Start         End      Blocks   Id  System 
  13. rhel6u2.img1   *        2048     1026047      512000   83  Linux 
  14. Partition 1 does not end on cylinder boundary. 
  15. rhel6u2.img2         1026048   104857599    51915776   8e  Linux LVM 
  16. Partition 2 has different physical/logical endings: 
  17.      phys=(1023, 254, 63) logical=(6527, 21, 22) 
  18. [root@jay-linux image]# echo $((2048*512)) 
  19. 1048576 
  20. [root@jay-linux image]# mount -o loop,offset=1048576 rhel6u2.img /media/ 
  21. [root@jay-linux image]# cd /media/ 
  22. [root@jay-linux media]# ls 
  23. config-2.6.32-220.el6.x86_64         initramfs-3.5.0.img               System.map-2.6.32-279.el6.x86_64 
  24. config-2.6.32-279.el6.x86_64         lost+found                        System.map-3.5.0 
  25. efi                                  symvers-2.6.32-220.el6.x86_64.gz  vmlinuz 
  26. grub                                 symvers-2.6.32-279.el6.x86_64.gz  vmlinuz-2.6.32-220.el6.x86_64 
  27. initramfs-2.6.32-220.el6.x86_64.img  System.map                        vmlinuz-2.6.32-279.el6.x86_64 
  28. initramfs-2.6.32-279.el6.x86_64.img  System.map-2.6.32-220.el6.x86_64  vmlinuz-3.5.0  --phpfensi.com 
  29. [root@jay-linux media]# echo $((1026048*512)) 
  30. 525336576 
  31. [root@jay-linux media]# umount /media 
  32. [root@jay-linux media]# cd /home/image/ 
  33. [root@jay-linux image]# umount /media 
  34. [root@jay-linux image]# mount -o loop,offset=525336576 rhel6u2.img /media/ 
  35. mount: unknown filesystem type 'LVM2_member' 

镜像文件中的LVM分区mount的问题,本文最后单独说明,代码如下:

  1. [root@jay-linux image]# fdisk -lu sles11sp2-i386.img 
  2. You must set cylinders. 
  3. You can do this from the extra functions menu. 
  4.  
  5. Disk sles11sp2-i386.img: 0 MB, 0 bytes 
  6. 255 heads, 63 sectors/track, 0 cylinders, total 0 sectors 
  7. Units = sectors of 1 * 512 = 512 bytes 
  8. Sector size (logical/physical): 512 bytes / 512 bytes 
  9. I/O size (minimum/optimal): 512 bytes / 512 bytes 
  10. Disk identifier: 0x0002d3be 
  11.  
  12.              Device Boot      Start         End      Blocks   Id  System 
  13. sles11sp2-i386.img1            2048     4208639     2103296   82  Linux swap / Solaris 
  14. Partition 1 does not end on cylinder boundary. 
  15. sles11sp2-i386.img2   *     4208640    41943039    18867200   83  Linux 
  16. Partition 2 has different physical/logical endings: 
  17.      phys=(1023, 254, 63) logical=(2610, 212, 34) 
  18. [root@jay-linux image]# echo $((4208640*512)) 
  19. 2154823680 
  20. [root@jay-linux image]# mount -o loop,offset=2154823680 sles11sp2-i386.img /media 
  21. [root@jay-linux image]# cd /media/ 
  22. [root@jay-linux media]# ls 
  23. bin   dev  home  lost+found  mnt  proc  sbin     srv      sys  usr 
  24. boot  etc  lib   media       opt  root  selinux  success  tmp  var 
  25. [root@jay-linux image]# umount /media/ 

方法二:用kpartx建立分区映射后,再mount映射后的设备即可,操作实例如下:

  1. [root@jay-linux image]# kpartx -av sles11sp2-i386.img 
  2. add map loop3p1 (253:2): 0 4206592 linear /dev/loop3 2048 
  3. add map loop3p2 (253:3): 0 37734400 linear /dev/loop3 4208640 
  4.  
  5. [root@jay-linux image]# mount /dev/mapper/loop3p2 /media/ 
  6.  
  7. [root@jay-linux image]# ls /media/ 
  8. bin   dev  home  lost+found  mnt  proc  sbin     srv      sys  usr 
  9. boot  etc  lib   media       opt  root  selinux  success  tmp  var 
  10. [root@jay-linux image]# umount /media/ 
  11. [root@jay-linux image]# mount /dev/mapper/loop3p1 /media/ 
  12. /dev/mapper/loop3p1 looks like swapspace - not mounted 
  13. mount: you must specify the filesystem type 

其中的交换分区,我也还不知道是否可以mount,其实mount交换分区也没意义,使用完成后,卸载挂载点、删除映射关系即可,代码如下:

  1. [root@jay-linux image]# umount /media/ 
  2. [root@jay-linux image]# kpartx -d sles11sp2-i386.img 
  3. loop deleted : /dev/loop3 

关于LVM的mount,可以参考文末参考资料中的vpsee的文章,我也是试多次没做成功,才偶然看到这篇文章的,我对镜像文件中LVM分区的mount操作如下供参考.

  1. [root@jay-linux image]# fdisk -lu rhel6u2.img 
  2. You must set cylinders. 
  3. You can do this from the extra functions menu. 
  4.  
  5. Disk rhel6u2.img: 0 MB, 0 bytes 
  6. 255 heads, 63 sectors/track, 0 cylinders, total 0 sectors 
  7. Units = sectors of 1 * 512 = 512 bytes 
  8. Sector size (logical/physical): 512 bytes / 512 bytes 
  9. I/O size (minimum/optimal): 512 bytes / 512 bytes 
  10. Disk identifier: 0x00048b34 
  11.  
  12.       Device Boot      Start         End      Blocks   Id  System 
  13. rhel6u2.img1   *        2048     1026047      512000   83  Linux 
  14. Partition 1 does not end on cylinder boundary. 
  15. rhel6u2.img2         1026048   104857599    51915776   8e  Linux LVM 
  16. Partition 2 has different physical/logical endings: 
  17.      phys=(1023, 254, 63) logical=(6527, 21, 22) 
  18. [root@jay-linux image]# echo $((1026048*512)) 
  19. 525336576 
  20. [root@jay-linux image]# losetup /dev/loop0 rhel6u2.img -o 525336576 
  21. [root@jay-linux image]# pvscan 
  22.   PV /dev/loop0   VG VolGroup   lvm2 [49.51 GiB / 0    free
  23.   Total: 1 [49.51 GiB] / in use: 1 [49.51 GiB] / in no VG: 0 [0   ] 
  24. [root@jay-linux image]# vgchange -ay VolGroup 
  25.   2 logical volume(s) in volume group "VolGroup" now active 
  26. [root@jay-linux image]# lvs 
  27.   LV      VG       Attr     LSize  Pool Origin Data%  Move Log Copy%  Convert  --phpfensi.com 
  28.   lv_root VolGroup -wi-a--- 45.57g 
  29.   lv_swap VolGroup -wi-a---  3.94g 
  30. [root@jay-linux image]# mount /dev/VolGroup/lv_root /media/ 
  31. [root@jay-linux image]# ls /media/ 
  32. bin   cgroup  etc   lib    lost+found  misc  net  proc  sbin     srv  tmp  var 
  33. boot  dev     home  lib64  media       mnt   opt  root  selinux  sys  usr 

使用完后的卸载操作,代码如下:

  1. [root@jay-linux image]# umount /media/ 
  2. [root@jay-linux image]# vgchange -an VolGroup 
  3.   0 logical volume(s) in volume group "VolGroup" now active 
  4. [root@jay-linux image]# losetup -d /dev/loop0

Tags: Xen镜像文件 KVM挂载

分享到: