Does anyone know why this command isn't working for me,
sudo dpkg -install webmin_1.620_all.deb
it says,
dpkg: error: unknown option - n
I am following directions on this website: http://refugeeks.com/owncloud-setup-guide/
I am running ubuntu server 12.04 32bit with ssh and lamp installed.
dpkg
has no-install
, the correct command isdpkg -i
ordpkg --install
. The error means that the command is fine up to the-i
in-install
, but the next lettern
is not a valid option. Usedpkg --help
to get a list of commands you can use withdpkg
.