redhat6.2上做LVM
1
先給虛擬機器上的RH加一個硬碟。
2
啟動RH
3
在終端上輸入
[BeiGang@localhost~]$fdisk -l
Disk /dev/sdc: 1073 MB, 1073741824 bytes
……
Disk /dev/sdc doesn't contain a valid partition table
4
分區1
[BeiGang@localhost~]$fdisk /dev/sdc
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-130, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-130, default 130): +100M
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
[BeiGang@localhost~]$
5
查看
[BeiGang@localhost~]$fdisk -l
Device Boot Start End Blocks Id System
/dev/sdc1 1 14 112423+ 83 Linux
6
分區2
[BeiGang@localhost~]$fdisk /dev/sdc
n
p
2
15
+100M
w
7
查看
[BeiGang@localhost~]$fdisk -l
Device Boot Start End Blocks Id System
/dev/sdc1 1 14 112423+ 83 Linux
/dev/sdc2 15 28 112455 83 Linux
8
添加物理卷
[BeiGang@localhost~]$pvcreate /dev/sdc1
Writing physical volume data to disk "/dev/sdc1"
Physical volume "/dev/sdc1" successfully created
[BeiGang@localhost~]$pvcreate /dev/sdc2
Writing physical volume data to disk "/dev/sdc2"
Physical volume "/dev/sdc2" successfully created
[BeiGang@localhost~]$
17
在檔案夾seconddisk上組建檔案
[BeiGang@localhost~]$touch /seconddisk/{1..9}.txt
[BeiGang@localhost~]$ll /seconddisk/
total 23
-rw-r--r--. 1 root root 0 Nov 8 14:06 1.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 2.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 3.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 4.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 5.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 6.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 7.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 8.txt
-rw-r--r--. 1 root root 0 Nov 8 14:06 9.txt
drwx------. 2 root root 12288 Nov 8 13:51 lost+found
[BeiGang@localhost~]$
18
刪除/dev/VG1/lv1,/dev/VG1/lv2
[BeiGang@localhost~]$lvremove /dev/VG1/lv1
Can't remove open logical volume "lv1"
[BeiGang@localhost~]$umount /seconddisk/
[BeiGang@localhost~]$lvremove /dev/VG1/lv1
Do you really want to remove active logical volume lv1? [y/n]: y
Logical volume "lv1" successfully removed
[BeiGang@localhost~]$
[BeiGang@localhost~]$lvremove /dev/VG1/lv2
Do you really want to remove active logical volume lv2? [y/n]: y
Logical volume "lv2" successfully removed
19
刪除/dev/VG1
[BeiGang@localhost~]$vgremove /dev/VG1
Volume group "VG1" successfully removed
[BeiGang@localhost~]$
20
刪除物理卷
[BeiGang@localhost~]$pvremove /dev/sdc3
Labels on physical volume "/dev/sdc3" successfully wiped
[BeiGang@localhost~]$pvremove /dev/sdc2
Labels on physical volume "/dev/sdc2" successfully wiped
[BeiGang@localhost~]$pvremove /dev/sdc1
Labels on physical volume "/dev/sdc1" successfully wiped
[BeiGang@localhost~]$
值得說的一點是在做LVM時,檔案類型不必是8e,83也可,具體見下面的Id。
[BeiGang@localhost~]$fdisk -l
Device Boot Start End Blocks Id System
/dev/sdc1 1 14 112423+ 83 Linux
/dev/sdc2 15 28 112455 83 Linux