Raspberry Pi: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→Einrichtung) |
F (Diskussion | Beiträge) (→Quellen) |
||
Zeile 24: | Zeile 24: | ||
* [http://www.raspberrypi.org raspberrypi.org] | * [http://www.raspberrypi.org raspberrypi.org] | ||
* [http://elinux.org/RPi_Community RPi Community] - wiki | * [http://elinux.org/RPi_Community RPi Community] - wiki | ||
+ | * [http://wiki.ubuntuusers.de/WLAN_Router WLAN Router] |
Version vom 6. Mai 2013, 19:38 Uhr
Einrichtung
# Installation der relevanten Pakete
sudo apt-get install hostapd dnsmasq
#
# /etc/default/hostapd:
sudo cp /etc/default/hostapd /etc/default/hostapd.original
sudo chmod 777 /etc/default/hostapd
sudo echo "
DAEMON_CONF="/etc/hostapd.conf" # Verweis auf die Konfigurationsdatei
RUN_DAEMON=yes # aktiviert hostapd bei Systemstart
" >> /etc/default/hostapd
sudo chmod go-w /etc/default/hostapd
sudo chmod -x /etc/default/hostapd
#
# /etc/hostapd.conf anlegen
sudo vim /etc/hostapd.conf