Showing posts with label troubleshoot. Show all posts
Showing posts with label troubleshoot. Show all posts

Fix - No Bootable Device Error in Acer laptop



Hello folks. I'm going to write about a strange and a scary problem I faced yesterday with my new laptop (hope this will help someone).

I recently got an Acer Aspire E 15 laptop and I have been enjoying working on it until last night (I still do). It's one of those laptops which you can buy for a reasonable price with some good performance. However, last night, my laptop suddenly turned off while I was working. I thought it was because my battery was empty. I switched it on again, and saw this scary message saying "No Bootable Device" with an icon of a magnifying glass. (need not to say, I was doing some important work and I had not commit my work. I thought my hard disk was gone.)

Luckily, I found some easy solutions to fix it. Here's what you have to do if you get this error.

  1.  Restart your laptop.
  2.  As soon as you see the "acer" logo coming on the screen, press F2 key. 
  3.  It will take you to the bios screen. Now, from the bios settings, change your boot method from UEFI to Legacy. (If you are lucky, you will have this option).
  4.  Press F10 to save and exit bios. Now your laptop will boot normally.

That's it guys. This is the method which worked for me. This might not work for some people because this could happen for any reason, like a hard disk failure. If your had disk is damaged, this method won't obviously fix it :) But you can always try.

I also found that disconnecting and reconnecting the hard disk cable also worked for some people. Please let us know if this helped you. Don't forget to mention any other methods you know in the comments below.

Solve Ubuntu Error mounting windows partition status 14: The disk contains an unclean file system

Hello guys, here is another issue I faced today with Ubuntu 16.04. I have a laptop which runs Windows 10 and Ubuntu 16.04 on dual boot. Sometimes I have to switch between the two systems depending on the project I work. So it's very usual that I switch between them a few times in some days.

If you do the same, you may have already got this error, or at some point you will get this error when you try to mount a partition that you use with Windows and Ubuntu both. I'll show you how to fix this easily.

Error Details:

Error mounting /dev/sda2 at /media/nimeshka/6E86FACC86FA93B5: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda2" "/media/nimeshka/6E86FACC86FA93B5"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.

You get this error and you are unable to mount the partition. However, Ubuntu lets you mount the partition in a read-only mode which may be enough sometimes, but it's not a real solution to this. Before diving into fixing the problem, let's look closely at the error message once again. If you read it carefully, you will see that Ubuntu reports the error in a clear and a concise way. Towards the end of the error message, you can see it states "Please resume and shutdown Windows fully (no hibernation or fast restarting)". That basically gives you a hint on the solution. It says that Windows has not been fully shutdown, hence Ubuntu is unable to mount it. So the problem is really in Windows, not in Ubuntu.

You may wonder that you didn't hibernate Windows, then how could this happen? Yeah, it happens because with recent versions of Windows, they have introduced some new features to speed up the booting process, known as "Fast Startup" in Windows 10 and "Fast Boot" in Windows 8. It's something very similar to (or almost same as) hibernate option you had with previous Windows versions.

To fix this problem, you need to login back to your Windows OS and shutdown it properly. To do that, please follow these steps.
  1. open a command prompt with administration privileges. (To open command prompt with admin privileges, right click command prompt in the start menu and choose "Run as administrator" option).
  2.  Run the following command:
 shutdown /s 
  1. Now login back to Ubuntu to see that you can mount your drives back :)

That's it guys. I hope this wll help you. Please share this with your friends in G+, Facebook and Twitter if you think this will be helpful to them as well! Also leave a comment to give any feedback.