[Linux] - Virtualbox-CentOS动态增加分区空间方法
VirtualBox使用中,有时会因为当初分配空间不足导致出问题,可以使用如下方式增加分区空间:
一、VirtualBox设置:
1)到VirtualBox的安装目录下找到这个命令exe文件:vboxmanage.exe
2)运行命令:vboxmanage modifyhd CentOS_SP.vdi --resize 100000
意思是重设虚拟机大小为100G
如果重新挂载现有的虚拟机vdi,会出现UUID已存在的问题,解决办法是使用命令:
VBoxManage internalcommands sethduuid "F:\VM\CentOS_SP.vdi"
二、CentOS设置:
1)使用fdisk加入空间:
fdisk /dev/sda n p 3 t w
n:新增分区,p:主分区,3:可以直接回车,t:也是直接回车,w:写入
2)继续命令:
# partprobe # pvcreate /dev/sda3 # vgextend centos /dev/sda3 # lvextend -L +100G /dev/centos/root # xfs_growfs /dev/centos/root
3)查看完成后的分区空间:
# df -hl
参考文章:
http://serverfault.com/questions/717693/centos-cant-grow-partition