I am successfully using an Edimax WLAN USB stick which I have manually configured by editing etc/network/interfaces
to use a static IP address; everything works as expected (other computers can be pinged, other computers can ping the Raspberry Pi, webbrowsing works), but the GUI indicates "No wireless interfaces found". Does anyone have an idea what this means?
I am using a Raspberry Pi 2 with Raspbian Stretch. I edited the file
/etc/network/interfaces
to contain the following non-comment lines.
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
auto wlan0
iface wlan0 inet static
address {some address}
netmask {some netmask}
gateway {some gateway}
dns-nameservers {some nameserver}
wpa-ssid {some wlan network name}
wpa-psk {some key}
nmcli connection
? – RubberStamp Nov 07 '17 at 21:28# Please note that this file is written to be used with dhcpcd # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
but as you haven't said what you did, or even which Pi or OS, no one can be sure. See How to set up Static IP Address – Milliways Nov 07 '17 at 22:57systemctl status dhcpcd
– RubberStamp Nov 07 '17 at 23:52/etc/network/interfaces
configuration file... and that is a somewhat separate question. I believe the answer is that systemd doesn't pull its configuration from the /etc ... and any config in /etc takes precedence – RubberStamp Nov 08 '17 at 02:28