Ubuntu 18.04 slow boot - Delay before loading GRUB
up vote
1
down vote
favorite
A week or two ago, My ubuntu laptop (ASUS X556U) has started to experience a 10-30 second delay before reaching the first purple screen (GRUB loaded). I think this is happening since a package update in the last weeks.
The output of systemd-analyze time is
Startup finished in
5.633s (firmware) + 2.423s (loader) + 3.604s (kernel) + 15.727s (userspace) = 27.388s
graphical.target reached after 15.350s in userspace
so the loading time of Linux are good/fast enough for me.
How can I regain my usual boot time¿?
boot grub2 18.04
add a comment |
up vote
1
down vote
favorite
A week or two ago, My ubuntu laptop (ASUS X556U) has started to experience a 10-30 second delay before reaching the first purple screen (GRUB loaded). I think this is happening since a package update in the last weeks.
The output of systemd-analyze time is
Startup finished in
5.633s (firmware) + 2.423s (loader) + 3.604s (kernel) + 15.727s (userspace) = 27.388s
graphical.target reached after 15.350s in userspace
so the loading time of Linux are good/fast enough for me.
How can I regain my usual boot time¿?
boot grub2 18.04
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
A week or two ago, My ubuntu laptop (ASUS X556U) has started to experience a 10-30 second delay before reaching the first purple screen (GRUB loaded). I think this is happening since a package update in the last weeks.
The output of systemd-analyze time is
Startup finished in
5.633s (firmware) + 2.423s (loader) + 3.604s (kernel) + 15.727s (userspace) = 27.388s
graphical.target reached after 15.350s in userspace
so the loading time of Linux are good/fast enough for me.
How can I regain my usual boot time¿?
boot grub2 18.04
A week or two ago, My ubuntu laptop (ASUS X556U) has started to experience a 10-30 second delay before reaching the first purple screen (GRUB loaded). I think this is happening since a package update in the last weeks.
The output of systemd-analyze time is
Startup finished in
5.633s (firmware) + 2.423s (loader) + 3.604s (kernel) + 15.727s (userspace) = 27.388s
graphical.target reached after 15.350s in userspace
so the loading time of Linux are good/fast enough for me.
How can I regain my usual boot time¿?
boot grub2 18.04
boot grub2 18.04
asked Nov 28 at 10:12
DGAPCA
425
425
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
I experienced a similar problem on my Lenovo X220 some weeks ago.
In my case, the problem was the default GRUB_TIMEOUT, which makes the system wait for 10 seconds before loading grub. You can check this answer for more info.
I managed to regain the usual boot speed by lowering GRUB_TIMEOUT to 1 second.
To achieve that, edit Grub's configuration file /etc/default/grub, and change the value of GRUB_TIMEOUT around line 8 and set it to 1:
- Run
sudo nano /etc/default/grub
- Find the line (arround line 8) with
GRUB_TIMEOUT=10and change it toGRUB_TIMEOUT=1
- Save changes and exit your editor
- Run
sudo update-grub
- Reboot your machine
Then you should be enjoying a fast boot again.
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
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',
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%2f1096759%2fubuntu-18-04-slow-boot-delay-before-loading-grub%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
up vote
1
down vote
accepted
I experienced a similar problem on my Lenovo X220 some weeks ago.
In my case, the problem was the default GRUB_TIMEOUT, which makes the system wait for 10 seconds before loading grub. You can check this answer for more info.
I managed to regain the usual boot speed by lowering GRUB_TIMEOUT to 1 second.
To achieve that, edit Grub's configuration file /etc/default/grub, and change the value of GRUB_TIMEOUT around line 8 and set it to 1:
- Run
sudo nano /etc/default/grub
- Find the line (arround line 8) with
GRUB_TIMEOUT=10and change it toGRUB_TIMEOUT=1
- Save changes and exit your editor
- Run
sudo update-grub
- Reboot your machine
Then you should be enjoying a fast boot again.
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
add a comment |
up vote
1
down vote
accepted
I experienced a similar problem on my Lenovo X220 some weeks ago.
In my case, the problem was the default GRUB_TIMEOUT, which makes the system wait for 10 seconds before loading grub. You can check this answer for more info.
I managed to regain the usual boot speed by lowering GRUB_TIMEOUT to 1 second.
To achieve that, edit Grub's configuration file /etc/default/grub, and change the value of GRUB_TIMEOUT around line 8 and set it to 1:
- Run
sudo nano /etc/default/grub
- Find the line (arround line 8) with
GRUB_TIMEOUT=10and change it toGRUB_TIMEOUT=1
- Save changes and exit your editor
- Run
sudo update-grub
- Reboot your machine
Then you should be enjoying a fast boot again.
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
I experienced a similar problem on my Lenovo X220 some weeks ago.
In my case, the problem was the default GRUB_TIMEOUT, which makes the system wait for 10 seconds before loading grub. You can check this answer for more info.
I managed to regain the usual boot speed by lowering GRUB_TIMEOUT to 1 second.
To achieve that, edit Grub's configuration file /etc/default/grub, and change the value of GRUB_TIMEOUT around line 8 and set it to 1:
- Run
sudo nano /etc/default/grub
- Find the line (arround line 8) with
GRUB_TIMEOUT=10and change it toGRUB_TIMEOUT=1
- Save changes and exit your editor
- Run
sudo update-grub
- Reboot your machine
Then you should be enjoying a fast boot again.
I experienced a similar problem on my Lenovo X220 some weeks ago.
In my case, the problem was the default GRUB_TIMEOUT, which makes the system wait for 10 seconds before loading grub. You can check this answer for more info.
I managed to regain the usual boot speed by lowering GRUB_TIMEOUT to 1 second.
To achieve that, edit Grub's configuration file /etc/default/grub, and change the value of GRUB_TIMEOUT around line 8 and set it to 1:
- Run
sudo nano /etc/default/grub
- Find the line (arround line 8) with
GRUB_TIMEOUT=10and change it toGRUB_TIMEOUT=1
- Save changes and exit your editor
- Run
sudo update-grub
- Reboot your machine
Then you should be enjoying a fast boot again.
edited Nov 28 at 11:08
mook765
3,69321330
3,69321330
answered Nov 28 at 10:35
dgonzalez
3,84031024
3,84031024
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
add a comment |
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
Wow thanks, thanks, thanks and thanks !! You saved my day, I was going mad... Searching and finding nothing. Now i regained my ~30 sec boot time
– DGAPCA
Nov 28 at 10:40
1
1
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
That should be the default config. I don't understand why it is configured to wait 10 seconds before starting to boot.
– DGAPCA
Nov 28 at 10:42
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
Maybe, in such situation accessing grub boot menu will be substantially harder.
– dgonzalez
Nov 28 at 10:53
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1096759%2fubuntu-18-04-slow-boot-delay-before-loading-grub%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