挂载硬盘

  1. [root@qz-13-208 ~]# fdisk /dev/sd
  2. sda sda1 sda2 sda3 sda4 sda5 sda6 sdb
  1. [root@qz-13-208 ~]# fdisk /dev/sdb
  2. 欢迎使用 fdisk (util-linux 2.23.2)。
  3. 更改将停留在内存中,直到您决定将更改写入磁盘。
  4. 使用写入命令前请三思。
  5. Device does not contain a recognized partition table
  6. 使用磁盘标识符 0x31284959 创建新的 DOS 磁盘标签。
  7. 命令(输入 m 获取帮助):m
  8. 命令操作
  9. a toggle a bootable flag
  10. b edit bsd disklabel
  11. c toggle the dos compatibility flag
  12. d delete a partition
  13. g create a new empty GPT partition table
  14. G create an IRIX (SGI) partition table
  15. l list known partition types
  16. m print this menu
  17. n add a new partition
  18. o create a new empty DOS partition table
  19. p print the partition table
  20. q quit without saving changes
  21. s create a new empty Sun disklabel
  22. t change a partition's system id
  23. u change display/entry units
  24. v verify the partition table
  25. w write table to disk and exit
  26. x extra functionality (experts only)
  27. 命令(输入 m 获取帮助):n
  28. Partition type:
  29. p primary (0 primary, 0 extended, 4 free)
  30. e extended
  31. Select (default p): p
  32. 分区号 (1-4,默认 1):1
  33. 起始 扇区 (2048-104857599,默认为 2048):
  34. 将使用默认值 2048
  35. Last 扇区, +扇区 or +size{K,M,G} (2048-104857599,默认为 104857599):
  36. 将使用默认值 104857599
  37. 分区 1 已设置为 Linux 类型,大小设为 50 GiB
  38. 命令(输入 m 获取帮助):w
  39. The partition table has been altered!
  40. Calling ioctl() to re-read partition table.
  41. 正在同步磁盘。
  1. [root@qz-13-208 ~]# fdisk -l
  2. 磁盘 /dev/sda107.4 GB, 107374182400 字节,209715200 个扇区
  3. Units = 扇区 of 1 * 512 = 512 bytes
  4. 扇区大小(逻辑/物理):512 字节 / 512 字节
  5. I/O 大小(最小/最佳):512 字节 / 512 字节
  6. 磁盘标签类型:dos
  7. 磁盘标识符:0x000c60db
  8. 设备 Boot Start End Blocks Id System
  9. /dev/sda1 2048 6143 2048 83 Linux
  10. /dev/sda2 * 6144 415743 204800 83 Linux
  11. /dev/sda3 415744 1030143 307200 83 Linux
  12. /dev/sda4 1030144 104857599 51913728 5 Extended
  13. /dev/sda5 1032192 1048575 8192 82 Linux swap / Solaris
  14. /dev/sda6 1050624 104857599 51903488 83 Linux
  15. 磁盘 /dev/sdb107.4 GB, 107374182400 字节,209715200 个扇区
  16. Units = 扇区 of 1 * 512 = 512 bytes
  17. 扇区大小(逻辑/物理):512 字节 / 512 字节
  18. I/O 大小(最小/最佳):512 字节 / 512 字节
  19. 磁盘标签类型:dos
  20. 磁盘标识符:0xea33e4e1
  21. 设备 Boot Start End Blocks Id System
  22. /dev/sdb1 2048 209715199 104856576 83 Linux
  1. mkfs.xfs /dev/sdb1
  2. mkdir /data
  3. mount /dev/sdb1 /data
  4. blkid #获取UUID
  5. vim /etc/fstab  #
  6. UUID=83b02679-f929-4905-be55-4bf5603fb98c /data xfs defaults 0 0