Kickstart files to deploy Phyllome OS
Go to file
Lukas 4aed83c7ad remove libvirtd service activation
correct a mistake. Clearpart was removed
remove grub regeneration, as it doesn't seem to be necessary
2021-11-26 16:19:02 +01:00
blocks remove libvirtd service activation 2021-11-26 16:19:02 +01:00
blocks-live rename files 2021-11-26 16:13:00 +01:00
img Improve the readme 2021-11-04 13:09:12 +01:00
leaves rename files 2021-11-26 16:13:00 +01:00
post comment out some code 2021-11-08 17:43:23 +01:00
Code-of-Conduct.md Code of conduct, MIT License 2021-11-14 13:14:54 +01:00
LICENSE.md add a properly formated markdown license 2021-11-14 17:05:24 +01:00
README.md Update README.md 2021-11-15 15:31:11 +01:00

Phyllome OS

Virtualization for the rest of us

Phyllome OS is a Fedora Remix based on Fedora Server 35 designed to leverage hardware-assisted virtualization and paravirtualization to make it easier to run modern guest operating systems locally.

This is the alpha version of Phyllome OS. Expect bugs and disappointment.

External contributions to Phyllome OS are welcome. Have a look here for some ideas on what to do next, or feel free to create an issue and suggest an idea you wish to work on. Also, it might be good to skim through the white-paper to understand what it is about and what the project is trying to achieve.

The Phyllome OS Project is looking for core contributors, willing to contribute regularly to the project. If you are interested in making cutting-edge open-source virtualization more accessible, please send an email to contact@phyllo.me.

What

This repository contains the basic building blocks required to deploy Phyllome OS in a virtual machine, using kickstart files.

Kickstart files are used to automate the installation and configuration of RPM-based operating systems.

If you would like to install Phyllome OS on your computer, please follow this guide instead.

Structure of the repository

  • blocks : this directory contains the basic building blocks for assembling Phyllome OS Desktop and Phyllome OS Server.
    • This is where most of the development happens.
  • blocks-live : this directory contains the basic building blocks for creating a live medium for Phyllome OS.
    • The code in this directory usually lags behind what is found in the blocks directory.
    • The blocks and blocks-live repository will eventually be merged, and the number of blocks will be reduced to avoid code duplication.
  • leaves : this directory contains the end product in the form of stand-alone and ready-to-use kickstart files.
    • For instance, the Phyllome OS Desktop version optimized for Intel(tm) CPUs and Intel(tm) graphics cards, referred to internally as flat-dhi, is stored there (d stands for desktop, h for hypervisor and i for intel).
  • post : this directory contains scripts that are meant to be run after a successful installation, after Phyllome OS has started.
    • Ideally, these code snippets will be merged with existing building blocks, or summoned as a systemd unit.

How to hack Phyllome OS

Only Linux-based development is possible at the moment, sorry. Support for macOS and Windows-based development will follow.

As of now, hacking kickstart files is the main way to develop Phyllome OS.

Have a look here to learn the kickstart syntax.

Requirements

  • A Linux distribution, with a recent Linux Kernel (> 5.X)
  • A x86_64 platform with hardware-assisted virtualization enabled
  • Nested-virtualization enabled
  • virt-install and virt-manager, as well as libvirt and qemu-kvm up and running

Enable nested-virtualization on AMD-based systems, then reboot:

sudo echo "options kvm_amd nested=1" >> /etc/modprobe.d/kvm.conf

Enable nested-virtualization on Intel-based systems, then reboot:

sudo echo "options kvm_intel nested=1" >> /etc/modprobe.d/kvm.conf`

Install the prerequisites on Fedora 35

sudo dnf install -y qemu-kvm libvirt libvirt-daemon-config-network libvirt-daemon-kvm virt-install virt-top virt-manager libguestfs-tools python3-libguestfs guestfs-tools pykickstart

Install the prerequisites on Ubuntu 20.4 or Debian 11

To be done

Hack around

Clone this repository:

git clone https://github.com/PhyllomeOS/PhyllomeOS.git

Modify some files, typically inside the blocks directory.

When you are done, move to the flat directory:

cd ./PhyllomeOS/flat/

Then, merge the kickstart basic building blocks into a single file, a process called 'flattening'.

ksflatten -c ../blocks/dhi.cfg -o flat-dhi.cfg

If any errors are detected, go back and fix them.

Fire it up!

For testing purposes, Phyllome OS can be deployed inside a virtual machine, as a guest hypervisor.

The following command will automatically deploy the alpha version of Phyllome OS, tuned for Intel CPUs and Intel graphics cards.

It uses a Q35 virtual motherboard, a UEFI-based firmware, virtio-devices accross the board, 2 vCPUs, 4 GB of RAM and a disk of 5 GB.

Adjust it according to your needs.

When ready, copy and paste it to your terminal.

virt-install \
    --connect qemu:///system \
    --virt-type kvm \
    --arch x86_64 \
    --machine q35 \
    --name phyllome-alpha \
    --boot uefi \
    --cpu host-model,topology.sockets=1,topology.cores=2,topology.threads=1 \
    --vcpus 2 \
    --memory 4096 \
    --video virtio \
    --channel spicevmc \
    --autoconsole none \
    --sound none \
    --controller type=virtio-serial \
    --controller type=usb,model=none \
    --controller type=scsi,model=virtio-scsi \
    --network network=default,model=virtio \
    --input type=keyboard,bus=virtio \
    --input type=tablet,bus=virtio \
    --rng /dev/urandom,model=virtio \
    --disk path=/var/lib/libvirt/images/flat-dhi.img,format=raw,bus=virtio,cache=writeback,size=5 \
    --location=https://download.fedoraproject.org/pub/fedora/linux/releases/35/Everything/x86_64/os/ \
    --initrd-inject flat-dhi.cfg --extra-args "inst.ks=file:flat-dhi.cfg"

You should see the following message:

Starting install...
Retrieving file vmlinuz...                                  |  10 MB  00:00     
Retrieving file initrd.img...                               |  79 MB  00:02     
Allocating 'virtinst-inlu7cmw-vmlinuz'                      |  10 MB  00:00     
Transferring virtinst-inlu7cmw-vmlinuz                      |  10 MB  00:00     
Allocating 'virtinst-2dd8ghse-initrd.img'                   |  79 MB  00:00     
Transferring virtinst-2dd8ghse-initrd.img                   |  79 MB  00:01     
Allocating 'flat-dhi.img'                                 | 5.0 GB  00:00     

Domain is still running. Installation may be in progress.
You can reconnect to the console to complete the installation process.

The installation process will be launched behind the scenes. You can open virt-manager and connect to the virtual machine console to follow the process. Eventually, you will be greeted with this screen:

greetings

After you are done setting up your user account, virt-manager will automatically start:

greetings

If the installation is successful and your feature is working as intended, you are welcome to create a pull request. Thank you!

Phyllome OS

Phyllome OS goal is to maximize ease-of-use and compatibility. As such, it intends to become the easiest way to use modern operating systems locally, in a virtual machine, by integrating pertinent open-source software such as libvirt, qemu-kvm (and eventually Cloud Hypervisor), as well as virt-manager.

Users should not have to manage Phyllome OS: they should be able to pick their favorite operating system and Phyllome OS should run it, no questions asked.

Note : with the exception of open-source Darwin derivatives, Phyllome OS strongly discourages users from running proprietary, darwin-based derivatives on non-Apple hardware.

The Phyllome OS Project

The Phyllome OS Project relies on multiple tools, including the following public-facing tools:

  • Wiki: Take a look at the wiki repository for more information on how you can contribute to improving the documentation.
  • Issues tracker: a public, read-only issue tracking is available online. From now on, GitHub issue tracking will be used to track development-only issues.
  • Code repository: GitHub is used to host the code, with a mirror pointing to git.phyllo.me

License

  • MIT for the most part, with some GPL code.

Acknowledgement

Thanks to the main contributors of the official Fedora kickstart files repository, and related tools:

Adam Miller, Bastien Nocera, Bruno Wolff III, Bryan Kearney, Chitlesh Goorah, Christoph Wickert, Colin Walters, Fabian Affolter, Igor Pires Soares, Jens Petersen, Jeremy Katz, Jeroen van Meeuwen Jesse Keating, Luya Tshimbalanga, Matthias Clasen, Pedro Silva, Rahul Sundaram, Sebastian Dziallas Sebastian Vahl, wart. More information here : https://pagure.io/fedora-kickstarts