alperakcan / fuse-ext2

Fuse-ext2 is a multi OS FUSE module to mount ext2, ext3 and ext4 file system devices and/or images with read write support.
GNU General Public License v2.0
803 stars 130 forks source link

Big Sur: MacFuse installed, compilation and installation of fuse-ext2 worked but disk cannot be mounted Hi #146

Open ouboub opened 2 months ago

ouboub commented 2 months ago

I am on MacOS big sur, and I have MacFuse installed. I copied the script.sh to my Mac, run it and compilation and installation seems to have worked.

However I just plugged in a USB disk, with a ext4 and ext2 partion

Created an empty directory Ext-Linux-Ext in my home directory and run

sudo  fuse-ext2 /dev/disk2s2 /Users/oub/ExtLinux

But nothing happend, no error message but also no mount.

What do I miss

Uwe Brauer

ouboub commented 2 months ago

I have to add that the test

cd
dd if=/dev/zero of=/tmp/test-fs.ext4 bs=1024 count=102400  
/opt/gnu/sbin/mkfs.ext4 /tmp/test-fs.ext4
mkdir -p ~/mnt/fuse-ext2.test-fs.ext4
fuse-ext2 /tmp/test-fs.ext4 ~/mnt/fuse-ext2.test-fs.ext4 -o rw+,allow_other,uid=501,gid=20

worked without a problem.

but

/usr/local/bin/fuse-ext2 -v /dev/path /mnt/point -o debug

did not return anything

ouboub commented 2 months ago

Aha, I think I found the solution:

sudo /usr/local/bin/fuse-ext2 /dev/disk2s1 ~/mnt/Ext4 -o rw+,allow_other,uid=501,gid=20

in any case, some comments would be welcome, so I don't close the issue.