How do you change the default O.S.? [duplicate]
up vote
0
down vote
favorite
This question already has an answer here:
How do I change the GRUB boot order?
5 answers
How do you change the default O.S. in the grub, so that windows will boot if Ubuntu is not chosen?
dual-boot
marked as duplicate by abu_bua, karel, pomsky, Eric Carvalho, Melebius Nov 29 at 14:54
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
This question already has an answer here:
How do I change the GRUB boot order?
5 answers
How do you change the default O.S. in the grub, so that windows will boot if Ubuntu is not chosen?
dual-boot
marked as duplicate by abu_bua, karel, pomsky, Eric Carvalho, Melebius Nov 29 at 14:54
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
How do I change the GRUB boot order?
5 answers
How do you change the default O.S. in the grub, so that windows will boot if Ubuntu is not chosen?
dual-boot
This question already has an answer here:
How do I change the GRUB boot order?
5 answers
How do you change the default O.S. in the grub, so that windows will boot if Ubuntu is not chosen?
This question already has an answer here:
How do I change the GRUB boot order?
5 answers
dual-boot
dual-boot
asked Nov 28 at 16:59
Dave F.
1
1
marked as duplicate by abu_bua, karel, pomsky, Eric Carvalho, Melebius Nov 29 at 14:54
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by abu_bua, karel, pomsky, Eric Carvalho, Melebius Nov 29 at 14:54
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12
add a comment |
1
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12
1
1
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
The simplest way is to have GRUB remember the last boot choice made at the GRUB menu.
Edit /etc/default/grub
and change/add the following lines near the top of the file...
GRUB_DEFAULT=saved
# change an existing line to this
GRUB_SAVEDEFAULT=true
# add this line
Then...
sudo update-grub
# update the GRUB menu
reboot
# reboot the system
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
The simplest way is to have GRUB remember the last boot choice made at the GRUB menu.
Edit /etc/default/grub
and change/add the following lines near the top of the file...
GRUB_DEFAULT=saved
# change an existing line to this
GRUB_SAVEDEFAULT=true
# add this line
Then...
sudo update-grub
# update the GRUB menu
reboot
# reboot the system
add a comment |
up vote
2
down vote
The simplest way is to have GRUB remember the last boot choice made at the GRUB menu.
Edit /etc/default/grub
and change/add the following lines near the top of the file...
GRUB_DEFAULT=saved
# change an existing line to this
GRUB_SAVEDEFAULT=true
# add this line
Then...
sudo update-grub
# update the GRUB menu
reboot
# reboot the system
add a comment |
up vote
2
down vote
up vote
2
down vote
The simplest way is to have GRUB remember the last boot choice made at the GRUB menu.
Edit /etc/default/grub
and change/add the following lines near the top of the file...
GRUB_DEFAULT=saved
# change an existing line to this
GRUB_SAVEDEFAULT=true
# add this line
Then...
sudo update-grub
# update the GRUB menu
reboot
# reboot the system
The simplest way is to have GRUB remember the last boot choice made at the GRUB menu.
Edit /etc/default/grub
and change/add the following lines near the top of the file...
GRUB_DEFAULT=saved
# change an existing line to this
GRUB_SAVEDEFAULT=true
# add this line
Then...
sudo update-grub
# update the GRUB menu
reboot
# reboot the system
answered Nov 28 at 17:36
heynnema
17.5k22053
17.5k22053
add a comment |
add a comment |
1
Do you mean default entry as Windows? When GRUB appears Ubuntu must be highlighted and gets booted up after a certain time (10s in most cases) if no action is done. I think you want to do the same for windows. Am I right?
– Kulfy
Nov 28 at 17:12