Silent install
Opened this issue · 2 comments
pompushko commented
Hello
I have a few questions:
- Is it possible to install encfs on Debian\Ubuntu without warning with user prompt?
- Is it possible to create directories without prompt? Now I use such commands for that:
mkdir -p /home/pi/.encfs/
mkdir -p /home/pi/encfs/
echo myP4ssw0rd | encfs --standard -S /home/pi/.encfs/ /home/pi/encfs/
Because I'm trying to make unattended install of encfs
Thank you.
pompushko commented
Nobody knows :( ?
Keisial commented
In order to mark the debconf warning as seen you can do:
printf 'encfs\tencfs/security-information\terror\t\n' | debconf-set-selections
or, simply, install with the noninteractive
frontend:
DEBIAN_FRONTEND=noninteractive apt-get install -y encfs
Creating the folders you are going to use seems the right approach.