真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Linux怎樣創(chuàng)建LVM

這篇文章給大家介紹Linux怎樣創(chuàng)建LVM,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序定制開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了楚雄州免費建站歡迎大家使用!

Linux 創(chuàng)建LVM(Logical Volume)

近期和其它同事參與了存儲的劃分,由于工作性質(zhì),這方面的命令已經(jīng)特別陌生,重新梳理了LVM創(chuàng)建過程,以便不時之需;

---1 操作系統(tǒng)版本
[root@chen ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 6.4 (Santiago)
Kernel \r on an \m

---2 需要創(chuàng)建LVM的磁盤
[root@chen ~]# fdisk -l

Disk /dev/sdb: 1073 MB, 1073741824 bytes
255 heads, 63 sectors/track, 130 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/sdc: 1073 MB, 1073741824 bytes
255 heads, 63 sectors/track, 130 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/sdd: 1073 MB, 1073741824 bytes
255 heads, 63 sectors/track, 130 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

---3 創(chuàng)建PV(Physical Volume)
[root@chen ~]# pvcreate /dev/sdb
  Physical volume "/dev/sdb" successfully created
[root@chen ~]# pvcreate /dev/sdc
  Physical volume "/dev/sdc" successfully created
[root@chen ~]# pvcreate /dev/sdd
  Physical volume "/dev/sdd" successfully created

---4 查看PV
[root@chen ~]# pvdisplay 
  "/dev/sdb" is a new physical volume of "1.00 GiB"
  --- NEW Physical volume ---
  PV Name               /dev/sdb
  VG Name               
  PV Size               1.00 GiB
  Allocatable           NO
  PE Size               0   
  Total PE              0
  Free PE               0
  Allocated PE          0
  PV UUID               JA8nPJ-LP8N-cw1U-qCY3-0yiD-yYJd-XiiHBq
   
  "/dev/sdc" is a new physical volume of "1.00 GiB"
  --- NEW Physical volume ---
  PV Name               /dev/sdc
  VG Name               
  PV Size               1.00 GiB
  Allocatable           NO
  PE Size               0   
  Total PE              0
  Free PE               0
  Allocated PE          0
  PV UUID               CRoe30-68V7-vVgt-QKss-kS3H-pufb-znImot
   
  "/dev/sdd" is a new physical volume of "1.00 GiB"
  --- NEW Physical volume ---
  PV Name               /dev/sdd
  VG Name               
  PV Size               1.00 GiB
  Allocatable           NO
  PE Size               0   
  Total PE              0
  Free PE               0
  Allocated PE          0
  PV UUID               sb7VKF-JY1B-vACE-hUZI-e2KQ-PfXe-CMCBVF
  
[root@chen ~]# pvscan 
  PV /dev/sdb                      lvm2 [1.00 GiB]
  PV /dev/sdc                      lvm2 [1.00 GiB]
  PV /dev/sdd                      lvm2 [1.00 GiB]
  Total: 3 [3.00 GiB] / in use: 0 [0   ] / in no VG: 3 [3.00 GiB]
 
---5 創(chuàng)建VG(Volumne Group)
[root@chen ~]# vgcreate VolGroup001 /dev/sdb /dev/sdc /dev/sdd
  Volume group "VolGroup001" successfully created

---6 查看VG
[root@chen ~]# vgdisplay 
  --- Volume group ---
  VG Name               VolGroup001
  System ID             
  Format                lvm2
  Metadata Areas        3
  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                3
  Act PV                3
  VG Size               2.99 GiB
  PE Size               4.00 MiB
  Total PE              765
  Alloc PE / Size       0 / 0   
  Free  PE / Size       765 / 2.99 GiB
  VG UUID               DwFmKs-LONs-aF91-vrHt-9C9S-YoyQ-CLGwRn

[root@chen ~]# vgscan 
  Reading all physical volumes.  This may take a while...
  Found volume group "VolGroup001" using metadata type lvm2

---7 創(chuàng)建LV(Logical Volume)
[root@chen ~]# lvcreate -L 2G -n lvData01 VolGroup001
  Logical volume "lvData01" created

---8 查看LV
[root@chen ~]# lvdisplay 
  --- Logical volume ---
  LV Path                /dev/VolGroup001/lvData01
  LV Name                lvData01
  VG Name                VolGroup001
  LV UUID                5V8LUf-I835-isBg-l0zN-tfhI-XmkS-sibQ7s
  LV Write Access        read/write
  LV Creation host, time chen, 2018-04-19 23:43:42 +0800
  LV Status              available
  # open                 0
  LV Size                2.00 GiB
  Current LE             512
  Segments               3
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:0

[root@chen ~]# lvscan 
  ACTIVE            '/dev/VolGroup001/lvData01' [2.00 GiB] inherit

[root@chen ~]# fdisk -l
......
Disk /dev/mapper/VolGroup001-lvData01: 2147 MB, 2147483648 bytes
255 heads, 63 sectors/track, 261 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

---9 格式化
[root@chen ~]# mkfs -t ext4 /dev/mapper/VolGroup001-lvData01 

---10 掛載
[root@chen ~]# mkdir /data
[root@chen ~]# mount /dev/VolGroup001/lvData01 /data
[root@chen ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda3              48G   29G   16G  65% /
tmpfs                 932M   76K  932M   1% /dev/shm
/dev/sda1             194M   33M  152M  18% /boot
/dev/sr0              3.5G  3.5G     0 100% /media/RHEL_6.4 x86_64 Disc 1
/dev/mapper/VolGroup001-lvData01
                      2.0G   67M  1.9G   4% /data

[root@chen ~]# vi /etc/fstab
/dev/mapper/VolGroup001-lvData01 /data          ext4    defaults        0 0  

關(guān)于Linux怎樣創(chuàng)建LVM就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


分享名稱:Linux怎樣創(chuàng)建LVM
當前網(wǎng)址:http://weahome.cn/article/jposgd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部