diff --git a/README.md b/README.md
index 5432fac..f3db484 100644
--- a/README.md
+++ b/README.md
@@ -256,13 +256,21 @@ Note: Module "tcp_collapse_max_bytes" is a self completion of Cloudflare, you ne
https://github.com/cloudflare/linux/tree/master/patches
Little tutorial: Installing XanMod(an excellent third part mod for Linux kernel to improve network connectivity including applicating the patches of Cloudflare which we known on above, enhanced hardware compatibility etc. only for amd64 architecture CPUs) for Debian.
-apt install gpg -y
-wget -qO - https://dl.xanmod.org/archive.key | sudo gpg --dearmor -o /usr/share/keyrings/xanmod-archive-keyring.gpg
-echo 'deb [signed-by=/usr/share/keyrings/xanmod-archive-keyring.gpg] http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-release.list
-apt update
-apt install linux-xanmod-lts-x64v3 -y
-reboot
-uname -a
+
+Install gpg utility:
+
apt install gpg -y
+Import and transform gpg key to binary file:
+wget -qO - https://dl.xanmod.org/archive.key | sudo gpg --dearmor -o /usr/share/keyrings/xanmod-archive-keyring.gpg
+Apply additional repository of "dl.xanmod.org" for apt:
+echo 'deb [signed-by=/usr/share/keyrings/xanmod-archive-keyring.gpg] http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-release.list
+Refresh package dependencies:
+apt update
+Install xanmod Linux kernel, the differences from "v1" "v2" "v3" "v4" is the different optimizations for CPUs from each periods, you can visit https://xanmod.org/, title "x86-64 psABI level reference" to inquire or execute this script to confirm it: https://dl.xanmod.org/check_x86-64_psabi.sh .
+apt install linux-xanmod-lts-x64v3 -y
+Reboot the system:
+reboot
+To confirm the new kernel that we installed:
+uname -a