Page 1 of 1

Ubuntu/Debian cmdline install - Skip the prompt?

Posted: Mon Feb 22, 2021 11:27 am
by nukepro
Hi all, I am wondering if it is possible to perform a command-line install in Ubuntu/Debian whereby I can skip the initial setup prompt where it asks for username, team, passkey etc. Is there any flag I can add to the dpkg install command to skip? I already have my own set-up config.xml ready for use.

Thanks!

Re: Ubuntu/Debian cmdline install - Skip the prompt?

Posted: Mon Feb 22, 2021 8:41 pm
by calxalot
Maybe

Code: Select all

DEBIAN_FRONTEND=noninteractive dpkg --install --force-depends fah.deb
This is from https://github.com/FoldingAtHome/contai ... Dockerfile

Re: Ubuntu/Debian cmdline install - Skip the prompt?

Posted: Tue Feb 23, 2021 10:16 am
by nukepro
calxalot wrote:Maybe

Code: Select all

DEBIAN_FRONTEND=noninteractive dpkg --install --force-depends fah.deb
This is from https://github.com/FoldingAtHome/contai ... Dockerfile
Thanks! That did the trick.