Aggiorna README.md
This commit is contained in:
parent
2dee756f55
commit
88ea3c81f5
1 changed files with 29 additions and 2 deletions
31
README.md
31
README.md
|
@ -283,7 +283,7 @@ To confirm the successful addition of the repository, use:
|
||||||
|
|
||||||
grep xanmod /etc/apt/sources.list.d/xanmod-kernel.list
|
grep xanmod /etc/apt/sources.list.d/xanmod-kernel.list
|
||||||
|
|
||||||
now upgrade
|
now update
|
||||||
|
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
|
||||||
|
@ -296,10 +296,37 @@ run script to verify version linux-xanmod-x64v1, x64v2, x64v3, and x64v4. Each v
|
||||||
|
|
||||||
./check_x86-64_psabi.sh
|
./check_x86-64_psabi.sh
|
||||||
|
|
||||||
if you find CPU supports x86-64-v3 then you can run (change 1,2,3 or 4)
|
if you find CPU supports x86-64-v3 for install kernell you can run (change 1,2,3 or 4)
|
||||||
|
|
||||||
sudo apt install linux-xanmod-x64v3
|
sudo apt install linux-xanmod-x64v3
|
||||||
|
|
||||||
|
### Zabbly kernel
|
||||||
|
|
||||||
|
(original link)[https://linuxcapable.com/how-to-install-latest-linux-kernel-on-debian-linux/]
|
||||||
|
|
||||||
|
Install Dependencies (Required Packages)
|
||||||
|
|
||||||
|
sudo apt install lsb-release software-properties-common apt-transport-https ca-certificates curl -y
|
||||||
|
|
||||||
|
importing the GPG key
|
||||||
|
|
||||||
|
```sh
|
||||||
|
curl -fSsL https://pkgs.zabbly.com/key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/linux-zabbly.gpg > /dev/null
|
||||||
|
```
|
||||||
|
|
||||||
|
add the XanMod repository
|
||||||
|
```sh
|
||||||
|
codename=$(lsb_release -sc) && echo deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/linux-zabbly.gpg] https://pkgs.zabbly.com/kernel/stable $codename main | sudo tee /etc/apt/sources.list.d/linux-zabbly.list
|
||||||
|
```
|
||||||
|
|
||||||
|
now update
|
||||||
|
|
||||||
|
sudo apt update
|
||||||
|
|
||||||
|
install kernel
|
||||||
|
|
||||||
|
sudo apt install linux-zabbly
|
||||||
|
|
||||||
### Settare Grub
|
### Settare Grub
|
||||||
|
|
||||||
aggiornare grub se serve
|
aggiornare grub se serve
|
||||||
|
|
Loading…
Reference in a new issue