You can't get PV AMI from hvm ec2 instance! Because they just using different virtualization types.
But you can convert it.
Amazon EC2: how to convert an existing PV AMI to HVM
it showing how to convert pv ami to hvm ami. But its similiar with your question.
Update*
Now your instance type is hvm. (And i think it is ubuntu)
And here is the step (i just edited) to get pv from it.
(If you have more than 2 server then note servers' анд volumes' id to prevent make mistake)
- Start an Ubuntu PV linux, any version, new
- Start an Ubuntu HVM linux, and install grub
packages on them: sudo apt-get install grub-pc grub-pc-bin
grub-legacy-ec2 grub-gfxpayload-lists
(if already installed thats ok)
- Stop HVM linux
- Detach root (/dev/sda1) partition at HVM linux
- Attach HVM linux root partition to running PV linux somewhere,
e.g.: /dev/sdf
- On PV linux: sudo mkdir -p /mnt/xvdf && sudo mount /dev/xvdf /mnt/xvdf
- sudo rsync -avzXA /boot/ /mnt/xvdf/boot/
- sudo mount -o bind /dev /mnt/xvdf/dev && sudo mount -o bind /dev/pts
/mnt/xvdf/dev/pts && sudo mount -o bind /proc /mnt/xvdf/proc && sudo mount -o bind
/sys /mnt/xvdf/sys
- chroot /mnt/xvdf
- grub-install --no-floppy --recheck --force /dev/xvdf
- update-grub2
- exit chroot: CTRL+D
- stop PV Linux
- detach /dev/sda1 original root AND detach /dev/sdf HVM root
- attach HVM root to PV linux as /dev/sda1
- Start PV linux, voilà!
- Create a new AMI image from the running PV linux, it will be PV
virtualized.
Doing all process takes around 40 minutes.