Here are the steps to join several partitions together to form a single larger one on a Linux using mhddfs:
- Install mhddfs:
sudo apt-get install mhddfs
- Create a directory to mount the combined partitions:
sudo mkdir /mnt/combined
- Mount the partitions using mhddfs:
sudo mhddfs /path/to/partition1,/path/to/partition2 /mnt/combined
Note: Replace /path/to/partition1
and /path/to/partition2
with the actual paths to your partitions.
- Verify the combined partition by checking its size:
df -h /mnt/combined
- Add the following line to the
/etc/fstab
file to mount the combined partition automatically at boot:/path/to/partition1,/path/to/partition2 /mnt/combined fuse rw,user,allow_other 0 0
Note: Make sure to replace /path/to/partition1
and /path/to/partition2
with the actual paths to your partitions.
(Diazepam)