From 562e8da1fad79bf00c21348717939837edea8aeb Mon Sep 17 00:00:00 2001 From: Mahdi Dibaiee Date: Sat, 6 Nov 2021 13:09:29 +0000 Subject: [PATCH] linux contribution draft --- _posts/2021-11-06-linux-contribution.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 _posts/2021-11-06-linux-contribution.md diff --git a/_posts/2021-11-06-linux-contribution.md b/_posts/2021-11-06-linux-contribution.md new file mode 100644 index 0000000..77a9225 --- /dev/null +++ b/_posts/2021-11-06-linux-contribution.md @@ -0,0 +1,21 @@ +--- +layout: post +title: "My first contribution to Linux Kernel: Step by step" +date: 2021-11-06 00:00:00 +permalink: first-linux-contribution/ +categories: programming +author: Mahdi +draft: true +--- + +November 6th: +Create a virtual machine for Archlinux on my macOS using QEMU: +- [Download the Archlinux iso image](https://archlinux.org/download/) +- Create a qemu disk: +{% highlight bash %} +qemu-img create disk.img 5G +{% endhighlight %} +- Start the machine and [install Archlinux](https://wiki.archlinux.org/title/Installation_guide) +{% highlight bash %} +qemu-system-x86_64 -cdrom archlinux-2021.11.01-x86_64.iso -drive file=disk.img -m 2048 +{% endhighlight %}