为硬盘添加分区并格式化


    首先添加一块硬盘,在此硬盘上进行操作。添加好之后开机,在/dev下可以看到刚才添加的硬盘sdb。对sdb执行创建分区的操作。

    [root@localhost dev]# fdisk /dev/sdb

    新建分区

    Command (m for help): n

    选择创建主分区还是扩展分区

    Command action

    e   extended

    p   primary partition (1-4)

    由于是第一次进行分区,输入p,从主分区开始创建,接下来选择或输入分区大小。下面是创建好的两个分区    

    Device Boot         Start         End      Blocks   Id  System

    /dev/sdb1               1         523     4200966   83  Linux

    /dev/sdb2             524        1046     4200997+  83  Linux

   输入w保存退出。

   分区创建好后必须格式化,不然无法使用。

   [root@localhost dev]# mke2fs -t ext4 /dev/sdb1

   [root@localhost dev]# mke2fs -t ext4 /dev/sdb2

   挂载之后就可以使用了

    [root@localhost mnt]# mount /dev/sdb1 /mnt/sdb1

    [root@localhost mnt]# mount /dev/sdb2 /mnt/sdb2

   现在可以用df查看一下

    [root@localhost mnt]# df

    Filesystem     1K-blocks    Used Available Use% Mounted on

    /dev/sda2      122551348 8964036 107362060   8% /

    tmpfs             247112      72    247040   1% /dev/shm

    /dev/sda1         297485   44752    237373  16% /boot

    /dev/sdb1        4134900  139288   3785564   4% /mnt/sdb1

    /dev/sdb2        4134932  139288   3785596   4% /mnt/sdb2

    


    

你可能感兴趣的:(分区)