Requirements:
The server is assumed to be the machine interfacing with the original physical drive.
## Server will need both
apt install glusterfs-server glusterfs-client
## Client
apt install glusterfs-client
#
# $volume_name the common label name of the drive
# $server_address the VPN interface
# $share_directory the directory to share over the network
#
gluster volume create $volume_name $server_address:$share_directory force
gluster volume start $volume_name
gluster volume status $volume_name
#
##
gluster volume create dropbox 10.8.0.1:/mnt/sda1 force
gluster volume start dropbox
gluster volume status dropbox
mount -t glusterfs $server_address:$volume_name $share_directory
mount -t glusterfs 10.8.0.1:dropbox /Volumes/my-dropbox
Contact me at code@mashio.net