- 首先查看機器上有多少塊硬盤:
$ fdisk -l
Disk /dev/sdd: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/sdd doesn't contain a valid partition table
……
Disk /dev/sdh: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xd54c485e
Device Boot Start End Blocks Id System
/dev/sdh1 1 121601 976760001 83 Linux
我的服務器上有很多塊庶柿,有上述信息可知村怪,目前sdd硬盤還為掛載
- 硬盤分區(qū)
$ fdisk /dev/sdd
n->p->1->回車->回車
意思就是新建一個主分區(qū)秽浇,大小是整個sdd磁盤
最后執(zhí)行w,寫入磁盤
此時磁盤已經分區(qū)甚负,但是還沒有文件系統柬焕,磁盤依然不能用
- 格式化磁盤并寫入文件系統
$ mkfs.ext4 /dev/sdd1
等待命令執(zhí)行完成
- 掛載新硬盤到操作系統的某個節(jié)點上
$ mkdir /mnt/sdd
$ mount /dev/sdd1 /mnt/sdd
- 執(zhí)行df命令查看磁盤信息,確認掛載新硬盤成功
$ df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda3 928204272 4191296 876862896 1% /
tmpfs 32981876 12 32981864 1% /dev/shm
/dev/sda1 198337 31960 156137 17% /boot
/dev/sdh1 961432072 204436 912389636 1% /mnt/sdh
/dev/sdd1 961432072 204436 912389636 1% /mnt/sdd
以上加粗字體就是新增磁盤梭域。