Raspberry Pi: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
Zeile 1: Zeile 1:
 
 
== Einrichtung ==
 
== Einrichtung ==
 
<source lang="bash">
 
<source lang="bash">
 
sudo apt-get install  hostapd dnsmasq
 
sudo apt-get install  hostapd dnsmasq
 +
 +
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
 +
 +
 
</source>
 
</source>
  

Version vom 6. Mai 2013, 19:09 Uhr

Einrichtung

sudo apt-get install  hostapd dnsmasq

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

Quellen