Guest User

Untitled

a guest
Mar 21st, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. sudo mount -o loop,offset=135266304 ./disk.img /mnt/temp
  2.  
  3. The disk contains an unclean file system (0, 0).
  4. Metadata kept in Windows cache, refused to mount.
  5. Failed to mount '/dev/loop8': Operation not permitted
  6. The NTFS partition is in an unsafe state. Please resume and shutdown
  7. Windows fully (no hibernation or fast restarting), or mount the volume read-only with the 'ro' mount option.
  8.  
  9. sudo ntfs-3g -o remove_hibernation ./disk.img /mnt/temp
  10.  
  11. NTFS signature is missing.
  12. Failed to mount './disk.img': Invalid argument
  13. The device '*' doesn't seem to have a valid NTFS.
  14. Maybe the wrong device is used? Or the whole disk instead of a
  15. partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
  16.  
  17. sudo ntfsfix ./disk.img
  18.  
  19. Mounting volume... NTFS signature is missing.
  20. FAILED
  21. Attempting to correct errors... NTFS signature is missing.
  22. FAILED
  23. Failed to startup volume: Invalid argument
  24. NTFS signature is missing.
  25. Trying the alternate boot sector
  26. Unrecoverable error
  27. Volume is corrupt. You should run chkdsk.
  28.  
  29. file ./disk.img
  30.  
  31. ./disk.img: DOS/MBR boot sector MS-MBR Windows 7 english at offset 0x163 "Invalid partition table" at offset 0x17b "Error loading operating system" at offset 0x19a "Missing operating system"; partition 1 : ID=0xee, start-CHS (0x0,0,2), end-CHS (0x3ff,255,63), startsector 1, 4294967295 sectors
  32.  
  33. fdisk -l ./disk.img
  34.  
  35. Disk ./disk.img: 279.5 GiB, 300069052416 bytes, 586072368 sectors
  36. Units: sectors of 1 * 512 = 512 bytes
  37. Sector size (logical/physical): 512 bytes / 512 bytes
  38. I/O size (minimum/optimal): 512 bytes / 512 bytes
  39. Disklabel type: gpt
  40. Disk identifier: *
  41.  
  42. Device Start End Sectors Size Type
  43. ./disk.img1 264192 586072063 585807872 279.3G Microsoft basic data
Add Comment
Please, Sign In to add comment