下面看我操作的步骤:
1.先用Fdisk -l 来查看当前状态下磁盘情况
[root@linux1 ~]# fdisk -l
Disk /dev/hda: 5368 MB, 5368709120 bytes
255 heads, 63 sectors/track, 652 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 13 104391 83 Linux
/dev/hda2 14 652 5132767 8e Linux LVM
Disk /dev/hdb: 2147 MB, 2147483648 bytes
16 heads, 63 sectors/track, 4161 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Disk /dev/hdb doesn't contain a valid partition table
上面红色标识行可以看出,我添加了一块新硬盘/dev/hdb,大小为2G,未分区格式化状态。
2.用Fdisk /dev/hdb来进行分区操作。
[root@linux1 ~]# fdisk /dev/hdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won't be recoverable.
The number of cylinders for this disk is set to 4161.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
Command (m for help): n //输入N表示新建一个分区
Command action
e extended
p primary partition (1-4)
p //p 表示建立一个原始分区
Partition number (1-4): 1 //1 表示此分区编号为1.
First cylinder (1-4161, default 1): 1 //1表示使用默认起始柱面号.如果要分多个区的话,先盘算好要多大,再输入数字
Last cylinder or size or sizeM or sizeK (1-4161, default 4161): // 输入: 回车 表示使用默认结束柱面号.即此分区使用整个硬盘空间
Using default value 4161
Command (m for help): w //保存分区
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
3.再次查看当前分区状态:
[root@linux1 ~]# fdisk -l
Disk /dev/hda: 5368 MB, 5368709120 bytes
255 heads, 63 sectors/track, 652 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 13 104391 83 Linux
/dev/hda2 14 652 5132767 8e Linux LVM
Disk /dev/hdb: 2147 MB, 2147483648 bytes
16 heads, 63 sectors/track, 4161 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 1 4161 2097112 83 Linux
可以看出,已经出来了一个/dev/hdb1的新分区。下一步将其格式化,再使用
4.用mkfs.ext3格式化新分区
[root@linux1 ~]# mkfs.ext3 /dev/hdb1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
262144 inodes, 524278 blocks
26213 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912
Writing inode tables: done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
5.挂载使用。
[root@linux1 ~]# mkdir /mnt/hdb1 //新建一个挂载点。
[root@linux1 ~]# mount /dev/hdb1 /mnt/hdb1 //挂载。
[root@linux1 ~]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/mapper/VolGroup00-LogVol00
4.3G 3.6G 487M 89% /
/dev/hda1 99M 12M 82M 13% /boot
tmpfs 125M 0 125M 0% /dev/shm
/dev/hdb1 2.0G 3.0M 1.9G 1% /mnt/hdb1
6 .开机自动挂载
三.设置新硬盘开机自动挂载
在vi /etc/fstab中添加新硬盘的挂载信息.添加下面一行:
/dev/hdb1 /mnt/hdb1 ext3 defaults 1 2(如果还有一个分区就是1 3,以此类推)
这样,每次开机后,系统会自动将/dev/hdb1挂载到/mnt/hdb1
CentOS下添加新硬盘并分区格式化的详细步骤
2019-10-06 20:54CentOS教程网 Centos
Linux磁带备份,所以我先添加一块硬盘,并相应的建立分区,格式化,然后挂载使用
延伸 · 阅读
- 2022-03-10简单谈谈centos7中配置php
- 2022-03-10centos7下安装java及环境变量配置技巧
- 2022-03-10CentOs下安装gcc/g++/gdb的方法
- 2022-03-09CentOS 7中 Minimal 安装JDK 1.8的教程
- 2022-03-09CentOS环境下安装PHPUnit的方法分析
- 2022-03-09CentOS6.5与CentOS7 ssh修改默认端口号的方法
- Centos
CentOS如何备份策略?CentOS备份策略的方法
很多朋友不知道CentOS如何备份策略?今天小编将为大家带来CentOS备份策略的方法;希望可以帮助到大家,有需要的朋友一起去看看吧...
- Centos
在CentOS上安装Percona服务器的方法
这篇文章主要介绍了在CentOS上安装Percona服务器的方法,Percona服务器上集成了基于MySQL的强大数据库支持功能,需要的朋友可以参考下 ...
- Centos
Linux下如何查看某个软件是否安装???软件的安装路径又在哪
这篇文章主要介绍了Linux下如何查看某个软件是否安装???软件的安装路径又在哪???,本文以Redhat系统为例,讲解如何查询软件是否安装,软件的安装位...
- Centos
CentOS 安装图形化界面方法
这篇文章主要介绍了centos下安装图形化界面的方法,有些时候纯命令界面确实比较累,个人学习可以使用图像界面,服务器强烈不建议用图形界面 ...
- Centos
在CentOS上配置Software Collections源的方法
这篇文章主要介绍了在CentOS上配置Software Collections源的方法,SCL软件集能够更方便地管理软件版本,需要的朋友可以参考下...
- Centos
CentOS中检测IP地址是否冲突?IP地址冲突的解决方法
最近一些朋友会问如何知道自己的linux主机是否与网络中其它的windows主机IP地址冲突?今天小编为大家带来的是在CentOS中检测IP地址是否冲突?IP地址冲突的解...
- Centos
在CentOS 6.5上如何安装Screen?在CentOS 6.5上安装Screen的方法
Screen是一款由GNU计划开发的用于命令行终端切换的自由软件。那么在CentOS 6.5上如何安装Screen?今天小编就为大家带来在CentOS 6.5上安装Screen的方法!希望对大...
- Centos
CentOS命令大全 包括:系统命令,各种服务器搭建等
在电脑常用操作中,我们经常会用到CentOS常用命令。所以,我们对一些经常使用又很重要的CentOS常用命令进行了全面的整理 ...