Open ouboub opened 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
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.
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
But nothing happend, no error message but also no mount.
What do I miss
Uwe Brauer