Rabu, 07 Maret 2018

Cara Mounting image- qcow2 di VPS


cara mengatisi error mount: special device /dev/nbd0p1 does not exist di qcow2
Ini adalah panduan singkat untuk menginstal image-disk berbentuk qcow2 di VPS Anda. Ini berguna untuk install ulang distro linux di vps anda tanpa harus melewati panel setup di hosting yang anda sewa.

Step 1 - Enable NBD di Server/VPS
modprobe nbd max_part=8
Step 2 - Connect the QCOW2 as network block device
qemu-nbd --connect=/dev/nbd0 /var/lib/vz/images/100/vm-100-disk-1.qcow2
Step 3 - Find The Virtual Machine Partitions
fdisk /dev/nbd0 -l
Step 4 - Mount the partition from the VM
mount /dev/nbd0p1 /mnt/somepoint/
Step 5 - After you done, unmount and disconnect
umount /mnt/somepoint/
qemu-nbd --disconnect /dev/nbd0
rmmod nbd
 
...
Bila ketemu error seperti berikut:
mount: special device /dev/nbd0p1 does not exist

Jalankan perintah ini untuk mengatasinya : partx -a /dev/nbd0
selesai!

1 komentar: