Page 1 of 1

unable to lcoate package webmin

Posted: Sun Nov 01, 2015 7:55 pm
by petercli
Hello,
I installed Raspbian debian wheezy first time.
I am trying to run this command : sudo apt-get install webmin
I get a error : E: unable to locate the package webmin
I tried sudo apt-get update but that didn't help .
any suggestions ?
Thanks,Peter

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 3:42 am
by KLL

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 8:10 am
by fruitoftheloom
petercli wrote:Hello,
I installed Raspbian debian wheezy first time.
I am trying to run this command : sudo apt-get install webmin
I get a error : E: unable to locate the package webmin
I tried sudo apt-get update but that didn't help .
any suggestions ?
Thanks,Peter
This is a recent 2015 guide to install Webmin:

http://m-jorgensen.dk/installing-webmin-on-raspberry-pi

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 1:36 pm
by petercli
Hello,
(I am a total Linux newbie)

I could not cd ~/Desktop/ <-- get message /home/pi/desktop directory does not exist.

Instead, I said : cd /tmp , and I was able to download the webmin...deb there ok.

but I don't see the web page when I https://192.168.1.9:10000/ --- any suggestions ? Do I need to install the desktop folder somehow?

Thanks,Peter

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 1:51 pm
by fruitoftheloom
petercli wrote:
but I don't see the web page when I https://192.168.1.9:10000/ --- any suggestions ? Do I need to install the desktop folder somehow?

Thanks,Peter
You need to use your IP Address not the one listed in the link I posted, as clearly stated ;)

When this is complete, you should be able to access Webmin using the IP address of your raspberry pi.

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 2:13 pm
by petercli
Yes, am using the static ip address of the PI, and it works with SSH ok.

here is my /etc/network/interfaces file :

auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.9
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

Re: unable to lcoate package webmin

Posted: Mon Nov 02, 2015 5:04 pm
by DougieLawson
petercli wrote:Yes, am using the static ip address of the PI, and it works with SSH ok.

here is my /etc/network/interfaces file :
Static IP addresses are NOT defined in /etc/network/interfaces now. They're defined in /etc/dhcpcd.conf

Add this stuff at the bottom

Code: Select all

interface eth0
static ip_address=192.168.1.9/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1 8.8.8.8