Your system is using the Logical Volume Manager to manage the disk space.
One advantage of using LVM is that, without reinstalling your system, you can do things as changing the size of logical partitions or as adding new disks.
In any case, backup your data. To resize partitions with LVM is quite easy but this is the first time you do such a thing, so be careful.
Next time you install a system using LVM, you should keep the partitions as smaller as you can. Keep as much free space as you can in the volume group. This way you can easily increase the partition when you need more space.
There are many ways you can proceed according to your installation details:
- Do you have some un-partitioned disk space on your system? If yes, you can:
- create a new lvm partition (a physical volume in LVM jargon).
- add it to your volume group vg_fedlap (using
vgextend command).
- fall back to point 2 of this list.
- Do you have some free space in your volume group
vg_fedlap?
- run
vgdisplay vg_fedlap and check for Free PE / Size. If zero, go to point 2 of this list.
- use
lvextend to extend your logical volume lv_home
- extend your file system to the new logical volume size by
resize2fs or resize_reiserfs according to your file system type.
- If you have no free space, You need to shrink your root filesystem.
- start your system by a fedora installation disk in rescue mode.
- shrink your file system to the new desidered size by
resize2fs or resize_reiserfs according to your file system type.
- use
lvreduce to reduce the lv-root size.
- reboot your system.
- now you have free space, go to point 2 of this list.