1.划分新的分区.(以/dev/sdb硬盘为例)
[root@dbatest1 ~]# fdisk /dev/sdb
The number of cylinders for this disk is set to 4427.
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): 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): d ---删除原有分区
Partition number (1-4): 1
Command (m for help): d
Selected partition 2
Command (m for help): d ---确认已删除了原有分区
No partition is defined yet!
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 4 ---将整个硬盘划分成一个分区
First cylinder (1-4427, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-4427, default 4427):
Using default value 4427
Command (m for help): w ---保存信息
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
2.查看已划分好的分区
[root@dbatest1 ~]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
136805368 3153192 126590672 3% /
/dev/sda1 101086 10906 84961 12% /boot
tmpfs 1037772 0 1037772 0% /dev/shm
[root@dbatest1 ~]# fdisk -l
Disk /dev/sda: 146.8 GB, 146815733760 bytes
255 heads, 63 sectors/track, 17849 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 17849 143267670 8e Linux LVM
Disk /dev/sdb: 146.8 GB, 146815733760 bytes
255 heads, 63 sectors/track, 17849 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb4 1 17849 143372061 83 Linux
Disk /dev/sdc: 36.4 GB, 36420075008 bytes
255 heads, 63 sectors/track, 4427 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdc4 1 4427 35559846 83 Linux
[root@dbatest1 ~]#
[root@dbatest1 ~]#
3.将新的分区加上LVM管理
1).创建PV
[root@dbatest1 ~]# pvcreate /dev/sdb4
Physical volume "/dev/sdb4" successfully created
2).创建VG
[root@dbatest1 ~]# vgcreate vgdata01 /dev/sdb4
Volume group "vgdata01" successfully created
3).创建LV
[root@dbatest1 ~]# lvcreate -L 140000M -n lvdata01 vgdata01
Logical volume "lvdata01" created
4).创建ext3文件系统
[root@dbatest1 ~]# mkfs.ext3 /dev/vgdata01/lvdata01
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
17924096 inodes, 35840000 blocks
1792000 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
1094 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 25 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
5).创建mount目录
[root@dbatest1 /]# mkdir data01
6).挂接LV到mountpoint
[root@dbatest1 /]# mount /dev/vgdata01/lvdata01 /data01
4.确认已完成.
[root@dbatest1 /]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
136805368 3153212 126590652 3% /
/dev/sda1 101086 10906 84961 12% /boot
tmpfs 1037772 0 1037772 0% /dev/shm
/dev/mapper/vgdata01-lvdata01
141110136 192132 133750004 1% /data01
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/7364032/viewspace-422877/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/7364032/viewspace-422877/