32

I recently installed Ubuntu 14.04 using WUBI and after installation when it booted it showed an error:

Serious errors were found while checking the disk drive for /. 

There were three options:

press [I] to ignore, press [S] to skip mounting and press [M] to mount manually. 

After I pressed I, it showed /tmp could not be mounted and my Ubuntu isn't booting.

  • Can anybody please guide me to how to solve this problem?
Hugo
  • 144

2 Answers2

44
  1. In Windows Boot Manager, select Ubuntu.
  2. Press any key and enter GNU Grub2 menu.
  3. You can press "e" to edit GRUB2 boot entry.

You need to change the GRUB2 boot entry from "ro" to "rw",

e.g.

linux   /boot/vmlinuz-3.13.0-24-generic root=UUID=AAC884AC1F144321 loop=/ubuntu/disks/root.disk ro   quiet splash $vt_handoff

to

linux   /boot/vmlinuz-3.13.0-24-generic root=UUID=AAC884AC1F144321 loop=/ubuntu/disks/root.disk rw   quiet splash $vt_handoff

Press F10, you can boot in Ubuntu 14.04.

and you can fix GRUB2 boot entry:

sudo vi /etc/grub.d/10_lupin

Change the line:

linux   ${rel_dirname}/${basename} root=${LINUX_HOST_DEVICE} loop=${loop_file_relative} ro ${args}

to:

linux   ${rel_dirname}/${basename} root=${LINUX_HOST_DEVICE} loop=${loop_file_relative} rw ${args}

Regenerate GRUB2 boot entry:

sudo update-grub
karel
  • 114,770
  • Ok thanks for helping but last question how can I change the grub file without booting into ubuntu because I cant boot into my ubuntu – user272877 Apr 25 '14 at 13:21
  • in windows boot manager, select Ubuntu .
  • press any key and go in GUN Grub2 menu.
  • you can press "e" to edit the commands before booting.
  • – user273948 Apr 25 '14 at 17:29
  • After you select "Ubuntu" from the Windows boot manager, keep Shift pressed and the Grub menu should appear. – gfour Apr 27 '14 at 09:10
  • Thank you very much my ubuntu finally booted! Thanks to everyone – user272877 Apr 29 '14 at 18:01
  • I fix the issue with this answer, but now when i restart or shutdown the computer, after selecting ubuntu in boot options, the screen go black and never initiate. I reboot manually and then select ubuntu in boot options, in the menu press e and then F10 and it loads fine, always have to press e -> F10 in order to be able to load ubuntu. Any suggestions? – Duver May 05 '14 at 21:38
  • You sir......are my hero. This was driving me crazy and your solution here brought me back to sanity. One suggestion I would make though is when editing the GRUB file to use sudo gedit /etc/grub.d/10_lupin instead of sudo vi /etc/grub.d/10_lupin. This works better for me as I have a more graphical interface, easier to read text, and I can be lazy by using the search function instead of having to look through many lines to find } ro ${. But again, THANK YOU!! – The Duke Of Marshall שלום Jun 04 '14 at 18:28
  • This solution actually worked, which amazes me. How in the world does somebody know this? Can somebody tell me where I should start reading / learning in order to understand issues like this and be able to solve problems like this? Is there a textbook I should read? – littleO Jul 13 '14 at 10:16
  • where to find windows boot manager in windows 8. I'm also having the same issue. – Anuj TBE Sep 09 '14 at 16:16
  • This is a life saver! – na-no. Jul 29 '18 at 08:35