mxmlnkn / ratarmount

Access large archives as a filesystem efficiently, e.g., TAR, RAR, ZIP, GZ, BZ2, XZ, ZSTD archives
MIT License
915 stars 39 forks source link

Mount suceeded but nothing is shown #129

Closed glyh closed 7 months ago

glyh commented 8 months ago

I tried to mount rar and zip in home, and I got a fusermount: mounting over filesystem type 0xca451a4e is forbidden error. Then I move the files to /tmp and mount them, I succeeded this time but when I look into the folder nothing is inside.

mxmlnkn commented 8 months ago

I have no idea about the "forbidden" error message. It must be related to how FUSE is configured on your system and on what file system you are trying to mount it. Mounting inside /tmp seems like a good workaround.

If nothing is shown inside the folder, then there might have been an error. Please try running ratarmount with ratarmount -f -d 3 to show debugging output.

(If there are no error messages, and I doubt it, then it might be a problem with FUSE. To diagnose that, you could try to use ratarmount as a library:

python3 -c 'import ratarmountcore as rmc; a = rmc.open( "archive.zip" ); print(a.listDir("/"))'