CentOS下添加新硬盘并分区格式化的详细步骤

下面看我操作的步骤:
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

(0)

相关推荐

  • Linux下添加新硬盘,分区并设置启动自动挂载

    Linux下的分区相对Windows而言要稍微复杂一点,下面就由我给大家带来在Linux下新添加硬盘,分区并实现系统启动时自动挂载的过程 操作方法 01 检查发现系统上目前并没有挂载新的硬盘,如下图所 ...

  • 在linux系统下添加新硬盘

    fdisk -l ## 这里是查看目前系统上有几块硬盘 Disk /dev/sda: 36.4 GB, 36401479680 bytes 255 heads, 63 sectors/track, 4 ...

  • Linux系统下添加新硬盘,分区,格式化相关步骤

    预备知识 在我们添加硬盘前,首先要了解linux系统下对硬盘和分区的命名方法。 在Linux下对IDE的设备是以hd命名的,第一个ide设备是hda,第二个是hdb。依此类推 我们一般主板上有两个ID ...

  • TurboLinux11添加新硬盘方法

    一.Linux的硬盘识别 2.6 kernel以后,linux会将识别到的硬件设备,在/dev/下建立相应的设备文件.如: sda 表示第1块SCSI硬盘.hda 表示第1块IDE硬盘(即连接在第1个 ...

  • 电脑新硬盘如何分区

    给硬盘分区是使用电脑的一门必修课,如果你空有一系列硬盘分区规划,却又不熟悉硬盘分区,那就真的太遗憾了。当我们组装好一台电脑之后,即将面对的就是为电脑安装操作系统了。安装操作系统前我们要做的就是硬盘分区 ...

  • Linux虚拟机添加新硬盘的全程图解

    虚拟机中的Linux添加新硬盘的方法 操作方法 01 打开VMware Workstation 02 1.编辑虚拟机设置 03 2.硬件-添加-硬盘-下一步 04 3.然后出现如下图:选择" ...

  • 怎样使用DiskGenius对新硬盘进行分区

    DiskGenius是众多硬盘分区工具的其中一种,常见于很多Ghost封装的操作系统中。所以,学会用DiskGenius对新硬盘进行分区是装系统的第一步。下面详细讲述如何使用怎样使用DiskGeniu ...

  • 虚拟机怎么添加新硬盘

    现在有很多人使用电脑时都会接触到虚拟机,有些用户想知道怎么添加新硬盘,接下来小编就给大家介绍一下具体的操作步骤.具体如下:1. 首先第一步打开电脑中的虚拟机软件,根据下图箭头所指,将它处于关机状态.2 ...

  • 怎样使用Partition Magic对新硬盘进行分区

    Partition Magic是众多硬盘分区工具的其中一种,常见于很多Ghost封装的操作系统中.所以,学会用Partition Magic对新硬盘进行分区是装系统的第一步.下面详细讲述如何使用怎样使 ...