Ubuntu gets stuck in loading screen
Whenever I try to boot Ubuntu I get a firmare bug that says the ACPI region does not cover the entire command / response buffer. Thats followed by soft system lockup for 22 seconds on cpu 2 followed by a hard lock up on cpu 1. When I run the system compatibility diagnostic thing it says I have a firmware error and need to update my e microcode to 0xb2 or later. What does this mean and how would I fix this? I'm assuming it's related to not being able to boot.
boot dual-boot firmware
add a comment |
Whenever I try to boot Ubuntu I get a firmare bug that says the ACPI region does not cover the entire command / response buffer. Thats followed by soft system lockup for 22 seconds on cpu 2 followed by a hard lock up on cpu 1. When I run the system compatibility diagnostic thing it says I have a firmware error and need to update my e microcode to 0xb2 or later. What does this mean and how would I fix this? I'm assuming it's related to not being able to boot.
boot dual-boot firmware
add a comment |
Whenever I try to boot Ubuntu I get a firmare bug that says the ACPI region does not cover the entire command / response buffer. Thats followed by soft system lockup for 22 seconds on cpu 2 followed by a hard lock up on cpu 1. When I run the system compatibility diagnostic thing it says I have a firmware error and need to update my e microcode to 0xb2 or later. What does this mean and how would I fix this? I'm assuming it's related to not being able to boot.
boot dual-boot firmware
Whenever I try to boot Ubuntu I get a firmare bug that says the ACPI region does not cover the entire command / response buffer. Thats followed by soft system lockup for 22 seconds on cpu 2 followed by a hard lock up on cpu 1. When I run the system compatibility diagnostic thing it says I have a firmware error and need to update my e microcode to 0xb2 or later. What does this mean and how would I fix this? I'm assuming it's related to not being able to boot.
boot dual-boot firmware
boot dual-boot firmware
edited Jul 26 '18 at 16:40
Evan Knight
asked Jul 26 '18 at 16:33
Evan KnightEvan Knight
62
62
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Intel releases microcode updates to correct processor behavior as documented in the respective processor specification updates. AMD releases microcode patches to correct processor behavior as documented in the respective processor revision guides. Login to a virtual console and install the system processor microcode that is compatible with your computer's CPU.
When the system is booting immediately before the system is about to lock up access the virtual console by pressing the keyboard combination Ctrl+Alt+F3. To login from a virtual console:
At the
login:
prompt type your username and press Enter.At the
Password:
prompt type your user password and press Enter.
Run the following command to display the CPU manufacturer (Intel or AMD):
cat /proc/cpuinfo
Run one of the two following commands depending on whether your computer's CPU manufacturer is Intel or AMD.
sudo apt install intel-microcode # Intel CPU
sudo apt install amd64-microcode # AMD CPU
Reboot the system.
sudo reboot
If you can't access the virtual console in Step 1, all you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work. Otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot to run a command or interactive shell with a special root directory (your Ubuntu installation on the hard drive).
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1059749%2fubuntu-gets-stuck-in-loading-screen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Intel releases microcode updates to correct processor behavior as documented in the respective processor specification updates. AMD releases microcode patches to correct processor behavior as documented in the respective processor revision guides. Login to a virtual console and install the system processor microcode that is compatible with your computer's CPU.
When the system is booting immediately before the system is about to lock up access the virtual console by pressing the keyboard combination Ctrl+Alt+F3. To login from a virtual console:
At the
login:
prompt type your username and press Enter.At the
Password:
prompt type your user password and press Enter.
Run the following command to display the CPU manufacturer (Intel or AMD):
cat /proc/cpuinfo
Run one of the two following commands depending on whether your computer's CPU manufacturer is Intel or AMD.
sudo apt install intel-microcode # Intel CPU
sudo apt install amd64-microcode # AMD CPU
Reboot the system.
sudo reboot
If you can't access the virtual console in Step 1, all you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work. Otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot to run a command or interactive shell with a special root directory (your Ubuntu installation on the hard drive).
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
add a comment |
Intel releases microcode updates to correct processor behavior as documented in the respective processor specification updates. AMD releases microcode patches to correct processor behavior as documented in the respective processor revision guides. Login to a virtual console and install the system processor microcode that is compatible with your computer's CPU.
When the system is booting immediately before the system is about to lock up access the virtual console by pressing the keyboard combination Ctrl+Alt+F3. To login from a virtual console:
At the
login:
prompt type your username and press Enter.At the
Password:
prompt type your user password and press Enter.
Run the following command to display the CPU manufacturer (Intel or AMD):
cat /proc/cpuinfo
Run one of the two following commands depending on whether your computer's CPU manufacturer is Intel or AMD.
sudo apt install intel-microcode # Intel CPU
sudo apt install amd64-microcode # AMD CPU
Reboot the system.
sudo reboot
If you can't access the virtual console in Step 1, all you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work. Otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot to run a command or interactive shell with a special root directory (your Ubuntu installation on the hard drive).
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
add a comment |
Intel releases microcode updates to correct processor behavior as documented in the respective processor specification updates. AMD releases microcode patches to correct processor behavior as documented in the respective processor revision guides. Login to a virtual console and install the system processor microcode that is compatible with your computer's CPU.
When the system is booting immediately before the system is about to lock up access the virtual console by pressing the keyboard combination Ctrl+Alt+F3. To login from a virtual console:
At the
login:
prompt type your username and press Enter.At the
Password:
prompt type your user password and press Enter.
Run the following command to display the CPU manufacturer (Intel or AMD):
cat /proc/cpuinfo
Run one of the two following commands depending on whether your computer's CPU manufacturer is Intel or AMD.
sudo apt install intel-microcode # Intel CPU
sudo apt install amd64-microcode # AMD CPU
Reboot the system.
sudo reboot
If you can't access the virtual console in Step 1, all you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work. Otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot to run a command or interactive shell with a special root directory (your Ubuntu installation on the hard drive).
Intel releases microcode updates to correct processor behavior as documented in the respective processor specification updates. AMD releases microcode patches to correct processor behavior as documented in the respective processor revision guides. Login to a virtual console and install the system processor microcode that is compatible with your computer's CPU.
When the system is booting immediately before the system is about to lock up access the virtual console by pressing the keyboard combination Ctrl+Alt+F3. To login from a virtual console:
At the
login:
prompt type your username and press Enter.At the
Password:
prompt type your user password and press Enter.
Run the following command to display the CPU manufacturer (Intel or AMD):
cat /proc/cpuinfo
Run one of the two following commands depending on whether your computer's CPU manufacturer is Intel or AMD.
sudo apt install intel-microcode # Intel CPU
sudo apt install amd64-microcode # AMD CPU
Reboot the system.
sudo reboot
If you can't access the virtual console in Step 1, all you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work. Otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot to run a command or interactive shell with a special root directory (your Ubuntu installation on the hard drive).
edited Jan 12 at 19:35
answered Jul 26 '18 at 16:46
karelkarel
57.9k12128146
57.9k12128146
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
add a comment |
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
1
1
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
Unfortunately it doesn't even make it to the loading screen now, it just starts throwing errors in the virtual console. I updated my original question, sorry for the confusion
– Evan Knight
Jul 26 '18 at 17:00
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
All you need to do to get into a virtual console is for the Linux kernel to be loaded and the kernel is the first thing to load when the computer is booting, so press the keyboard combination Ctrl+Alt+F3 earlier and maybe it will work, otherwise you can install the firmware updates by booting from an Ubuntu live USB and using chroot.
– karel
Jul 26 '18 at 17:13
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1059749%2fubuntu-gets-stuck-in-loading-screen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown