Guest User

Untitled

a guest
Jul 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. Error mounting /dev/sdb1 at [elided] exited with non-zero exit status 32: mount: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error
  2.  
  3. sudo fsck.ext4 /dev/sdb1
  4.  
  5. Group 12841's inode bitmap at 1094844229 conflicts with some other fs block.
  6. Relocate<y>? yes
  7.  
  8. sudo fdisk /dev/sdb
  9.  
  10. ~/Desktop$ sudo fdisk /dev/sdb
  11. [sudo] password for USER:
  12.  
  13. Welcome to fdisk (util-linux 2.27.1).
  14. Changes will remain in memory only, until you decide to write them.
  15. Be careful before using the write command.
  16.  
  17. p
  18.  
  19. Command (m for help): Disk /dev/sdb: 7.3 TiB, 8001562869760 bytes, 15628052480 sectors
  20. Units: sectors of 1 * 512 = 512 bytes
  21. Sector size (logical/physical): 512 bytes / 4096 bytes
  22. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  23. Disklabel type: gpt
  24. Disk identifier: [redacted]
  25.  
  26. Device Start End Sectors Size Type
  27. /dev/sdb1 2048 15628050431 15628048384 7.3T Microsoft basic data
  28.  
  29. Command (m for help): d
  30. Selected partition 1
  31. Partition 1 has been deleted.
  32.  
  33. Command (m for help): m
  34.  
  35. Help:
  36.  
  37. Generic
  38. d delete a partition
  39. F list free unpartitioned space
  40. l list known partition types
  41. n add a new partition
  42. p print the partition table
  43. t change a partition type
  44. v verify the partition table
  45. i print information about a partition
  46.  
  47. Misc
  48. m print this menu
  49. x extra functionality (experts only)
  50.  
  51. Script
  52. I load disk layout from sfdisk script file
  53. O dump disk layout to sfdisk script file
  54.  
  55. Save & Exit
  56. w write table to disk and exit
  57. q quit without saving changes
  58.  
  59. Create a new label
  60. g create a new empty GPT partition table
  61. G create a new empty SGI (IRIX) partition table
  62. o create a new empty DOS partition table
  63. s create a new empty Sun partition table
  64.  
  65.  
  66. Command (m for help): g
  67. Created a new GPT disklabel (GUID: [redacted]).
  68.  
  69. Command (m for help): n
  70. Partition number (1-128, default 1):
  71. First sector (2048-15628052446, default 2048):
  72. Last sector, +sectors or +size{K,M,G,T,P} (2048-15628052446, default 15628052446):
  73.  
  74. Created a new partition 1 of type 'Linux filesystem' and of size 7.3 TiB.
  75.  
  76. Command (m for help): v
  77. No errors detected.
  78. Header version: 1.0
  79. Using 1 out of 128 partitions.
  80. A total of 0 free sectors is available in 0 segments (the largest is (null)).
  81.  
  82. Command (m for help): w
  83. The partition table has been altered.
  84. Calling ioctl() to re-read partition table.
  85. Syncing disks.
  86.  
  87. Structure needs cleaning
  88.  
  89. sudo mkfs.ext4 /dev/sdb1
  90.  
  91. sudo smartctl -d sat -a /dev/sdb
Add Comment
Please, Sign In to add comment