Which file system for FreeBSD <--> Linux data exchange?

I'm setting up my disk layout and I'm wondering which file system I should use for a data exchange partition for Linux and FreeBSD. It's because I will compile all programs from source on both and want a common partition for collecting all the source code. :e

So it should be read-writable both ways.

Any recommandations?
 
Ok, you see I'm not adept at this.
So, what are the advantages/disadvantages of your answers?
Why should I choose NFS, why ZFS, or why ext2?
 
NFS - if you have 2+ PC's and want to share fs
ext2 - because it's supported by bough systems
zfs - because it's hot, and rocks

it's up to you to decide, you could as well use msdosfs, ntfs, etc

probably reading wikipedia, will help to decide
 
Why do you think that ZFS rocks? :e
And, isn't ext3 with Inode size 128 supported by both of them as well?
 
And, I also can't get information about the different writing speeds with FreeBSD. Of course I want to have a file system on which both Linux and FreeBSD have a good writing speed.
 
ext2 ; ZFS is barely usable in Linux the port lacks certain mechanisms and is more an alpha hack than an reliable option.
 
Blackbird said:
Why do you think that ZFS rocks? :e
And, isn't ext3 with Inode size 128 supported by both of them as well?
AFAIK, ext3 is just a journaled version of ext2.
It is not obvious, though, whether FreeBSD's ext2fs()(5) driver supports journaling on it, so in the worst case you may encounter FS inconsistencies when mounting from linux. (BTW, a bug/or feature? - the BBcode [man]ext2fs[/man] doesn't seem to point to man ext2fs...)
 
I've been happily using an ext2fs partition for sharing data between FreeBSD, Linux and Windows for quite some time. Just my two cents.
 
Also in cases where one does not
particularly care about r/w speed, nor
large files, a small fat32 filesystem
can be convenient (possibly on a
thumbdrive too)
 
Hi all

Personnally i do this.
One external disk with UFS on it , Linux can read it and even write (i read it somewhere)
One other external disk with same capacity but formatted as NTFS and here of course xBSD,Linux and window can read and write on it (thanks ntfs-3g)

Of cours , you can use home NAS also :)
 
Back
Top