Tagged Questions
2
votes
0answers
39 views
Problem with encrypting /var/www and ikiwiki
I tried to encrypt /var/www with encfs. To do so I did following:
mv /var/www /var/www.bak
mkdir /var/www_enc
encfs --public /var/www_enc /var/www
cp -a /var/www.bak/* /var/www/
/etc/init.d/apache2 ...
3
votes
2answers
328 views
encfs with expect access denied
If I execute script
#!/usr/bin/expect
set pass [lindex $argv 0]
spawn encfs -v {CRIPT_DIR} {MNT_DIR} -o nonempty
expect "*EncFS Password:*"
send "$pass\r"
expect eof
expect script output:
...