I don't know if my question makes any sense. I have never tried this sort of thing before. What I would like to do is create one logical volume spanning multiple physical partitions like /dev/sdb1, /dev/sdb2, etc on a Linux machine and mount this logical volume on a single mount point on another machine running Ubuntu. Is that possible? If yes, how do I do it?
|
|
|||
|
|
|
You've asked at least two questions here:
The simplest way of combining multiple partitions is to simply repartition your drive. If Using LVM, you combine multiple physical devices into a volume group, and then you allocate logical volumes from the volume group. This is a way of abstracting your storage so that the size of your filesystems is no longer related to the size of any particular block device or disk partition. LVM is probably the most flexible solution for this sort of thing. More documentation can be found here, and there are lots of tutorials out there. The software RAID subsystem will let you create various flavors of RAID volume out of existing physical devices. For what you're describing you would probably create a simple concatenated volume. Some documentation is here. Once you've created your device and created a local filesystem, you can use NFS or CIFS or some other network protocol to make it available to other systems. NFS is probably easiest for Linux systems. Start here. |
|||
|
|
|
Just keywords:
|
|||
|
|