|
fuse-ext2 software is based on both ntfs-3g, and ext2fuse packages. all operating system stuff
is handled by fuse (linux) / macfuse (mac os x), please be sure that you have valid fuse package
before using fuse-ext2.
Dependencies
Fuse-ext2 requires at least Fuse version 2.6.0
Build
Linux:
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
|
|
You can use checkinstall or some other equivalent tool to generate install
package for your distribution.
Mac OS:
Standart build:
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
|
|
Universal build:
$ ./autogen.sh
$ CFLAGS="-arch i386 -arch ppc" ../configure --disable-dependency-tracking
$ make
$ sudo make install
|
|
Tiger Universal build:
$ export MACOSX_DEPLOYMENT_TARGET="10.4"
$ export OSX_SDK="/Developer/SDKs/MacOSX10.4u.sdk"
$ export OSX_CFLAGS="-isysroot $OSX_SDK -arch ppc -arch i386"
$ export OSX_LDFLAGS="-Wl,-syslibroot,$OSX_SDK -arch ppc -arch i386"
$ ./autogen.sh
$ CFLAGS="$OSX_CFLAGS" CXXFLAGS="$OSX_CFLAGS" LDFLAGS="$OSX_LDFLAGS" ./configure --disable-dependency-tracking
$ make
$ sudo make install
|
|
Usage
$ fuse-ext2 <device|image> <mountpoint> [-o option[,...]]
options:
ro : mount read only
force: mount read/write
allow_others: allow other users to access
debug: noisy debug output
$ mount -t fuse-ext2 /dev/sda2 /mnt/sda2
|
|
Bugs
There are no known bugs for read-only mode, read only mode should be ok for every one.
Auto mounting is somewhat slow, but it seems to be ok for now.
Altough, write support is available (and it is pretty stable) please do not mount your
filesystems with write support unless you do not have anything to loose.
please send output the output of below command while reporting bugs.
$ /usr/local/bin/fuse-ext2 -v /dev/path /mnt/point -o debug
Downloadable files, and svn repository (svn co https://svn.sourceforge.net/svnroot/fuse-ext2/trunk fuse-ext2) are hosted at .
|