Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Whenever I boot Ubuntu, I get a message that it cannot mount my windows partition, and I can choose to either wait, skip or manually mount.

When I try to enter my Windows partition through Nautilus I get a message saying that this partition is hibernated and that I need to enter the file system and properly close it, something I have done with no problem so I don't know why this happens.

Here's my partition table, if any more data is needed please let me know.

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048    20000767     9999360   83  Linux
/dev/sda2        20002814   478001151   228999169    5  Extended
/dev/sda3   *   478001152   622532607    72265728    7  HPFS/NTFS/exFAT
/dev/sda4       622532608   625141759     1304576   82  Linux swap / Solaris
/dev/sda5        20002816   478001151   228999168   83  Linux
share|improve this question
Do you hibernate it or do you shutdown Windows before you see the error message? I have this problem too, but I am sure I shutdown Windows 8 Release Preview instead of hibernating it. What version of Windows do you use? – yanglifu90 Aug 26 '12 at 7:22

7 Answers

up vote 17 down vote accepted

A bug has been filed about the Nautilus dialog you are seeing as it recommends a potentially dangerous option that could result in data loss. Please do not run the command in this dialog unless you want to delete your saved Windows session and potentially lose unsaved work.

Why Nautilus can't open hibernated Windows partitions:

You are seeing this error because you hibernated Windows instead of turning it off the normal way (in newer versions of Windows, hibernate might be the default option).

  • Hibernating saves the current state information to the hard disk and then powers down the computer.
  • Shutting down the computer closes all programs and ends all running processes before powering down the computer.

When you turn off Windows by hibernating it, you are essentially pausing the system and saving all of that information (into a big file called hiberfil.sys) This way when you resume from hibernation all of your applications and files will be exactly how you left them. It also sets a flag in hiberfil.sys to let other Operating Systems know that Windows is hibernated.

Making changes to your Windows (ntfs) partition while it is hibernated could be dangerous--it could cause Windows to not resume from hibernation or to crash after resuming. Because of this, the tool (ntfs-3g) that mounts (opens) the partition will not mount it in read-write mode if it sees a hibernation flag. As such, Nautilus, the default file browser, will not be able to automatically open this partition--hence the error message that you see--because it is trying to open it in read-write mode.

3 ways to mount a hibernated Windows partition:

  1. Boot into Windows and power down the system by shutting it down completely. You may then boot back into Ubuntu and the partition will mount in read-write mode automatically when you open it in Nautilus. Note that the "Shut Down" option may not be the one displayed in your start menu by default. You may need to click the button next to it to see further options.

  2. Manually mount the filesystem in read only mode.

    • Check to see if you have a mount point (folder for mounting your partition in) for your Windows partition in the folder /media using this command:

      ls /media

    • If you don't see a folder folder your Windows partition you should create one with the following command:

      sudo mkdir /media/windows

    • Next mount the partition in read-only mode onto this folder with this command:

      mount -t ntfs-3g -o ro /dev/sda3 /media/windows

      note that you should change /media/windows if your mountpoint is called something else.

    • Now you will be able to view/open files on your Windows partition using any program in Ubuntu. However you will not be able to write to the partition or modify any files as it is in read only mode.
  3. If you need to mount the partition in read-write mode and are not able to or willing to boot into Windows and shut it down completely there is a third option. However, it is not included here because it completely deletes hiberfil.sys and will cause you to lose all unsaved information in the hibernated Windows programs. The following is a quotation from man ntfs-3g about the option that would be used to do this.

    remove_hiberfile
                  Unlike in case of  read-only  mount,  the  read-write  mount  is
                  denied  if  the  NTFS  volume is hibernated. One needs either to
                  resume Windows and shutdown it  properly,  or  use  this  option
                  which  will  remove  the  Windows hibernation file. Please note,
                  this means that the saved Windows  session  will  be  completely
                  lost. Use this option under your own responsibility.
    
share|improve this answer
2  
I'd like to add that there is yet another way to generate this error with Windows 8. Thanks to the new hybrid shutdown option (which also happens to be the default), the only way for an ordinary user to access the primary Windows partition is to boot Windows and then restart the system - forcing Windows to perform a full shutdown. – Nathan Osman Feb 12 at 19:04

on Windows 8 it's normal. You need to shut down Windows 8 via cmd by entering shutdown /f /s /t 0 then it might work.

share|improve this answer

To add to the answer you can go into Windows 7 or Windows 8 (W8: this is the default power-off action, it isn't a true shutdown in a sense), open a command line with super user privileges and type powercfg -h off.

The caveat is now you Windows computer will not be able to Hibernate at all. However, you will be able to mount your Windows partitions without doing surgery on it.

share|improve this answer

Windows 8 adds a "fast startup" feature. It does make Windows start up faster after a shutdown, but as a side effect it ends up putting your filesystem in that hibernating state.

To disable this feature in Win 8, search for "choose what the power buttons do" under settings, click the shield to unlock the checkboxes, and you can enable or disable the fast startup from there.

The caveat mentioned earlier, that you want to really shutdown Windows and not restart to get easy access from Linux, still applies.

share|improve this answer

It is more than likely that this is happening because you are booting from a Windows 8 system. What they have done is make it so that when you turn off your computer it really goes into hibernation for a quicker boot when you switch it on again.

What you will need to do is to go into the Control Panel section of Windows 8, navigate to power options and disable the quick start up option so that when you shut down, you will actually have shut down your system and as a result the files on the partition will be able to be accessed and edited.

share|improve this answer

My solution was to call a mntwindows script in /etc/rc.local. This script would check for hibernation and if hibernated mount as readonly. In order to make sure the script may always be called I placed it in /bin and marked it as executable. The contents of the script are as follows

sudo mount /dev/sda* /media/[Any existing folder name]

#Mounts Windows
if [ $? -eq 14 ]
then
  echo "Windows is sleeping, I'm mounting as read-only"
  sudo mount -o ro /dev/sda[Partition Number] /media/[Any existing folder name]
fi
share|improve this answer

i just added under mounting options in drives

remove_hiberfile

worked just fine.. since i'm getting the hiberfile error all the time no matter how i shutdown windows. check: screencap (sry that it is in german)

PS: (fast start turned off hibernation is off even shutdown by -s -f -t 1)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.