1、映射qcow2镜像到nbd设备

为什么要修改qcow2镜像呢?因为这个镜像中的网口默认是不启动的,想把网口改为默认启动

# ls -l
-rw-r--r--. 1 root root 1617625088 Jun  8 23:09 centos7.7.qcow2
# qemu-nbd --connect=/dev/nbd0 centos7.7.qcow2

2、镜像分区

可以看到镜像中有两个分区,其中第一个是boot分区,第二个是lvm分区

# fdisk -l /dev/nbd0

Disk /dev/nbd0: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x00072170

     Device Boot      Start         End      Blocks   Id  System
/dev/nbd0p1   *        2048     2099199     1048576   83  Linux
/dev/nbd0p2         2099200   104857599    51379200   8e  Linux LVM

3、mount镜像分区

mount后,可以直接修改分区中的文件,可以修改grub中的配置文件

# mkdir tmp
# mount /dev/nbd0p1 tmp/
# ls tmp/
config-3.10.0-1062.el7.x86_64  initramfs-0-rescue-6f9bcc60986041238dcda79bfef462d5.img  System.map-3.10.0-1062.el7.x86_64
efi                            initramfs-3.10.0-1062.el7.x86_64.img                     vmlinuz-0-rescue-6f9bcc60986041238dcda79bfef462d5
grub                           initramfs-3.10.0-1062.el7.x86_64kdump.img                vmlinuz-3.10.0-1062.el7.x86_64
grub2                          symvers-3.10.0-1062.el7.x86_64.gz
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐