We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After I installed the ubuntu on Linux Deploy, I want to change ubuntu kernel version and kernel config. The current kernel version is:
root@sp3:/WORK# uname -a Linux sp3 4.19.138-g45aa54f43 #3 SMP PREEMPT Thu May 18 17:50:30 CST 2023 aarch64 aarch64 aarch64 GNU/Linux root@sp3:/WORK# uname -r 4.19.138-g45aa54f43
But I found NOTHING in command dpkg --get-selections | grep linux-image And the "/boot" is empty, too.
dpkg --get-selections | grep linux-image
So I tried to install another kernel by sudo apt-get install linux-image-5.4.0-81-generic And dpkg --get-selections | grep linux shows
sudo apt-get install linux-image-5.4.0-81-generic
dpkg --get-selections | grep linux
root@sp3:/WORK# dpkg --get-selections | grep linux binutils-aarch64-linux-gnu install console-setup-linux install libselinux1:arm64 install linux-base install linux-image-5.4.0-81-generic install linux-libc-dev:arm64 install linux-modules-5.4.0-81-generic install util-linux install
But the uname -r is still "4.19.138-g45aa54f43"
uname -r
How do I change kernel to 5.4.0-81 ?
The text was updated successfully, but these errors were encountered:
afaik you cannot switch kernels in a chroot, the kernel will always be the one that's running Android
Sorry, something went wrong.
No branches or pull requests
After I installed the ubuntu on Linux Deploy, I want to change ubuntu kernel version and kernel config.
The current kernel version is:
But I found NOTHING in command
dpkg --get-selections | grep linux-image
And the "/boot" is empty, too.
So I tried to install another kernel by
sudo apt-get install linux-image-5.4.0-81-generic
And
dpkg --get-selections | grep linux
showsBut the
uname -r
is still "4.19.138-g45aa54f43"How do I change kernel to 5.4.0-81 ?
The text was updated successfully, but these errors were encountered: