Advertisement
ditatompel

hdd

Apr 7th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. [root@wds-vps ~]# mkfs -t ext4 /dev/sdb
  2. mke2fs 1.42.1 (17-Feb-2012)
  3. /dev/sdb is entire device, not just one partition!
  4. Proceed anyway? (y,n) y
  5. Filesystem label=
  6. OS type: Linux
  7. Block size=4096 (log=2)
  8. Fragment size=4096 (log=2)
  9. Stride=0 blocks, Stripe width=0 blocks
  10. 4489216 inodes, 17954874 blocks
  11. 897743 blocks (5.00%) reserved for the super user
  12. First data block=0
  13. Maximum filesystem blocks=0
  14. 548 block groups
  15. 32768 blocks per group, 32768 fragments per group
  16. 8192 inodes per group
  17. Superblock backups stored on blocks:
  18. 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
  19. 4096000, 7962624, 11239424
  20.  
  21. Allocating group tables: done
  22. Writing inode tables: done
  23. Creating journal (32768 blocks): done
  24. Writing superblocks and filesystem accounting information: done
  25.  
  26. [root@wds-vps ~]# mkfs -t ext4 -L "VPS_SCSI_HDD2" /dev/sdb
  27. mke2fs 1.42.1 (17-Feb-2012)
  28. /dev/sdb is entire device, not just one partition!
  29. Proceed anyway? (y,n) y
  30. Filesystem label=VPS_SCSI_HDD2
  31. OS type: Linux
  32. Block size=4096 (log=2)
  33. Fragment size=4096 (log=2)
  34. Stride=0 blocks, Stripe width=0 blocks
  35. 4489216 inodes, 17954874 blocks
  36. 897743 blocks (5.00%) reserved for the super user
  37. First data block=0
  38. Maximum filesystem blocks=0
  39. 548 block groups
  40. 32768 blocks per group, 32768 fragments per group
  41. 8192 inodes per group
  42. Superblock backups stored on blocks:
  43. 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
  44. 4096000, 7962624, 11239424
  45.  
  46. Allocating group tables: done
  47. Writing inode tables: done
  48. Creating journal (32768 blocks): done
  49. Writing superblocks and filesystem accounting information: done
  50.  
  51. [root@wds-vps ~]# mkfs -t ext4 -L "VPS_SCSI_HDD3" /dev/sdc
  52. mke2fs 1.42.1 (17-Feb-2012)
  53. /dev/sdc is entire device, not just one partition!
  54. Proceed anyway? (y,n) y
  55. Filesystem label=VPS_SCSI_HDD3
  56. OS type: Linux
  57. Block size=4096 (log=2)
  58. Fragment size=4096 (log=2)
  59. Stride=0 blocks, Stripe width=0 blocks
  60. 4489216 inodes, 17954874 blocks
  61. 897743 blocks (5.00%) reserved for the super user
  62. First data block=0
  63. Maximum filesystem blocks=0
  64. 548 block groups
  65. 32768 blocks per group, 32768 fragments per group
  66. 8192 inodes per group
  67. Superblock backups stored on blocks:
  68. 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
  69. 4096000, 7962624, 11239424
  70.  
  71. Allocating group tables: done
  72. Writing inode tables: done
  73. Creating journal (32768 blocks): done
  74. Writing superblocks and filesystem accounting information: done
  75.  
  76. [root@wds-vps ~]# fsck -f -y /dev/sdb
  77. fsck from util-linux 2.21.1
  78. e2fsck 1.42.1 (17-Feb-2012)
  79. Pass 1: Checking inodes, blocks, and sizes
  80. Pass 2: Checking directory structure
  81. Pass 3: Checking directory connectivity
  82. Pass 4: Checking reference counts
  83. Pass 5: Checking group summary information
  84. VPS_SCSI_HDD2: 11/4489216 files (0.0% non-contiguous), 327771/17954874 blocks
  85. [root@wds-vps ~]# fsck -f -y /dev/sdc
  86. fsck from util-linux 2.21.1
  87. e2fsck 1.42.1 (17-Feb-2012)
  88. Pass 1: Checking inodes, blocks, and sizes
  89. Pass 2: Checking directory structure
  90. Pass 3: Checking directory connectivity
  91. Pass 4: Checking reference counts
  92. Pass 5: Checking group summary information
  93. VPS_SCSI_HDD3: 11/4489216 files (0.0% non-contiguous), 327771/17954874 blocks
  94. [root@wds-vps ~]#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement