2011年(1)
分类: LINUX
2011-01-17 14:56:17
这里以添加一块8GB的scsi硬盘为例
首先,把硬盘装到服务器上,开机已管理员身份登入系统。
使用fdisk -l 命令查看新添加的硬盘标号,这里的新硬盘编号是sdc
[root@localhost ~]# fdisk -l
Disk /dev/sda: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 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 2610 20860402+ 8e Linux LVM
Disk /dev/sdb: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk /dev/sdb doesn't contain a valid partition table
使用命令fdisk /dev/sdb给新添加的硬盘分区
可用的命令参数
Command (m for help): /p
/: unknown command
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)
首先把sdb创建为一个扩展分区
然后创建2个逻辑分区
分区完成后用w把分区写入硬盘
创建在分好区的硬盘上文件系统,这里已创建ext3文件系统为例
mke2fs -j /dev/sdc5
创建挂载点
mkdir /data
挂载硬盘
可以使用mount命令(要把mount命令写入/etc/rc.d/rc.loal)也可以修改/etc/fstab文件
mount /dev/sdb5 /data 把sdc5挂载到/data上
然后修改rc.local文件如下
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
mount /dev/sdb5 /data
修改/etc/fstab文件
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
/dev/sdb5 /data ext3 defaults,usrquota 1 2
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
注意格式,若格式错误Linux系统将无法启动,所以建议使用mount命令挂载。
重启后用df -h 命令查看是否挂载成功
/dev/mapper/VolGroup00-LogVol00
18G 2.4G 15G 15% /
/dev/sda1 99M 11M 83M 12% /boot
tmpfs 125M 0 125M 0% /dev/shm
/dev/sdb5 1.9G 35M 1.8G 2% /data
添加硬盘成功
其它会用到的命令
df -T 查看Linux系统分区上的文件系统