Advertisement
Guest User

Untitled

a guest
Jan 14th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fdisk -l output:
  2.  
  3. /dev/sdd1 2048 29454335 14726144 27 Hidden NTFS WinRE
  4. /dev/sdd2 * 29454336 29659135 102400 7 HPFS/NTFS/exFAT
  5. /dev/sdd3 29659136 250079231 110210048 7 HPFS/NTFS/exFAT
  6.  
  7.  
  8. Disk /dev/sde: 64.0 GB, 64023257088 bytes
  9. 64 heads, 32 sectors/track, 61057 cylinders, total 125045424 sectors
  10. Units = sectors of 1 * 512 = 512 bytes
  11. Sector size (logical/physical): 512 bytes / 512 bytes
  12. I/O size (minimum/optimal): 512 bytes / 512 bytes
  13. Disk identifier: 0x00000000
  14.  
  15. Disk /dev/sde doesn't contain a valid partition table
  16.  
  17. sudo mdadm -E /dev/sdd
  18. mdadm: /dev/sdd is not attached to Intel(R) RAID controller.
  19. mdadm: /dev/sdd is not attached to Intel(R) RAID controller.
  20. /dev/sdd:
  21. Magic : Intel Raid ISM Cfg Sig.
  22. Version : 1.0.00
  23. Orig Family : 1bdae0d1
  24. Family : 1bdae0d1
  25. Generation : 00001c38
  26. Attributes : All supported
  27. UUID : d48f2958:acdca277:c47bc784:f3a763fc
  28. Checksum : 5ef9052b correct
  29. MPB Sectors : 1
  30. Disks : 2
  31. RAID Devices : 1
  32.  
  33. [Volume0]:
  34. UUID : 177f4b14:44245cc3:ce394acd:db7381dd
  35. RAID Level : 0
  36. Members : 2
  37. Slots : [UU]
  38. Failed disk : none
  39. This Slot : ?
  40. Array Size : 250081280 (119.25 GiB 128.04 GB)
  41. Per Dev Size : 125040904 (59.62 GiB 64.02 GB)
  42. Sector Offset : 0
  43. Num Stripes : 488440
  44. Chunk Size : 128 KiB
  45. Reserved : 0
  46. Migrate State : idle
  47. Map State : normal
  48. Dirty State : clean
  49.  
  50. Disk00 Serial : 70BS10C9T4LZ
  51. State : active
  52. Id : 00000000
  53. Usable Size : 125039118 (59.62 GiB 64.02 GB)
  54.  
  55. Disk01 Serial : 70BS10CCT4LZ
  56. State : active
  57. Id : 00020000
  58. Usable Size : 125039118 (59.62 GiB 64.02 GB)
  59.  
  60.  
  61. sudo mdadm -E /dev/sdc
  62. mdadm: /dev/sdc is not attached to Intel(R) RAID controller.
  63. mdadm: /dev/sdc is not attached to Intel(R) RAID controller.
  64. /dev/sdc:
  65. Magic : Intel Raid ISM Cfg Sig.
  66. Version : 1.0.00
  67. Orig Family : 1bdae0d1
  68. Family : 1bdae0d1
  69. Generation : 00001c38
  70. Attributes : All supported
  71. UUID : d48f2958:acdca277:c47bc784:f3a763fc
  72. Checksum : 5ef9052b correct
  73. MPB Sectors : 1
  74. Disks : 2
  75. RAID Devices : 1
  76.  
  77. [Volume0]:
  78. UUID : 177f4b14:44245cc3:ce394acd:db7381dd
  79. RAID Level : 0
  80. Members : 2
  81. Slots : [UU]
  82. Failed disk : none
  83. This Slot : ?
  84. Array Size : 250081280 (119.25 GiB 128.04 GB)
  85. Per Dev Size : 125040904 (59.62 GiB 64.02 GB)
  86. Sector Offset : 0
  87. Num Stripes : 488440
  88. Chunk Size : 128 KiB
  89. Reserved : 0
  90. Migrate State : idle
  91. Map State : normal
  92. Dirty State : clean
  93.  
  94. Disk00 Serial : 70BS10C9T4LZ
  95. State : active
  96. Id : 00000000
  97. Usable Size : 125039118 (59.62 GiB 64.02 GB)
  98.  
  99. Disk01 Serial : 70BS10CCT4LZ
  100. State : active
  101. Id : 00020000
  102. Usable Size : 125039118 (59.62 GiB 64.02 GB)
  103.  
  104.  
  105. sudo mdadm --build /dev/md0 --chunk=64 --level=0 --raid-devices=2 /dev/sdc3 /dev/sdd
  106. mdadm: array /dev/md0 built and started.
  107. morph@morph:/dev$ sudo mount -t ntfs /dev/md0 /media/win
  108. NTFS signature is missing.
  109. Failed to mount '/dev/md0': Invalid argument
  110. The device '/dev/md0' doesn't seem to have a valid NTFS.
  111. Maybe the wrong device is used? Or the whole disk instead of a
  112. partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement