您好,登錄后才能下訂單哦!
本篇文章為大家展示了VMware重啟添加scsi硬盤如何實現LVM對文件系統分區擴容,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
我們將基于LVM對文件系統分區進行擴容。
1.預備工作:
我們要知道LVM一般的操作步驟為:
1】 pvcreate # 把物理設備[/dev/sdb3]轉換成物理卷
2】vgextend # 把pvcreate產生的物理卷添加到特定的邏輯卷組中
3】 lvextend # 利用邏輯卷組中的空閑空間來對邏輯卷進行擴容
4】resize2fs # 調整ext2或ext3文件系統的大小,
必須經過這一部,文件系統的磁盤空間才得以改變
查看一下當前的文件系統磁盤空間情況:
[root@server01 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
3.9G 3.7G 0 100% /
#這里可以看到根分區使用的是邏輯卷LogVol00,卷組為VolGroup00 ,根分區空間已經快用完了。
2. 在線擴容
[1] 使用pvcreate 把物理設備[/dev/sdb3]轉換成物理卷
[root@server01 ~]# pvcreate /dev/sdb3
Physical volume “/dev/sdb3” successfully created[root@server01 ~]# pvscan
PV /dev/sda2 VG VolGroup00 lvm2 [3.94 GB / 0 free]
PV /dev/sdb3 lvm2 [4.00 GB]
Total: 2 [7.94 GB] / in use: 1 [3.94 GB] / in no VG: 1 [4.00 GB]
[2] 使用vgextend 把pvcreate產生的物理卷添加到特定的邏輯卷組中
先來查看系統中原有的邏輯卷組:
[root@server01 ~]# vgdisplay
— Volume group —
VG Name VolGroup00
System ID
Format lvm2
………….(此處略去一些字)……………..
Free PE / Size 0 / 0
VG UUID Zco6EF-DxKn-V2Qn-Ca2y-JBhQ-JIO5-SvKcji
我的系統中當前只有一個名為VolGroup00邏輯卷組,而且這個邏輯卷組剛好是 / 分區使用的那個,我們就把物理卷添加到這個卷組(VG)里面。
[root@server01 ~]# vgextend /dev/mapper/VolGroup00 /dev/sdb3
Volume group “VolGroup00” successfully extended
[3] 使用lvextend把邏輯卷組中的空閑空間擴展到 / 分區所在的邏輯卷(LogVol00)中:
[這里我添加了200M]
[root@server01 ~]# lvextend -L +200M /dev/mapper/VolGroup00-LogVol00
Rounding up size to full physical extent 224.00 MB
Extending logical volume LogVol00 to 4.16 GB
Logical volume LogVol00 successfully resized
[root@server01 ~]#
然后我們查看分區的空間有沒有變化:
[root@server01 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
3.9G 3.7G 0 100% /
/dev/sda1 31M 7.8M 22M 27% /boot
tmpfs 252M 0 252M 0% /dev/shm
沒有任何變化!為什么呢?之前說過了,還有第四步——調整文件系統大小
[4] 使用resize2fs調整文件系統的大小:
[root@server01 ~]# resize2fs /dev/VolGroup00/LogVol00 resize2fs 1.39 (29-May-2006) Filesystem at /dev/VolGroup00/LogVol00 is mounted on /; on-line resizing required Performing an on-line resize of /dev/VolGroup00/LogVol00 to 1089536 (4k) blocks. The filesystem on /dev/VolGroup00/LogVol00 is now 1089536 blocks long. [root@server01 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-LogVol00 4.1G 3.7G 168M 96% / /dev/sda1 31M 7.8M 22M 27% /boot tmpfs 252M 0 252M 0% /dev/shm
上述內容就是VMware重啟添加scsi硬盤如何實現LVM對文件系統分區擴容,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。