theread.me/_posts/2021-11-06-linux-contribution.md

657 B

layout title date permalink categories author draft
post My first contribution to Linux Kernel: Step by step 2021-11-06 00:00:00 first-linux-contribution/ programming Mahdi true

November 6th: Create a virtual machine for Archlinux on my macOS using QEMU:

  • Download the Archlinux iso image
  • Create a qemu disk: {% highlight bash %} qemu-img create disk.img 5G {% endhighlight %}
  • Start the machine and install Archlinux {% highlight bash %} qemu-system-x86_64 -cdrom archlinux-2021.11.01-x86_64.iso -drive file=disk.img -m 2048 {% endhighlight %}