-
Notifications
You must be signed in to change notification settings - Fork 307
Description
Hi everyone,
Im trying to install a REAL-Time kernel in my ubuntu 22.04.
Im following the instructions from this readme with the following steps:
`wget https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.14.9.tar.sign
wget https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.14.9.tar.xz
wget https://cdn.kernel.org/pub/linux/kernel/projects/rt/5.15/patch-5.15.79-rt54.patch.xz
wget https://cdn.kernel.org/pub/linux/kernel/projects/rt/5.15/patch-5.15.79-rt54.patch.sign
xz -dk patch-5.15.79-rt54.patch.xz
xz -d linux-5.14.9.tar.xz
tar xf linux-5.14.9.tar
cd linux-5.14.9/
xzcat ../patch-4.14.139-rt66.patch.xz | patch -p1`
This steps above are just the readme mention before, except from different patch linux version.
My doubt comes in this last command
xzcat ../patch-4.14.139-rt66.patch.xz | patch -p1
Because the following message appears:
File to patch:
And I dont really know if i have to skip it or which path I have to introduce.
Thanks in advance