OpenStackPPC64Debian10: Difference between revisions

From Power Progress Community Projects Wiki
Jump to navigation Jump to search
(Created page with "To create the Debian 10 PPC64 Big Endian Image for OpenStack you need to run qemu-system-ppc64 and install debian. We run it qemu in a PPC64 Machine or a PowerMac or Image G...")
(No difference)

Revision as of 00:06, 7 December 2019

To create the Debian 10 PPC64 Big Endian Image for OpenStack you need to run qemu-system-ppc64 and install debian.


We run it qemu in a PPC64 Machine or a PowerMac or Image G5 or our NXP Devkit based on our PowerPC Notebook processor T2080 in a Installed Debian 10 PPC64 Big Endian.


First we load module kvm-pr:



modprobe kvm-pr

we download debian-10.0-ppc64-NETINST-1.iso


then we start qemu-system-ppc64 with the vnc sever at port 99


export DISTRO_ISO="debian-10.0-ppc64-NETINST-1.iso"<br>export DISTRO='debian-10.0'<br/>qemu-system-ppc64 --enable-kvm -m 2048M -boot strict=on -name $DISTRO -machine type=pseries,accel=kvm,kvm_type=2 -cdrom $DISTRO_ISO -netdev user,id=user.0,hostfwd=tcp::2222-:22 -device virtio-net,netdev=user.0 -drive file=$DISTRO.qcow2,if=virtio,cache=writeback,discard=ignore,format=qcow2 -vnc 0.0.0.0:99

in a machine connected to the same network we install a vnc client



apt install xtightvncviewer

and then start the client that point to the host machine where is running qemu



xtightvncviewer 192.168.1.21:99

a