i'm loosing my mind through documentations, guides and so to understand/solve my problem about actually my VPS filesystem.
I bought a vps from edis with 100GB space and a centos7 installation on it installed from their automatisms.
Actually from a df -h command i can see this structure
Filesystem Size Used Avail Use% Mounted on
devtmpfs 3.9G 0 3.9G 0% /dev
tmpfs 3.9G 0 3.9G 0% /dev/shm
tmpfs 3.9G 65M 3.8G 2% /run
tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
/dev/vda1 4.3G 3.2G 949M 78% /
tmpfs 783M 0 783M 0% /run/user/0
so i have only 4.3GB that are usable actually, but seeing output fdisk -l command i have:
Disk /dev/vda: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000caf91
Device Boot Start End Blocks Id System
/dev/vda1 * 2048 9422847 4710400 83 Linux
/dev/vda2 9422848 10289151 433152 82 Linux swap / Solaris
There is unpartitioned space on /dev/vda that could be added to the volume that is mounted on / ( /dev/vda1 ) . So what i need to solve?
I think that i should..
- create a new partition on /dev/vda with fdisk ( for example )
- make the new partition into a volume in the system as /dev/vda3
- and then...?
thanks for any help !