Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. sudo mount /dev/sda1 /mnt
  2.  
  3. ubuntu@ubuntu:~$ sudo fdisk -l /dev/sda
  4.  
  5. Disk /dev/sda: 320.1 GB, 320072933376 bytes
  6. 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
  7. Units = sectors of 1 * 512 = 512 bytes
  8. Sector size (logical/physical): 512 bytes / 512 bytes
  9. I/O size (minimum/optimal): 512 bytes / 512 bytes
  10. Disk identifier: 0x1aca8ea5
  11.  
  12. Device Boot Start End Blocks Id System
  13. /dev/sda1 284993226 350602558 32804666+ 7 HPFS/NTFS/exFAT
  14.  
  15. ubuntu@ubuntu:/mnt$ sudo fdisk -l /dev/sda1
  16.  
  17. Disk /dev/sda1: 33.6 GB, 33591978496 bytes
  18. 255 heads, 63 sectors/track, 4083 cylinders, total 65609333 sectors
  19. Units = sectors of 1 * 512 = 512 bytes
  20. Sector size (logical/physical): 512 bytes / 512 bytes
  21. I/O size (minimum/optimal): 512 bytes / 512 bytes
  22. Disk identifier: 0x2052474d
  23.  
  24. This doesn't look like a partition table
  25. Probably you selected the wrong device.
  26.  
  27. Device Boot Start End Blocks Id System
  28. /dev/sda1p1 ? 6579571 1924427647 958924038+ 70 DiskSecure Multi-Boot
  29. /dev/sda1p2 ? 1953251627 3771827541 909287957+ 43 Unknown
  30. /dev/sda1p3 ? 225735265 225735274 5 72 Unknown
  31. /dev/sda1p4 2642411520 2642463409 25945 0 Empty
  32.  
  33. Partition table entries are not in disk order
  34.  
  35. ubuntu@ubuntu:/mnt$ sudo parted /dev/sda print
  36. Model: ATA ST3320820AS (scsi)
  37. Disk /dev/sda: 320GB
  38. Sector size (logical/physical): 512B/512B
  39. Partition Table: msdos
  40.  
  41. Number Start End Size Type File system Flags
  42. 1 146GB 180GB 33.6GB primary ntfs boot
  43.  
  44. sudo mount /dev/sda1p2 /mnt
  45.  
  46. sudo mkdir /mnt/test
  47. sudo chmod 755 /mnt/test
  48. mount -t ntfs /dev/sda /mnt/test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement