I cleaned up some space on /.
NASHOG:/usr/bin# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/md0 4185780 1687404 2288664 43% /
tmpfs 16 0 16 0% /USB
/dev/c/c 9699971712 4699942940 5000028772 49% /c
/c/backup 9699971712 4699942940 5000028772 49% /home/ftp/backup
/c/media 9699971712 4699942940 5000028772 49% /home/ftp/media
/dev/sdh1 1945752432 318645440 1627106992 17% /USB/BackupNAS
NASHOG:/usr/bin# cd /c/addons-config/VirtualBox/backup/
After that I attempted the install and got the following error.
NASHOG:/c/addons-config/VirtualBox/backup# dpkg --install webmin_1.590_all.deb
(Reading database ... 24861 files and directories currently installed.)
Unpacking webmin (from webmin_1.590_all.deb) ...
dpkg: dependency problems prevent configuration of webmin:
webmin depends on libnet-ssleay-perl; however:
Package libnet-ssleay-perl is not installed.
webmin depends on libauthen-pam-perl; however:
Package libauthen-pam-perl is not installed.
webmin depends on libio-pty-perl; however:
Package libio-pty-perl is not installed.
webmin depends on apt-show-versions; however:
Package apt-show-versions is not installed.
dpkg: error processing webmin (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
webmin
NASHOG:/c/addons-config/VirtualBox/backup#
So I ran the following to clear that up and get webmin installed.
NASHOG:/c/addons-config/VirtualBox/backup# sudo apt-get install libnet-ssleay-perl libauthen-pam-perl libio-pty-perl apt-show-versions
Reading package lists... Done
Building dependency tree... Done
You might want to run `apt-get -f install' to correct these:
The following packages have unmet dependencies:
apt-show-versions: Depends: libapt-pkg-perl but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
NASHOG:/c/addons-config/VirtualBox/backup# apt-get -f install
Reading package lists... Done
Building dependency tree... Done
Correcting dependencies... Done
The following extra packages will be installed:
apt-show-versions libapt-pkg-perl libauthen-pam-perl libio-pty-perl libnet-ssleay-perl
The following NEW packages will be installed:
apt-show-versions libapt-pkg-perl libauthen-pam-perl libio-pty-perl libnet-ssleay-perl
0 upgraded, 5 newly installed, 0 to remove and 8 not upgraded.
1 not fully installed or removed.
Need to get 371kB of archives.
After unpacking 1540kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1
http://archive.debian.org etch/main libnet-ssleay-perl 1.30-1 [192kB]
Get:2
http://archive.debian.org etch/main libauthen-pam-perl 0.16-1 [32.6kB]
Get:3
http://archive.debian.org etch/main libio-pty-perl 1:1.05-2 [43.0kB]
Get:4
http://archive.debian.org etch/main libapt-pkg-perl 0.1.20 [82.0kB]
Get:5
http://archive.debian.org etch/main apt-show-versions 0.10 [22.0kB]
Fetched 371kB in 2s (144kB/s)
Selecting previously deselected package libnet-ssleay-perl.
(Reading database ... 46895 files and directories currently installed.)
Unpacking libnet-ssleay-perl (from .../libnet-ssleay-perl_1.30-1_i386.deb) ...
Selecting previously deselected package libauthen-pam-perl.
Unpacking libauthen-pam-perl (from .../libauthen-pam-perl_0.16-1_i386.deb) ...
Selecting previously deselected package libio-pty-perl.
Unpacking libio-pty-perl (from .../libio-pty-perl_1%3a1.05-2_i386.deb) ...
Selecting previously deselected package libapt-pkg-perl.
Unpacking libapt-pkg-perl (from .../libapt-pkg-perl_0.1.20_i386.deb) ...
Selecting previously deselected package apt-show-versions.
Unpacking apt-show-versions (from .../apt-show-versions_0.10_all.deb) ...
Setting up libnet-ssleay-perl (1.30-1) ...
Setting up libauthen-pam-perl (0.16-1) ...
Setting up libio-pty-perl (1.05-2) ...
Setting up libapt-pkg-perl (0.1.20) ...
Setting up apt-show-versions (0.10) ...
** initializing cache. This may take a while **
Setting up webmin (1.590) ...
Webmin install complete. You can now login to
https://NASHOG:10000/as root with your root password, or as any user who can use sudo
to run commands as root.
NASHOG:/c/addons-config/VirtualBox/backup#
Thanks so much the @MattyShack for the great step-by-step.