How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "voegelas/debian-ppc64"
config.vm.box_version = "20220603"
end
vagrant init voegelas/debian-ppc64 \
--box-version 20220603
vagrant up
This version was created 24 days ago.
This Debian image provides a big-endian 64-bit PowerPC, which is useful for testing software for byte order bugs.
Install the package qemu-system-ppc and create a Vagrantfile with the following settings:
Vagrant.configure("2") do |config|
config.vm.box = "voegelas/debian-ppc64"
config.vm.define "libvirt" do |libvirt|
config.vm.provider :libvirt do |v|
v.driver = "qemu"
v.machine_arch = "ppc64"
v.machine_type = "pseries"
v.cpu_mode = "custom"
v.cpu_model = "POWER8"
v.video_type = "vga"
end
end
end