[Qemu-discuss] QEMU advent calendar 2018

2018-11-30 Thread Thomas Huth
Hi everybody! Starting today, on December 1st, the first door of the QEMU Advent Calendar 2018 can now be opened! The advent calendar reveals a new disk image for download on each of the first 24 days in December 2018, to create a fun experience for the QEMU community, to celebrate the 15th anniv

Re: [Qemu-discuss] Issue related to mounting /dev/nbd0p1

2018-11-30 Thread Pascal
do not create nodes manually but with fdisk on nbd0 : # fdisk /dev/nbd0 ## now create your partitions in fdisk ## use w to write changes and q to quit fdisk # blocdev --rereadpt /dev/nbd0 # ls /dev/nbd0* ## you will now have /dev/nbd0, /dev/nbd0p1 and /dev/nbd0p2 if this is not the case while t

Re: [Qemu-discuss] Issue related to mounting /dev/nbd0p1

2018-11-30 Thread ramakanth varala
Hi Pascal & Jakob, I started from first . I created manully the partitions as below 27 mknod /dev/nbd0p1 b 1 4 28 mknod /dev/nbd0p2 b 1 4 still in /proc/partitions i don't see any info , it shows as below [root@localhost ~]# cat /proc/partitions major minor #blocks name 8 0

Re: [Qemu-discuss] Issue related to mounting /dev/nbd0p1

2018-11-30 Thread Pascal
restart from zero if possible... # qemu-nbd -d /dev/nbd0 # modprobe -rv nbd # modprobe nbd # qemu-nbd -c /dev/nbd0 /the/file # blockdev --rereadpt /dev/nbd0 # fdisk -l /dev/nbd0 # mount /dev/nbd0p1 /mount/point Le jeu. 29 nov. 2018 à 17:32, Jakob Bohm a écrit : > Check > > cat /proc/partit