Is there a way to automatically install packages and their dependencies, like with apt-get -y in Debian, without being prompted each and every time?
Installing Webmin, NGiNX and nano in 1 step, all their dependancies automatically:
sudo apt-get -y install webmin nginx nano On FreeBSD 10, (I'm still getting used to Ports) I would type:
pkg install webmin nginx nano If I append the -y switch, it just fails. I looked at the documentation at meBSD and FreeBSD Handbook and there doesn't seem to be an option/switch to use. Any ideas anyone?
pkginstalls already compiled binaries. Is that correct?pkg install -y webmin nginx nano?pkg -y install webmin nginx nano.... I can't believe I was unable to think outside the box just a little! Is that somewhere in the documentation and I missed it?