在企業中有時我們為方便安裝軟體、資料的管理,需要把安裝軟體、資料放到固定目錄下,磁碟滿了方便擴充套件,這裡假如需要乙個/data目錄存放資料,並單獨進行掛載。
請參考(1-7部分)
[root@centos-6 ~]# pvcreate /dev/sdb1
physical volume "/dev/sdb1" successfully created
掃瞄系統pv可以使用pvscan檢視新建的pv
[root@centos-6 ~]# pvscan
pv /dev/sda2 vg volgroup lvm2 [19.51 gib / 0 free]
pv /dev/sdb1 lvm2 [10.00 gib]
total: 2 [29.51 gib] / in use: 1 [19.51 gib] / in no vg: 1 [10.00 gib]
[root@centos-6 ~]# vgcreate vgtest /dev/sdb1
volume group "vgtest" successfully created
注釋:vgtest 為vg的名稱
掃瞄vg
[root@centos-6 ~]# vgscan
reading all physical volumes. this may take a while...
found volume group "vgtest" using metadata type lvm2
found volume group "volgroup" using metadata type lvm2
檢視vg
[root@centos-6 ~]# vgdisplay
--- volume group ---
vg name vgtest
system id
format lvm2
metadata areas 1
metadata sequence no 1
vg access read/write
vg status resizable
max lv 0
cur lv 0
open lv 0
max pv 0
cur pv 1
act pv 1
vg size 10.00 gib
pe size 4.00 mib
total pe 2560
alloc pe / size 0 / 0
free pe / size 2560 / 10.00 gib
vg uuid 59z2ml-cezb-pivw-znq9-2kbv-hscj-drfdr9
--- volume group ---
vg name volgroup
system id
format lvm2
metadata areas 1
metadata sequence no 3
vg access read/write
vg status resizable
max lv 0
cur lv 2
open lv 2
max pv 0
cur pv 1
act pv 1
vg size 19.51 gib
pe size 4.00 mib
total pe 4994
alloc pe / size 4994 / 19.51 gib
free pe / size 0 / 0
vg uuid upjdxo-8rjg-muvj-nvnt-hjxi-azvv-uggc2x
[root@centos-6 ~]# lvcreate -l 2560 -n lvdata vgtest
logical volume "lvdata" created.
[root@centos-6 ~]# mkfs -t ext4 /dev/vgtest/lvdata
mke2fs 1.41.12 (17-may-2010)
檔案系統標籤=
作業系統:linux
塊大小=4096 (log=2)
分塊大小=4096 (log=2)
stride=0 blocks, stripe width=0 blocks
655360 inodes, 2621440 blocks
131072 blocks (5.00%) reserved for the super user
第乙個資料塊=0
maximum filesystem blocks=2684354560
80 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
正在寫入inode表: 完成
creating journal (32768 blocks): 完成
writing superblocks and filesystem accounting information: 完成
this filesystem will be automatically checked every 39 mounts or
180 days, whichever comes first. use tune2fs -c or -i to override.
建立目錄:
[root@centos-6 ~]# mkdir -p /data
掛載目錄
[root@centos-6 ~]# mount /dev/vgtest/lvdata /data
檢視[root@centos-6 ~]# vi /etc/fstab
LVM系統建立
lvm logical volume manager 邏輯卷管理是一種分布式儲存系統,模糊了分割槽與物理儲存之間的關係。lvm系統建立主要有三部分 pv physical volume 建立 vgs volume groups 建立 lvs logical volumes 建立。主要包括 pv建立 ...
Linux系統基礎之建立lvm
根據公司需求,要搭建臺檔案伺服器,首先想到了samba,其次為了方便各部門所佔磁碟空間的擴充套件,決定採用lvm,過程如下 www.2cto.com 1 建立linux分割槽 2 建立物理卷 pvcreate是系統建立物理卷的命令,dev sdb1,dev sdc1.dev sdd1這些是剛才建立的...
Ubuntu下掛載LVM格式磁碟
由於把伺服器的centos系統玩壞了,因此找個機器把硬碟裡面的資料拷貝出來。磁碟如果是普通的分割槽,比如 ntfs ext3等,可以直接用mount t來制定檔案系統型別來掛載,但發現centos採用的lvm卷的分割槽,要掛載這類磁碟,就應該按照以下方式 a.掃瞄邏輯卷 sudo vgscan會顯示...