How do I go about sharing an external HDD between GNU/Linux, FreeBSD and OpenBSD? - BSD

Users browsing this thread: 2 Guest(s)
josuah
Long time nixers
An all in one solution could be a NAS adapter: http://addonics.com/products/nas40esu.php

But I hate when solutions involve money.

It is a bit sad that not so many filesystems have an
explicit support for both Linux and BSD.

ZFS has great features and a lot of attention,
but its license is not compatible with Linux's
so it is not bundled with it. You have to install
it first.

I carry a FAT fulesystem between Linux and FreeBSD for SSH keys without issue so far.
Code:
mount            /dev/sdb /mnt/ssh  # on Linux
mount -t msdisfs /dev/da0 /mnt/ssh  # on FreeBSD


Messages In This Thread
RE: How do I go about sharing an external HDD between GNU/Linux, FreeBSD and OpenBSD? - by josuah - 17-08-2017, 04:03 AM