How to access Windows 8.1 after partition install?
Ok, so today I had a bright idea to install Linux. I felt like trying Fedora 21. So I made sure Fedora was in it's own partition, witch I am still sure is in it's own partition. (About 98%) But now I have no access to Windows 8.1. I am also (probaly related) unable to mount my windows partition and my extra HDD. I recieve this error:
Error mounting /dev/sdb4 at /run/media/Quest/D6081141081121D3: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb4" "/run/media/Quest/D6081141081121D3"' exited with non-zero exit status 14: Windows is hibernated, refused to mount. Failed to mount '/dev/sdb4': 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.
I am regretablely new to linux. But correct me if I'm wrong; After I get this to mount I should be able to add Windows added to grub with very little effort.
So I would greatly appreciate help with:
*mounting my windows partition
*adding Windows to grub
Thanks for any help.
Edit: Heres my parted -l results:
[Quest@localhost ~]$ sudo parted -l
Model: ATA ST31000322CS (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 32.3kB 1000GB 1000GB primary
Model: ATA ST3750640AS (scsi)
Disk /dev/sdb: 750GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: pmbr_boot
Number Start End Size File system Name Flags
1 1049kB 316MB 315MB ntfs Basic data partition hidden, diag
2 316MB 420MB 105MB fat32 EFI system partition boot, esp
3 420MB 555MB 134MB Microsoft reserved partition msftres
4 555MB 645GB 644GB ntfs Basic data partition msftdata
5 645GB 645GB 1049kB bios_grub
6 645GB 645GB 524MB ext4
7 645GB 750GB 105GB lvm
sudo lsblk:
[Quest@localhost ~]$ sudo lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 931.5G 0 disk
└─sda1 8:1 0 931.5G 0 part
sdb 8:16 0 698.7G 0 disk
├─sdb1 8:17 0 300M 0 part
├─sdb2 8:18 0 100M 0 part
├─sdb3 8:19 0 128M 0 part
├─sdb4 8:20 0 600G 0 part
├─sdb5 8:21 0 1M 0 part
├─sdb6 8:22 0 500M 0 part /boot
└─sdb7 8:23 0 97.7G 0 part
├─fedora-root 253:0 0 50G 0 lvm /
├─fedora-swap 253:1 0 3.9G 0 lvm [SWAP]
└─fedora-home 253:2 0 43.7G 0 lvm /home
I will assume you did a default F21 installation and thus have GNOME for desktop environment.
1) Press the Super key (i.e. Windows key).
2) Type "Terminal"
3) Click on the the "Terminal" icon that appears in the search results.
4) In the terminal, type
sudo parted -l
. It will ask you for thesudo
password. If you are an administrator, then this is just your password. Post the output in the question. Repeat forsudo lsblk
.This is to see the partitions in your system and the mountpoints in F21, respectively.
If you're dual booting, you HAVE to disable the fast boot feature in W8. If enabled, W8 will hibernate some files. If you then boot F21 instead of W8, the hibernated files may be corrupted.
Also, if this a new F21 installation, you should definitely update F21. In the terminal, type
sudo dnf update
. After the updates are finished, reboot into F21.