If you want users other than the owner to access a fuse mount / encrypted directory you
need to specify the “allow_other” fuse option!
encfs /home/dummy/.private /home/dummy/private – -o allow_other
Unmount with:
fusermount -u /home/dummy/private
Jan 24
Dec 27
This is a handy utility for the graphical analysis of the Linux SAR Output.
Dec 05
Let’s say you have cloned a partition or volume group and you need to extract some files from the image. This worked for me:
- Prepare a large disk in Linux
- Download and install Partclone from http://sourceforge.net/projects/partclone/
- Find out the compression algorithm of your image with the file command
- Combine files, uncompress it (in this case with gzip) and create the image file
- Mount the uncompressed image
file VolGroup00-LogVol00.ext3-pctl-img.gz.aa
cat VolGroup00-LogVol00.ext3-pctl-img.gz.* | gzip -d -c | partclone.restore -C -s – -O /dir-to-new-image/image-name.img
mount -o loop /dir-to-new-image/image-name.img /mnt/name
