02-12-2017, 10:59 AM
(12-27-2016, 04:12 PM)RobCole Wrote: I tried the step-by-step set up for Debian with camera. Everything seemed to work right up to starting the octoprint service. That returned a "no such file exists" error.
So I tried the image. Would it be possible to get an image with wifi enabled?
I edited the interfaces file, but obviously, that isn't enough. Sigh. Now I have to research how to enable the wifi.
Here's my /etc/network/interfaces file. I use a static IP on the wlan, lan is not enabled.
# Primary Ethernet Interface (If Running GUI You May Want To Comment Out This Part For The Network Manager)
# Primary Ethernet Set To DHCP
# auto eth0
# iface eth0 inet dhcp
# Primary Ethernet Set To Static Example
# auto eth0
# iface eth0 inet static
# address 192.168.1.
# netmask 255.255.255.0
# network 192.168.1.0
# broadcast 192.168.1.255
# gateway 192.168.1.1
# dns-nameservers 4.2.2.1 4.2.2.2 8.8.8.8
# Wireless Interfaces wlan0 & wlan1 (8723bs has two intefaces)
# You May Want To Disable wlan1 To Avoid Confusion While Running GUI
# iface wlan1 inet manual
auto wlan0
iface wlan0 inet static
wpa-ssid "YourSSID"
wpa-psk "YourWirelessPassword"
address 192.168.2.15
netmask 255.255.255.0
broadcast 192.168.2.255
network 192.168.2.0
gateway 192.168.2.1
dns-nameservers 192.168.2.1 8.8.8.8
Good luck.
Later,
dabone