Re: NTFS-3G: Read-Write Open Source Linux NTFS FUSE Driver
Posted: Fri Oct 10, 2008 3:58 pm
Sand almost all Fuse file systems like ZFS in fuse are Posix and Unix device struct interface related. So are nothing more than paper weights under Windows versions of fuse even if the fuse api works perfectly.
I guess you want to know why the posix fuse filesystems that work cross platform on Linux BSD Mac... Don't work on windows. All those platforms are modern posix platforms with even related ways of interfacing with devices. Device names not the same but the functions you use to interface with a block device are exactly the same threw the file system layour. Here is the major problem windows uses a completely different way of interfacing with devices fuse did not have to worry about this problem since it was designed for posix OS's. Before you foolishly point to services for Unix little word of warning that is 1991 standard posix current Posix OS's are running on 2003 or latter version. Yes its 12 years out of date and is more than enough to cause stuff to fail badly.
Even so if you managed to wrap from posix device interfaces to windows device interfaces and back this will be a high speed hit. Simply put fuse does not provide a usable short cut. There is no magic short cut threw fuse.
I guess you want to know why the posix fuse filesystems that work cross platform on Linux BSD Mac... Don't work on windows. All those platforms are modern posix platforms with even related ways of interfacing with devices. Device names not the same but the functions you use to interface with a block device are exactly the same threw the file system layour. Here is the major problem windows uses a completely different way of interfacing with devices fuse did not have to worry about this problem since it was designed for posix OS's. Before you foolishly point to services for Unix little word of warning that is 1991 standard posix current Posix OS's are running on 2003 or latter version. Yes its 12 years out of date and is more than enough to cause stuff to fail badly.
Even so if you managed to wrap from posix device interfaces to windows device interfaces and back this will be a high speed hit. Simply put fuse does not provide a usable short cut. There is no magic short cut threw fuse.