以下介绍,centos 5中新增硬盘的具体步骤。
1、查看硬盘信息
fdisk -l
[root@ast-Stables ~]# fdisk -l
Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 linux
/dev/sda2 14 77 514080 82 Linux swap / Solaris
/dev/sda3 78 1305 9863910 83 Linux
Disk /dev/sdb: 107.3 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
第二个硬盘因为没有格式化,所以没有相关的分区信息。
fdisk 命令参数说明:
fdisk可以用m命令来看fdisk命令的内部命令;
fdisk /dev/sdb
[root@ast-Stables ~]# fdisk /dev/sdb
The number of cylinders for this disk is set to 13054.
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)
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
以下步骤会提示磁盘的磁头的开始和结束位置,按默认的只建立一个分区。
最后
Command (m for help): w
保存,自动退出到命令行。
查看一下:
用ext3 的格式来格式化分区
格式化分区:
创建一个目录,以便挂载新分区
挂载分区:
为新分区建立分区标签
下次启动时,自动加载新分区。
黑色字体的行为添加的行。
使用mount -a 验证配置是否有问题
重启系统
最有df -l 显示的分区信息:
至此,在centos中新增硬盘完毕,并挂载到文件系统中,作好了相关分区。
希望本文可以帮助到大家。
脚本学堂,祝大家学习进步。