最近给Mini CentOS 装 GNome 桌面,空间不够用了,折腾半天GNome还是登陆不了郁闷,但是解决了扩容问题
1.虚拟机硬盘扩容
从开始——程序——附件 中打开命令提示符窗口,并切换到Virtualbox程序所在位置,可运行命令:
cd “C:\Program Files\Oracle\VirtualBox”
VBoxManage modifyhd “C:\Users\martin\VirtualBox VMs\linux1-1.vhd” –-resize 81920
2.用新增的空间新建一个分区
a.[root@localhost ~]# fdisk /dev/sda
欢迎使用 fdisk (util-linux 2.23.2)。
更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。
命令(输入 m 获取帮助):m
命令操作
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
命令(输入 m 获取帮助):n
Partition type:
p primary (3 primary, 0 extended, 1 free)
e extended
Select (default e): p
已选择分区 3
No free sectors available
命令(输入 m 获取帮助):
xfs_growfs /dev/mapper/centos-root
最后按w 写入保存&退出
b.用以下命令可以看到 多了一个/dev/sda3的分区
[root@localhost ~]# fdisk -l
磁盘 /dev/sda:17.2 GB, 17179869184 字节,33554432 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x0004ecf5
设备 Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 16777215 7875584 8e Linux LVM
/dev/sda3 16777216 33554431 8388608 83 Linux
c . reboot 重启,然后格式化/dev/sda3
mkfs.ext3 /dev/sda3
3.添加PV(physical volumn物理) ,把PV加到VG(volumn group) ,刷新下
pvdisplay 查看pv
vgdisplay 查看vg
创建物理卷
[root@Mysql01-213-66 ~]# pvcreate /dev/sda3
Physical volume "/dev/sda3" successfully created
使用新增物理卷扩展vg
[root@Mysql01-213-66 ~]# vgextend centos /dev/sda3
Volume group "centos" successfully extended
很多资料是说这个: resize2fs -f /dev/mapper/centos-root 但是报错,因为centOS默认文件系统是xfs的只能用,NND坑了我好久(直到看到别人的http://blog.itpub.net/24486203/viewspace-1790666)才知道要用这个:
xfs_growfs /dev/mapper/centos-root
执行完后 可以/容量已经增加了:
[root@localhost ~]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/mapper/centos-root 15G 5.6G 9.2G 38% /
devtmpfs 361M 0 361M 0% /dev
tmpfs 371M 84K 371M 1% /dev/shm
tmpfs 371M 5.4M 366M 2% /run
tmpfs 371M 0 371M 0% /sys/fs/cgroup
/dev/sda1 497M 122M 375M 25% /boot
tmpfs 75M 20K 75M 1% /run/user/42
tmpfs 75M 0 75M 0% /run/user/0