So the windows partition for windows 7 while running dual boot 14.10 does appear when fdisk is run. However, it does not appear when blkid runs and there is no way for me to check the uuid because the drive has disappeared from fstab. The windows boot is also gone from grub. Any help from anybody would be appreciated?
Asked
Active
Viewed 1,827 times
1 Answers
0
Warning, this will delete any unsaved data in from your hibernated windows session!
Assuming the device is /dev/sda1:
sudo mkdir /media/windows
sudo mount -t ntfs-3g -o remove_hiberfile /dev/sda1 /media/windows
Now, you should be able to run:
sudo update-grub
and windows should be recognized.

mchid
- 43,546
- 8
- 97
- 150
sudo update-grub
after you are done. If it still doesn't recognize windows, you may need to runbootrec
from a windows repair or installation disk . . . just don't runbootrec /fixmbr
– mchid Sep 07 '15 at 21:53blkid | grep ntfs
– mchid Sep 07 '15 at 21:54sudo mkdir /media/windows
then run the mount command as mentioned in the other post followed by/media/windows/
in the same command at the end after the device (/dev/sda1 for example) – mchid Sep 09 '15 at 00:48