raspberry

OctoPi WLAN

OctoPi WLAN funktioniert nicht, da im Bootbereich ( /boot/octopi-network.txt ) irgendetwas nicht funktioniert (deutsche Anführungszeichen?!?) aus diesem Grund muss man dieses Config-File ausschalten (letze Zeile aus interfaces) und den regulären Weg gehen:

Editiere /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

#iface eth0 inet manual

#allow-hotplug wlan0
#iface wlan0-raspbian inet manual
# wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

#allow-hotplug wlan1
#iface wlan1-raspbian inet manual
# wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
#mapping wlan0
# script /root/bin/map_iface
#source /boot/octopi-network.txt

auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

Hier wurden bis auf die ersten drei unkommentierten Originalzeilen alle anderen auskommentiert (#). Die letzen vier Zeilen wurden hinzugefügt, wobei 2/4 und 4/4 Kopien von Zeilen davor sind.

In der Datei /etc/wpa_supplicant/wpa_supplicant.conf müssen nur noch die SSID und das Passwort eingegeben werden.

Autostart Pixel


einen neuen Ordner autostart under ~/.config erstellen

cd ~/.config
mkdir autostart

eine neue Datei mit der Endung .dektop erstellen

nano mypython.desktop

Konfiguration um ein Programm auszuführen

[Desktop Entry]
Name=MyPython
Exec=python mypython.py
Type=application/*

Title: raspberry Author: D. Fabian Date: 4 November 2017 */