-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
98 lines (67 loc) · 2.23 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Fuse-ext2 is a EXT2 Filesystem support for FUSE.
This software is based on both ntfs-3g, and ext2fuse packages.
Dependencies
------------
Fuse-ext2 requires at least Fuse version 2.6.0 for linux, for max os latest
version of macfuse would be fine (2.0.3).
- Linux:
Fuse from http://fuse.sourceforge.net/
- Mac OS:
Mac Fuse from http://code.google.com/p/macfuse/
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
Generating package:
$ make package
Usage
-----
Usage: fuse-ext2 <device|image_file> <mount_point> [-o option[,...]]
Options: ro, force, allow_others
Please see details in the manual.
Example: fuse-ext2 /dev/sda1 /mnt/sda1
Advanced Example:
Create an image: dd if=/dev/zero of=ext2.img bs=1024 count=102400
Format it with ext2: mke2fs ext2.img
Mount it: ./fuseext2 ext2.img mountpoint -o rw+
Get debug info: ./fuseext2 ext2.img mountpoint -o rw+,debug
Bugs
----
there are no known bugs for read-only mode, read only mode should be ok for every one.
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
Labels
------
please do not use comma ',' in partition labels.
wrong: e2label /dev/disk0s3 "linux,ext3"
correct: e2label /dev/disk0s3 "linux-ext3"
Contact
-------
Alper Akcan <[email protected]>