Today I installed Ubuntu 14.04 with Windows 7 and now only 1 operating system ie Ubuntu in working I want to use Windows also what should I do.
Asked
Active
Viewed 45 times
0
-
possible duplicate of Windows 7 won't boot after installing Ubuntu 11 – karel May 22 '15 at 17:14
3 Answers
0
Open a terminal and type:
sudo nano /etc/grub.d/40_custom
Add the following line:
menuentry "Windows 7 (loader) (on /dev/sda1)" {
insmod part_msdos
insmod ntfs
set root='(hd0,msdos1)'
chainloader +1
}
by appropriately modifying the location of windows 7 in your computer. Then
sudo update-grub

Sharad Gautam
- 2,560
0
Install ReFind, it will handle the Grub bootloader and the windows UEFI bootloader for you, and simply when you boot it will give you the choice of what to boot. http://sourceforge.net/projects/refind/

Shades
- 11