I need to read and write ext4 disks on my macbookpro Sonoma14.7. I have successfully compiled and installed fuse-ext2 by the script.sh, and I have mounted successfully ext4 disks by sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,default_permissions to read and write last week.
But it fails to work after rebooting this week:
sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw,allow_other works but there is no writing support
sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,default_permissions doesn't work, nothing happend, no error message but also no mount.
sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,uid=501,gid=20 from https://github.com/alperakcan/fuse-ext2/issues/146#issuecomment-2308817570 also doesn't work for me
sudo use-ext2 -v dev/disk3s1 /Volumes/ext4disk3 -o debug returns nothing
Any solutions?
I need to read and write ext4 disks on my macbookpro Sonoma14.7. I have successfully compiled and installed fuse-ext2 by the script.sh, and I have mounted successfully ext4 disks by
sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,default_permissionsto read and write last week.But it fails to work after rebooting this week:
sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw,allow_otherworks but there is no writing supportsudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,default_permissionsdoesn't work, nothing happend, no error message but also no mount.sudo fuse-ext2 /dev/disk3s1 /Volumes/ext4disk3 -o rw+,allow_other,uid=501,gid=20from https://github.com/alperakcan/fuse-ext2/issues/146#issuecomment-2308817570 also doesn't work for mesudo use-ext2 -v dev/disk3s1 /Volumes/ext4disk3 -o debugreturns nothingAny solutions?