...
Note |
---|
Note: the squashfs archive can only be mounted on folder that reside in your home directory or in /tmp on a given node. Also be aware that squashfuse will only mount the archive on the node the command is executed from and would only be accessible on that node. An archive can be mounted on multiple nodes at the same time on the same folder in your user home directory. |
Code Block |
---|
mkdir ~/tmp/database squashfuse_ll -otimeout=43200 ~/koa_scratch/database.sqfs ~/tmp/database |
In the above example, the database.sfs will be unmounted from ~/tmp/database after 43,200 seconds (12 hrs) of inactivity. Also
...
If you know you no longer need the squashfs mounted on a given node, it can be easily unmounted by a user by using the umount command, but it may be optional in the case a sensible timeout is set with the squashfuse_ll command
Code Block |
---|
umount ~/tmp/database |
...
https://www.mankier.com/1/mksquashfs
...