Raspberry Pi: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(Multimedia Fernsehen Station)
Zeile 3: Zeile 3:
  
 
* https://libreelec.tv/downloads_new/
 
* https://libreelec.tv/downloads_new/
 +
 +
 +
== config.txt ==
 +
 +
* mit ssh bearbeiten
 +
<source lang=bash>
 +
mount -o remount,rw /flash
 +
cp /flash/config.txt  /flash/config.txt.original
 +
vi /flash/config.txt
 +
mount -o remount,ro /flash
 +
reboot
 +
<source>
 +
 +
* https://wiki.libreelec.tv/config.txt
  
 
= Notizen von 2013 =
 
= Notizen von 2013 =

Version vom 13. Juni 2020, 18:36 Uhr

Multimedia Fernsehen Station


config.txt

  • mit ssh bearbeiten
mount -o remount,rw /flash
cp /flash/config.txt  /flash/config.txt.original
vi /flash/config.txt
mount -o remount,ro /flash
reboot
<source>

* https://wiki.libreelec.tv/config.txt

= Notizen von 2013 =

== Einrichtung ==
<source lang="bash">
# 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

Quellen