I was trying to install linux Ubuntu version 12.04 alongside Windows 8 on my Toshiba Satellite but when I restart I can't find the place to switch between the windows and Ubuntu. I have tried using Linux in Oracle Virtualbox and it did well but when I restarted my laptop it didn't show any signs of changing to the Linux OS. the laptop when opened boots direct to windows 8
3 Answers
You didn't tell us if you can boot into Ubuntu or Windows, so I'm considering you can use Ubuntu. Try to be more specific next time.
Boot into Ubuntu. Open a terminal window (Ctrl+Alt+T) and run the following commands:
sudo gedit /etc/default/grub/
Find the two lines that begin with GRUB_HIDDEN
and put a #
in front of both of them. Find GRUB_TIMEOUT
and change its value to 10
. Make sure GRUB_DEFAULT
is also set to 10
. Save the file and exit. Again in the terminal run:
sudo update-grub
Reboot and you should see the GRUB menu. You should be able to select Windows from there.

- 197,895
- 55
- 485
- 740

- 5,817
If you can't access Windows 8 nor Ubuntu you'll probably need to reinstall the the GRUB bootloader because it it is possible that it has been wiped.
To reinstall GRUB, run the following command:
sudo apt-get install --reinstall $(aptitude search '~i!~M' -F '%p' | grep grub)

- 1,462
- 7
- 24
- 48

- 1,789
-
That does not provide a full answer. You should explain step by step how to reinstall GRUB. – Eduardo Cola Jan 02 '16 at 19:00
-
Yes it does. The question was about being unable to find the GRUB menu so telling to probably reinstall IF (and only if) it is missing is an answer to the question. If asker doesn't know how to do a reinstall of the GRUB menu he/she can elaborate or modify the question. – wie5Ooma Jan 02 '16 at 19:05
-
Based on your comment (that you should add to your question, not as an answer), you can use a live Ubuntu use and boot-repair
to fix grub.
First get a live USB drive or DVD (the one you used to install Ubuntu or see this), now boot this and choose try ubuntu
.
Press CTRL+ALT+T for a terminal and run these commands to install boot-repair
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair
Now run it
boot-repair
Just follow the instructions CAREFULLY and this will repair your boot loader, now reboot and you should see grub
.
As your question is a bit unclear and you mention virtualbox
, I must point out that a Virtualbox
install won't show at boot, you must run it in Virtualbox
once the OS has booted.

- 18,529
- 19
- 78
- 114
-
If this helped you and as you ar rep 1 user, please click the check mark on the let to say thanks and let other easily find this information. – Mark Kirby Jan 03 '16 at 09:43
thanks for that but what i think i forgot to say is that it boots directly to windows 8 so how can i change it in order for me to use ubuntu while my other family members still use the windows"
– Mark Kirby Jan 03 '16 at 09:49