暗无天日

=============>DarkSun的个人博客

在archlinux上挂载virtualbox磁盘镜像文件

  1. 安装QEMU

    pacman -S --noconfirm qemu
    
  2. 安装nbd(network block device)

    pacman -S --noconfirm nbd
    
  3. 加载nbd module

    modprobe nbd
    
  4. 使用qemu-nbd将virtualbox磁盘镜像文件模拟成block磁盘

    qemu-nbd -c /dev/nbd0 vdi-file
    
  5. 像正常挂载分区一样操作

    mount /dev/nbd0p1 /mnt
    
  6. umount分区

    umount /mnt
    
  7. 关闭nbd服务

    qemu-nbd -d /dev/nbd0