Problem scenario
You have no new physical disks, but you want to partition an existing Linux system. What do you do to benefit from logical partitions on an existing Linux machine?
Solution (with important warning)
WARNING: THIS CAN MAKE YOUR LINUX MACHINE UNBOOTABLE.
DON’T DO IT UNLESS YOU KNOW WHAT YOU ARE DOING.
(The solution below was influenced by this external site.)
sudo fdisk -l
You should see something like this:
Device Start End Sectors Size Type
/dev/sdc4 2048 4095 2048 1M BIOS boot
/dev/sdc5 4096 2101247 2097152 1G Linux filesystem
/dev/sdc6 2101248 20969471 18868224 9G Linux filesystem
Run this:
sudo fdisk /dev/sdc6
Respond to the prompts: n for new.
…
Continue reading “Without Adding New Storage Capacity, How Do You Create a Partition?”