0

I installed Ubuntu 16.04 in my Acer Aspire A315,51 i3 64-bit alongside Windows 10. When I start my computer, I have to choose Windows 10 or Ubuntu. It was working good, then I got a problem in Ubuntu, that it cannot access the hard disk. When I press on the hard disk it gives me this error:

Unable to access volume. 
Error mounting /dev/sda4 at media/f/volume.
command line mount -t "ntfs" -o
karel
  • 114,770
maha
  • 1

3 Answers3

1

This is caused by Windows 10 not doing a true shutdown so the partition is marked as still in use. You can mount the partition as read only with the mnt command.

sudo mount -o ro /dev/sda4 /mnt

Or log back into Windows and from the command prompt run

shutdown /r /f /t 0

This will force windows to perform a full shutdown instead of the hybrid shutdown.

1

Brownm's answer is exactly right about the cause, but his solution is only good for a single shutdown. If you switch frequently there's an easier long-term solution buried in the Control Panel.

  1. From your control panel navigate to "System and Security" and then "Power Options"

  2. Click the link labeled "Change what the power button does" in the sidebar.

  3. Click the link labeled "Change settings that are currently unavailable"

  4. Uncheck the box that says "Fast startup"

0

I think this would work

sudo ntfsfix /dev/sda4