-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doubt about the instalation of a REAL-Time kernel in linux #542
Comments
The version of the RT path needs to match the kernel version, i imagine this error coming from the mismatch between I will document this more clearly in the linked README and update the used version to something more recent. |
Hi @RobertWilbrandt, I don´t know if I misunderstood what you told or, it just failed because my pc doesn't want to work. Whe I do that steps I have the same problem. I attach the complete error, if that helps: patching file Documentation/admin-guide/cgroup-v1/memory.rst
|
I now also verified this with the rt kernel patch version you used: 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
wget https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.15.79.tar.xz
wget https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.15.79.tar.sign
# Verification skipped for brevity
xz -dk patch-5.15.79-rt54.patch.xz
xz -d linux-5.15.79.tar.xz
tar xf linux-5.15.79.tar
cd linux-5.15.79
xzcat ../patch-5.15.79-rt54.patch.xz | patch -p1 This ran through without any problems. If this does not work for you, please also show the exact command you used to arrive at this error. |
Hi @RobertWilbrandt , I've just made the commands until the Next step is
|
I could reproduce this error. If you scroll further up in the output you will probably see that this is a problem with trusted keys. To overcome this i did the following: [ Setup as before]
make oldconfig
scripts/config --set-str SYSTEM_TRUSTED_KEYS ""
scripts/config --set-str SYSTEM_REVOCATION_KEYS ""
make -j `getconf _NPROCESSORS_ONLN` deb-pkg # Accept defaults for key generation Make sure to also install sudo apt install dwarves before doing this, as this is needed in the final step of the process. Could you please check if this works for you? |
Until, those steps, it seems to work perfectly. But I try to install the deb files:
This error shows up:
|
Could you please try
|
Since some time is passed and there are no updates, I will close this issue. Feel free to reopen if relevant. |
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
Because the following message appears:
And I dont really know if i have to skip it or which path I have to introduce.
Thanks in advance
The text was updated successfully, but these errors were encountered: