很多书上都写到了如何在mac里面加载NTFS格式的硬盘, 但是很少提到如何在mac里面加载ext3格式. 目前有两种方式.
1. 下载Mac OS X Ext2 Filesystem, 刚方法似乎在雪豹中无法使用, 或者在不久的将来就能被解决了, 这样就可以用linux里面的mount命令来挂载ext2格式的硬盘了, 注意ext3格式也是使用这个命令.
1. cd ~
2. mkdir linux
3. sudo mount -t ext2 /dev/disk1s11 ~/linux
2. 如果安装了MacFuse, 再安装 fuse-ext2插件就可以了, 不过这个在雪豹64位模式下无法使用, 只能在32模式下使用, 自动加载的linux卷宗是只读模式的, 如果需要可以模式那么需要推出该分区,然后通过命令行来挂载.
$ sudo /usr/local/bin/fuse-ext2 -v /dev/path /mnt/point -o debug
说明:
$ 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





