Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
44
rated 0 times [  44] [ 0]  / answers: 1 / hits: 70287  / 2 Years ago, fri, july 8, 2022, 2:07:00

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?


More From » grub2

 Answers
7

  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

[#25765] Saturday, July 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tubequ

Total Points: 11
Total Questions: 113
Total Answers: 115

Location: Equatorial Guinea
Member since Thu, Oct 7, 2021
3 Years ago
;