wtorek, 18 grudnia 2012

How to mount ZIP file under Linux

No Archive Mounter, just plain command line - useful for automation.
Basically, here is a nice description.
But I needed just a read-only access. It was for having a large ZIP file with Oracle docs locally and being able to browse it. So I did it in such a way:
sudo apt-get install fuse-zip
mkdir -p ~/docs/Ora11.2/zip
cp ~/Downloads/E11882_01.zip ~/docs/Ora11.2
cd ~/docs/Ora11.2
fuse-zip -r E11882_01.zip zip/

(-r stands for ro mounting)