Dual-Boot – Can a Windows 8 Partition Be Mounted in Ubuntu if ‘Fast Startup’ is Switched On?

dual-boothibernatepartitioningshutdownwindows 8

I'm aware that when a Windows session is hibernated, its disk partition cannot be mounted in Ubuntu. By default in Windows 8, a hybrid shutdown/hibernate feature is used (fast startup) which hibernates the kernel session but shuts down everything else.

Is there any way to mount a partition in this hybrid shutdown state? Even theoretically?

Best Answer

Windows 8 - when sent to its fast-startup shutdown - does not actually shut down. It hibernates, which means that the session is stored and will be resumed - which obviously means the status of the partition should not change in the meantime.

As such, it flags the partition with a so-called hiberfile, which is a physical file on the partition that you will be prompted to delete when you try to mount a hibernated partition.

You can, however, mount the partition in question as read-only through the mount -r option. That will enable reading the files, but not writing to the partition.

Related Question