how to add windows 10 to dual boot menu which contains fedora
up vote
-1
down vote
favorite
I have dual operating systems win 10
& fedora
. Windows 10 was booting correctly until I installed fedora. The booting menu is showing "fedora" only. How to add windows 10 to booting menu?
I tried the following commands but non solve the problem :
rebootec /rebuild
rebootec /fixmbr
rebootec /fixboot
bcdedit /displayorder {49916baf-0e08-11db-9af4-000bdbd316a0} /addlast
fedora dual-boot
New contributor
add a comment |
up vote
-1
down vote
favorite
I have dual operating systems win 10
& fedora
. Windows 10 was booting correctly until I installed fedora. The booting menu is showing "fedora" only. How to add windows 10 to booting menu?
I tried the following commands but non solve the problem :
rebootec /rebuild
rebootec /fixmbr
rebootec /fixboot
bcdedit /displayorder {49916baf-0e08-11db-9af4-000bdbd316a0} /addlast
fedora dual-boot
New contributor
1
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I have dual operating systems win 10
& fedora
. Windows 10 was booting correctly until I installed fedora. The booting menu is showing "fedora" only. How to add windows 10 to booting menu?
I tried the following commands but non solve the problem :
rebootec /rebuild
rebootec /fixmbr
rebootec /fixboot
bcdedit /displayorder {49916baf-0e08-11db-9af4-000bdbd316a0} /addlast
fedora dual-boot
New contributor
I have dual operating systems win 10
& fedora
. Windows 10 was booting correctly until I installed fedora. The booting menu is showing "fedora" only. How to add windows 10 to booting menu?
I tried the following commands but non solve the problem :
rebootec /rebuild
rebootec /fixmbr
rebootec /fixboot
bcdedit /displayorder {49916baf-0e08-11db-9af4-000bdbd316a0} /addlast
fedora dual-boot
fedora dual-boot
New contributor
New contributor
edited 1 hour ago
Rui F Ribeiro
38.1k1475123
38.1k1475123
New contributor
asked 2 hours ago
n.m
1
1
New contributor
New contributor
1
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago
add a comment |
1
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago
1
1
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Windows by default uses ntfs
file system, which is not supported by default in fedora
. To correct this enable support for ntfs
file system and update grub
:
$ yum install ntfs-3g ntfsprogs
for non-efi
:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
for efi
:
$ grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
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
Windows by default uses ntfs
file system, which is not supported by default in fedora
. To correct this enable support for ntfs
file system and update grub
:
$ yum install ntfs-3g ntfsprogs
for non-efi
:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
for efi
:
$ grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
add a comment |
up vote
0
down vote
Windows by default uses ntfs
file system, which is not supported by default in fedora
. To correct this enable support for ntfs
file system and update grub
:
$ yum install ntfs-3g ntfsprogs
for non-efi
:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
for efi
:
$ grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
add a comment |
up vote
0
down vote
up vote
0
down vote
Windows by default uses ntfs
file system, which is not supported by default in fedora
. To correct this enable support for ntfs
file system and update grub
:
$ yum install ntfs-3g ntfsprogs
for non-efi
:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
for efi
:
$ grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
Windows by default uses ntfs
file system, which is not supported by default in fedora
. To correct this enable support for ntfs
file system and update grub
:
$ yum install ntfs-3g ntfsprogs
for non-efi
:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
for efi
:
$ grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
edited 1 hour ago
answered 1 hour ago
Drakonoved
6911518
6911518
add a comment |
add a comment |
n.m is a new contributor. Be nice, and check out our Code of Conduct.
n.m is a new contributor. Be nice, and check out our Code of Conduct.
n.m is a new contributor. Be nice, and check out our Code of Conduct.
n.m is a new contributor. Be nice, and check out our Code of Conduct.
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%2f481645%2fhow-to-add-windows-10-to-dual-boot-menu-which-contains-fedora%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
1
I'm voting to close this question as off-topic because it's windows related.
– Ipor Sircer
1 hour ago