How To Join Several Partition Together To Form a Single Larger One On a Linux Using mhddfs

How To Join Several Partition Together To Form a Single Larger One On a Linux Using mhddfs

To join several partitions together to form a single larger partition on a Linux system using mhddfs, you will need to follow these steps:

  1. Install mhddfs. mhddfs is a utility that allows you to merge multiple filesystems into a single virtual filesystem. On most distributions, you can install mhddfs using the package manager. For example, on a Debian-based distribution, you can use the following command:
apt-get install mhddfs
Source:ww‮w‬.lautturi.com
  1. Create a configuration file for mhddfs. This file should specify the locations of the partitions that you want to merge, as well as any additional options. For example, a configuration file might look like this:
/mnt/partition1
/mnt/partition2
/mnt/partition3
-o allow_other

This configuration file specifies that mhddfs should merge the /mnt/partition1, /mnt/partition2, and /mnt/partition3 partitions into a single virtual filesystem. The -o allow_other option allows other users to access the virtual filesystem.

  1. Mount the virtual filesystem. Use the mount command to mount the virtual filesystem. The basic syntax for this is:
mount -t mhddfs -o <options> <config_file> <mount_point>

For example:

mount -t mhddfs -o allow_other /etc/m
Created Time:2017-10-28 21:38:53  Author:lautturi