3

I am completely new to Linux and Ubuntu. I have a HP Envy laptop with pre-installed windows 8.1 I have created a Ubuntu bootable usb drive and installed Ubuntu successfully. After installation, I am not able to load windows, everytime system is directly loading Ubuntu.

More information: Windows OS is available on C: driver, D: drive is having recovery provided by HP. I created a new drive E: by shrinking C: drive and installed ubuntu on E: drive.

I have gone through existing threads around this issue in Ubuntu community but could not find anything helpful. I have installed boot-repair software and captured my boot information here

Any help/information/education would be much appreciated!

Please suggest if any further information is required to better illustrate this issue.

Thank You!

Wilf
  • 30,732

5 Answers5

3

Install Grub bootloader ( If you haven't installed already) open a terminal and run:

sudo update-grub

23ars
  • 174
1

You can install Grub Customiser:

sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer

Example of the interface: https://i.sstatic.net/1bmmp.png

Mike
  • 11
1

Install os-prober

Run it.

sudo os-prober

Then update grub

sudo update-grub

compiler
  • 171
0

First try:

sudo update-grub

If that doesn't work, then you can try boot-repair tool to fix that as well. Its easy and effective.

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && (boot-repair &)

Use it to fix your installation. For more details here: Link

0

From :

How to fix blank screen with mouse pointer on Ubuntu install reboot?

This fixed my BOTH problems of

  1. mouse not showing in ubuntu and
  2. windows option gone

some times your desktop may not load due to problem with lightdm.

press CTRL + ALT + F4 then login using your username and password

 sudo apt-get purge lightdm
    sudo apt-get update
    sudo apt-get install lightdm
    dpkg-reconfigure lightdm

Now type sudo shutdown -r now to restart.

shareef
  • 123