VMware安裝虛擬機(jī)后,磁盤空間不足,需要進(jìn)行擴(kuò)展。
系統(tǒng)版本:Centos 7
可用空間:
選擇左側(cè)【硬盤】,右側(cè)點(diǎn)擊【擴(kuò)展】
輸入擴(kuò)展后的硬盤大小(非增量,而是增加后的總量)
這里以從10GB增加15GB,到25GB為例
fdisk /dev/sda
p
(查看已有分區(qū),用于確定新增分區(qū)號(hào))n
p
3
(分區(qū)號(hào),由已有最大分區(qū)號(hào)+1得到)回車
(默認(rèn)起始扇區(qū))回車
(默認(rèn)結(jié)束扇區(qū))t
(修改分區(qū)類型)3
8e
(分區(qū)類型,Linux LVM partition)w
(將改動(dòng)寫入分區(qū))[root@client ~]# fdisk /dev/sda
歡迎使用 fdisk (util-linux 2.23.2)。
更改將停留在內(nèi)存中,直到您決定將更改寫入磁盤。
使用寫入命令前請(qǐng)三思。
命令(輸入 m 獲取幫助):p
磁盤 /dev/sda:26.8 GB, 26843545600 字節(jié),52428800 個(gè)扇區(qū)
Units = 扇區(qū) of 1 * 512 = 512 bytes
扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié)
I/O 大小(最小/最佳):512 字節(jié) / 512 字節(jié)
磁盤標(biāo)簽類型:dos
磁盤標(biāo)識(shí)符:0x000013d6
設(shè)備 Boot Start End Blocks Id System
/dev/sda1 * 2048 2099199 1048576 83 Linux
/dev/sda2 2099200 20971519 9436160 8e Linux LVM
命令(輸入 m 獲取幫助):n
Partition type:
p primary (2 primary, 0 extended, 2 free)
e extended
Select (default p): p
分區(qū)號(hào) (3,4,默認(rèn) 3):3
起始 扇區(qū) (20971520-52428799,默認(rèn)為 20971520):
將使用默認(rèn)值 20971520
Last 扇區(qū), +扇區(qū) or +size{K,M,G} (20971520-52428799,默認(rèn)為 52428799):
將使用默認(rèn)值 52428799
分區(qū) 3 已設(shè)置為 Linux 類型,大小設(shè)為 15 GiB
命令(輸入 m 獲取幫助):t
分區(qū)號(hào) (1-3,默認(rèn) 3):3
Hex 代碼(輸入 L 列出所有代碼):8e
已將分區(qū)“Linux”的類型更改為“Linux LVM”
命令(輸入 m 獲取幫助):w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: 設(shè)備或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
正在同步磁盤。
shutdown -r now
mkfs.ext3 /dev/sda3
(數(shù)字3由第6步情況決定)[root@client ~]# mkfs.ext3 /dev/sda3
mke2fs 1.42.9 (28-Dec-2013)
文件系統(tǒng)標(biāo)簽=
OS type: Linux
塊大小=4096 (log=2)
分塊大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
983040 inodes, 3932160 blocks
196608 blocks (5.00%) reserved for the super user
第一個(gè)數(shù)據(jù)塊=0
Maximum filesystem blocks=4026531840
120 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, 2654208
Allocating group tables: 完成
正在寫入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成
添加新LVM到已有的LVM組,實(shí)現(xiàn)擴(kuò)容:
lvm
lvm> pvcreate /dev/sda3
lvm>vgextend centos /dev/sda3
lvm>lvextend -L +14.9G /dev/mapper/centos-root
//注意14.9為實(shí)際新增的容量,根據(jù)前面添加的空間設(shè)定
lvm>pvdisplay
lvm>quit
文件系統(tǒng)擴(kuò)容:
xfs_growfs /dev/mapper/centos-root
檢查:
df -h
顯示如下:
文件系統(tǒng) 容量 已用 可用 已用% 掛載點(diǎn)
devtmpfs 470M 0 470M 0% /dev
tmpfs 487M 0 487M 0% /dev/shm
tmpfs 487M 8.6M 478M 2% /run
tmpfs 487M 0 487M 0% /sys/fs/cgroup
/dev/mapper/centos-root 23G 7.6G 16G 33% /
/dev/sda1 1014M 171M 844M 17% /boot
tmpfs 98M 4.0K 98M 1% /run/user/42
tmpfs 98M 28K 98M 1% /run/user/0
/dev/sr0 4.4G 4.4G 0 100% /run/media/root/CentOS 7 x86_64
VMware安裝虛擬機(jī)后,磁盤空間不足,需要進(jìn)行擴(kuò)展。
系統(tǒng)版本:Centos 7
可用空間:
選擇左側(cè)【硬盤】,右側(cè)點(diǎn)擊【擴(kuò)展】
輸入擴(kuò)展后的硬盤大?。ǚ窃隽?,而是增加后的總量)
這里以從10GB增加15GB,到25GB為例
fdisk /dev/sda
p
(查看已有分區(qū),用于確定新增分區(qū)號(hào))n
p
3
(分區(qū)號(hào),由已有最大分區(qū)號(hào)+1得到)回車
(默認(rèn)起始扇區(qū))回車
(默認(rèn)結(jié)束扇區(qū))t
(修改分區(qū)類型)3
8e
(分區(qū)類型,Linux LVM partition)w
(將改動(dòng)寫入分區(qū))[root@client ~]# fdisk /dev/sda
歡迎使用 fdisk (util-linux 2.23.2)。
更改將停留在內(nèi)存中,直到您決定將更改寫入磁盤。
使用寫入命令前請(qǐng)三思。
命令(輸入 m 獲取幫助):p
磁盤 /dev/sda:26.8 GB, 26843545600 字節(jié),52428800 個(gè)扇區(qū)
Units = 扇區(qū) of 1 * 512 = 512 bytes
扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié)
I/O 大小(最小/最佳):512 字節(jié) / 512 字節(jié)
磁盤標(biāo)簽類型:dos
磁盤標(biāo)識(shí)符:0x000013d6
設(shè)備 Boot Start End Blocks Id System
/dev/sda1 * 2048 2099199 1048576 83 Linux
/dev/sda2 2099200 20971519 9436160 8e Linux LVM
命令(輸入 m 獲取幫助):n
Partition type:
p primary (2 primary, 0 extended, 2 free)
e extended
Select (default p): p
分區(qū)號(hào) (3,4,默認(rèn) 3):3
起始 扇區(qū) (20971520-52428799,默認(rèn)為 20971520):
將使用默認(rèn)值 20971520
Last 扇區(qū), +扇區(qū) or +size{K,M,G} (20971520-52428799,默認(rèn)為 52428799):
將使用默認(rèn)值 52428799
分區(qū) 3 已設(shè)置為 Linux 類型,大小設(shè)為 15 GiB
命令(輸入 m 獲取幫助):t
分區(qū)號(hào) (1-3,默認(rèn) 3):3
Hex 代碼(輸入 L 列出所有代碼):8e
已將分區(qū)“Linux”的類型更改為“Linux LVM”
命令(輸入 m 獲取幫助):w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: 設(shè)備或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
正在同步磁盤。
shutdown -r now
mkfs.ext3 /dev/sda3
(數(shù)字3由第6步情況決定)[root@client ~]# mkfs.ext3 /dev/sda3
mke2fs 1.42.9 (28-Dec-2013)
文件系統(tǒng)標(biāo)簽=
OS type: Linux
塊大小=4096 (log=2)
分塊大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
983040 inodes, 3932160 blocks
196608 blocks (5.00%) reserved for the super user
第一個(gè)數(shù)據(jù)塊=0
Maximum filesystem blocks=4026531840
120 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, 2654208
Allocating group tables: 完成
正在寫入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成
添加新LVM到已有的LVM組,實(shí)現(xiàn)擴(kuò)容:
lvm
lvm> pvcreate /dev/sda3
lvm>vgextend centos /dev/sda3
lvm>lvextend -L +14.9G /dev/mapper/centos-root
//注意14.9為實(shí)際新增的容量,根據(jù)前面添加的空間設(shè)定
lvm>pvdisplay
lvm>quit
文件系統(tǒng)擴(kuò)容:
xfs_growfs /dev/mapper/centos-root
檢查:
df -h
顯示如下:
文件系統(tǒng) 容量 已用 可用 已用% 掛載點(diǎn)
devtmpfs 470M 0 470M 0% /dev
tmpfs 487M 0 487M 0% /dev/shm
tmpfs 487M 8.6M 478M 2% /run
tmpfs 487M 0 487M 0% /sys/fs/cgroup
/dev/mapper/centos-root 23G 7.6G 16G 33% /
/dev/sda1 1014M 171M 844M 17% /boot
tmpfs 98M 4.0K 98M 1% /run/user/42
tmpfs 98M 28K 98M 1% /run/user/0
/dev/sr0 4.4G 4.4G 0 100% /run/media/root/CentOS 7 x86_64
聯(lián)系客服