From c8a2280a12b657fcc1ac26f0307dc85373158e10 Mon Sep 17 00:00:00 2001 From: moonchildgv Date: Mon, 24 Apr 2023 00:50:14 +0200 Subject: [PATCH] initial version --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a5b76b --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# Linux-Zen on Manjaro + +Maybe you don't know that to install the Linux-zen on manjaro it is not possible through the mirrorlists of the distro (neither through Pacman nor through Yay). But it is possible to circumvent the problem with simple steps. + +***Why install zen kernel?*** + +- *It a kernel tuned for performance, aimed at improving performance of + desktops at the cost of throughput and power usage. It is also sometimes + considered the best kernel for gaming. It has a low latency and + high-frequency scheduling. The kernel facilitates faster speeds and features a more optimized scheduler. * +1. to install it you need to go to: + +https://pkgs.org/search/?q=linux-zen + +linux-zen + +2. click on it and go down to the item Download: + +![linux-zen1](/home/mp/Immagini/linux-zen1.jpg) + +3. now write on terminal: wget + link just copied (in this case): + + ```bash + wget https://ftp5.gwdg.de/pub/linux/archlinux/extra/os/x86_64/linux-zen-6.2.12.zen1-1-x86_64.pkg.tar.zst + ``` + +4. once concluded you will have a file that you will have to install using the command: + + ```bash + sudo pacman -U linux-zen-6.2.12.zen1-1-x86_64.pkg.tar.zst + ``` + +5. finished the installation reboot, and check with the following command if the installation was successful: + + ```bash + uname -r + ``` + +