码迷,mamicode.com
首页 > 系统相关 > 详细

Linux添加新硬盘及分区,格式化,挂载

时间:2017-05-08 16:04:18      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:entry   track   div   挂载   log   nali   end   type   imu   

1、查看分区信息:

[root@localhost /]# fdisk -l

Disk /dev/vdb: 209.7 GB, 209715200000 bytes
16 heads, 63 sectors/track, 406349 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

2、硬盘分区:

[root@localhost /]# fdisk /dev/vdb
Command (m for help): m

Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition‘s system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)  

Command (m for help): n

Command action
   e   extended
   p   primary partition (1-4)

p
Partition number (1-4): 1

First cylinder (1-406349, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-406349, default 406349):
Using default value 406349

3、格式化硬盘:

[root@localhost /]# mkfs -t ext4 /dev/vdb1

4、挂载硬盘分区:

[root@localhost /]# mount /dev/vdb1 /home

4.1、卸载硬盘分区:

[root@localhost /]# umount /home

5、添加挂载命令到系统启动项:

[root@localhost ]# vim /etc/fstab
/dev/vdb1               /home                   ext4    defaults        1 3

 

[THE END]

 

Linux添加新硬盘及分区,格式化,挂载

标签:entry   track   div   挂载   log   nali   end   type   imu   

原文地址:http://www.cnblogs.com/configure/p/6824889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!