You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the method of creating an encfs config is to manually mount, and then run through the configuration steps... move the config out, and delete the mounts you made.
This is a bit messy and we could wrap it in a simple script
Something along the lines of:
mkdir /tmp/${RANDOM}-unencrypted
mkdir /tmp/${RANDOM}-encrypted
encfs --reverse /tmp/${RANDOM}-unencrypted /tmp/${RANDOM}-encrypted
# Fill in form for new config
fusermount -u /tmp/${RANDOM}-encrypted
cp /tmp/${RANDOM}-unencrypted/.encfs6.xml ${NEWCONFIGTARGET}
rm -rf /tmp/${RANDOM}-unencrypted /tmp/${RANDOM}-encrypted
The text was updated successfully, but these errors were encountered:
At the moment, the method of creating an encfs config is to manually mount, and then run through the configuration steps... move the config out, and delete the mounts you made.
This is a bit messy and we could wrap it in a simple script
Something along the lines of:
The text was updated successfully, but these errors were encountered: