Ubuntu – Can I combine free space unmounted partition ntfs to ext4 linux partition

dual-bootmountpartitioning

My drive partitions are:

sudo parted --list
Model: ATA ST2000LM003 HN-M (scsi)
Disk /dev/sda: 2000GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type      File system  Flags
 3      1049kB  215GB   215GB   primary   ext4
 1      215GB   1834GB  1619GB  extended               lba
 7      215GB   430GB   215GB   logical   ext4
 5      430GB   1215GB  785GB   logical   ntfs
 6      1215GB  1834GB  619GB   logical   ntfs
 2      1834GB  2000GB  167GB   primary   ntfs         boot

GUI partition map of same drive made with gnome-disks

  1. the partition 3 is used for /home/ folder of my Linux.
  2. The Partition 1 is contained three partition which it have:

    • Partition 7 as Mounted at Filesystem Root Partition 5 and 6 as
      Mounted at /media/root/ACAC8B5FAC8B23461 and Mounted at /media/root/EAD8A297D8A262151 which have my important personal
      data like projects and …
  3. Portion 2 is NTFS — Not Mounted and i don't use it and don't know why
    configured with this big size?

As you can see, I have 167 GB free in Partition 2 (/dev/sda2) and it is not mounted (NTFS — Not Mounted). Can I combine it by my Linux portion /dev/sda3 and what consideration must be taken because main Linux partition is Ext4 type and free partition is NTFS?

Also this is one part of installing Ubuntu instead of Linux Mint LMDE 3 Cindy.

Best Answer

Moving the edges of partitions can have potentially destructive consequences for data stored on that partition. Have viable backups.

It is easier to move the ending edge of a partition outward than it is to move the beginning edge of the partition, so it would be easier if you were attempting to expand a lower number partition into space formerly held by a higher number partition (given the usual order of partition creation).

Finally, when you expand a partition you expand that partition into unformatted empty space. Thus you would be required to remove the NTFS partition to make that space available for expansion by the EXT partition.

These are likely the most important considerations. With this being said and granting the caveats outlined above, the answer to your question is yes you can expand one partition to take-up the space formerly held by a neighboring partition. (Though given all of this you may discover a different course will prove better for your specific situation.)

Related Question