After upgrading CentOS7.0 kernel, it goes wrong when rebooting
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
It goes wrong when I reboot my CentOS7.0 system, after executing yum update -y kernel
and selecting the latest kernel version during rebooting.
Executing yum update -y kernel
command, the kernel version like below:
current kernel version is 3.10.0-514.el7.x86_64
, and the latest version is 3.10.0-693.2.2.el7.x86_64
,
After executing reboot
command, I select the first kernel (the latest version),
but it goes wrong, wrong details like below:
wn-block(0,0)
CPU: 0 PID: 1 Comm: swapper/0 Not tained 3.10.0-693.2.2.el7.x86_64
Hadware name: ...
Call trace:
...
Kernel Offset: disables
My CentOS version is 7.0, and it was installed basing on VirtualBox.Why does it go wrong?
linux centos linux-kernel
add a comment |Â
up vote
0
down vote
favorite
It goes wrong when I reboot my CentOS7.0 system, after executing yum update -y kernel
and selecting the latest kernel version during rebooting.
Executing yum update -y kernel
command, the kernel version like below:
current kernel version is 3.10.0-514.el7.x86_64
, and the latest version is 3.10.0-693.2.2.el7.x86_64
,
After executing reboot
command, I select the first kernel (the latest version),
but it goes wrong, wrong details like below:
wn-block(0,0)
CPU: 0 PID: 1 Comm: swapper/0 Not tained 3.10.0-693.2.2.el7.x86_64
Hadware name: ...
Call trace:
...
Kernel Offset: disables
My CentOS version is 7.0, and it was installed basing on VirtualBox.Why does it go wrong?
linux centos linux-kernel
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
It goes wrong when I reboot my CentOS7.0 system, after executing yum update -y kernel
and selecting the latest kernel version during rebooting.
Executing yum update -y kernel
command, the kernel version like below:
current kernel version is 3.10.0-514.el7.x86_64
, and the latest version is 3.10.0-693.2.2.el7.x86_64
,
After executing reboot
command, I select the first kernel (the latest version),
but it goes wrong, wrong details like below:
wn-block(0,0)
CPU: 0 PID: 1 Comm: swapper/0 Not tained 3.10.0-693.2.2.el7.x86_64
Hadware name: ...
Call trace:
...
Kernel Offset: disables
My CentOS version is 7.0, and it was installed basing on VirtualBox.Why does it go wrong?
linux centos linux-kernel
It goes wrong when I reboot my CentOS7.0 system, after executing yum update -y kernel
and selecting the latest kernel version during rebooting.
Executing yum update -y kernel
command, the kernel version like below:
current kernel version is 3.10.0-514.el7.x86_64
, and the latest version is 3.10.0-693.2.2.el7.x86_64
,
After executing reboot
command, I select the first kernel (the latest version),
but it goes wrong, wrong details like below:
wn-block(0,0)
CPU: 0 PID: 1 Comm: swapper/0 Not tained 3.10.0-693.2.2.el7.x86_64
Hadware name: ...
Call trace:
...
Kernel Offset: disables
My CentOS version is 7.0, and it was installed basing on VirtualBox.Why does it go wrong?
linux centos linux-kernel
asked Oct 16 '17 at 1:48
Junlan Shuai
11
11
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
I have solved the problem, if you want to upgrade your CentOS kernel, you must excute following steps:
excuting
yum install -y kernel
oryum update -y kernel
command;excuting
vi /etc/default/grub
command, setGRUB_DEFAULT=0
, it means that the first kernel will be default kernel;excuting
grub2-mkconfig -o /boot/grub2/grub.cfg
command(CentOS 7.0 version), it aimes to generate a new kernel configuration;reboot
your system;
Maybe I use this method just in my case, someone who have a good method can add a comment at bellow, thanks.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I have solved the problem, if you want to upgrade your CentOS kernel, you must excute following steps:
excuting
yum install -y kernel
oryum update -y kernel
command;excuting
vi /etc/default/grub
command, setGRUB_DEFAULT=0
, it means that the first kernel will be default kernel;excuting
grub2-mkconfig -o /boot/grub2/grub.cfg
command(CentOS 7.0 version), it aimes to generate a new kernel configuration;reboot
your system;
Maybe I use this method just in my case, someone who have a good method can add a comment at bellow, thanks.
add a comment |Â
up vote
0
down vote
I have solved the problem, if you want to upgrade your CentOS kernel, you must excute following steps:
excuting
yum install -y kernel
oryum update -y kernel
command;excuting
vi /etc/default/grub
command, setGRUB_DEFAULT=0
, it means that the first kernel will be default kernel;excuting
grub2-mkconfig -o /boot/grub2/grub.cfg
command(CentOS 7.0 version), it aimes to generate a new kernel configuration;reboot
your system;
Maybe I use this method just in my case, someone who have a good method can add a comment at bellow, thanks.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I have solved the problem, if you want to upgrade your CentOS kernel, you must excute following steps:
excuting
yum install -y kernel
oryum update -y kernel
command;excuting
vi /etc/default/grub
command, setGRUB_DEFAULT=0
, it means that the first kernel will be default kernel;excuting
grub2-mkconfig -o /boot/grub2/grub.cfg
command(CentOS 7.0 version), it aimes to generate a new kernel configuration;reboot
your system;
Maybe I use this method just in my case, someone who have a good method can add a comment at bellow, thanks.
I have solved the problem, if you want to upgrade your CentOS kernel, you must excute following steps:
excuting
yum install -y kernel
oryum update -y kernel
command;excuting
vi /etc/default/grub
command, setGRUB_DEFAULT=0
, it means that the first kernel will be default kernel;excuting
grub2-mkconfig -o /boot/grub2/grub.cfg
command(CentOS 7.0 version), it aimes to generate a new kernel configuration;reboot
your system;
Maybe I use this method just in my case, someone who have a good method can add a comment at bellow, thanks.
answered Oct 16 '17 at 2:01
Junlan Shuai
11
11
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f398309%2fafter-upgrading-centos7-0-kernel-it-goes-wrong-when-rebooting%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password