From 28e48d3d46ac60fec97475f023f8fc05b1f2b43b Mon Sep 17 00:00:00 2001 From: Mahdi Dibaiee Date: Fri, 19 Nov 2021 20:51:24 +0000 Subject: [PATCH] improve performance --- _posts/2021-11-06-linux-contribution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2021-11-06-linux-contribution.md b/_posts/2021-11-06-linux-contribution.md index 0b62619..3b0c0a6 100644 --- a/_posts/2021-11-06-linux-contribution.md +++ b/_posts/2021-11-06-linux-contribution.md @@ -17,7 +17,7 @@ qemu-img create disk.img 15G {% 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 -boot order=d -drive format=raw,file=disk.img -m 8G +qemu-system-x86_64 -cdrom archlinux-2021.11.01-x86_64.iso -boot order=d -drive format=raw,file=disk.img -m 8G -smp cpus=4 {% endhighlight %} - Start the machine after installing {% highlight bash %} @@ -41,7 +41,7 @@ zcat /proc/config.gz > .config {% endhighlight %} - Make! {% highlight bash %} -make +make -j8 {% endhighlight %} - Install the newly built Kernel {% highlight bash %}