0

/(root) --> kubuntu installed(20gb)

/Home-----> 200gb where I store my anime and study stuff

I want to make another 100gb partition(to store something pornsel sorry personal) from partition in which /home is mounted.

Note-I have only one HDD of 220gb so I used 20gb for /root (OS) and 200gb for /home

Without losing data in home partition it contains my study stuff

2 Answers2

0

Perhaps KDE Partition Manager would be the answer to your question. It allows you to resize without losing data and create new partitions.

0

You can create a disk image in your /home partition, Gnome Disks may help you:

  1. Open Gnome Disks, choose "New Disk Image" from the left-hand side option list. New Disk Image
  2. Set the size, name, and the father directory of the disk image, then choose "Attach Disk Image". Attach Disk Image
  3. Choose "Format Partition". Format Partition
  4. Choose the partition name, choose ext4 as the type, then click "Next". Disk partition settings
  5. You will see something like this. Remember the "Backing File" value. Backing File
  6. Run sudo mkdir /path/to/mountpoint to create your new disk partition's mountpoint.
  7. Follow this question's answer to mount your disk image on every boot automaticity.

These operations won't create a new physical partition, but they will solve your case.

1F616EMO
  • 625