Raspberry Pi: Unterschied zwischen den Versionen

Aus Vosp.freesn.de
Zur Navigation springen Zur Suche springen
F (Diskussion | Beiträge)
F (Diskussion | Beiträge)
 
(5 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 3: Zeile 3:


* https://libreelec.tv/downloads_new/
* https://libreelec.tv/downloads_new/
 
** https://www.kodi-tipps.de/die-besten-kodi-addons/
*** https://github.com/kodinerds/repo/raw/master/repository.kodinerds.zip


== config.txt ==
== config.txt ==
Zeile 27: Zeile 28:
=== Probleme ===
=== Probleme ===


* nur schwarzer Bildschirm
==== nur schwarzer Bildschirm ====
<source lang=bash><source lang=bash>
<source lang=bash>
# zumindest schon mal kurz boot bildschirm
hdmi_safe=1
hdmi_safe=1
</source>
</source>
* hdmi_safe=1 ist die Abkürzung für
<source lang=bash>
hdmi_force_hotplug=1
hdmi_ignore_edid=0xa5000080
config_hdmi_boost=4
hdmi_group=2
hdmi_mode=4
disable_overscan=0
overscan_left=24
overscan_right=24
overscan_top=24
overscan_bottom=24
</source>
* wenn nun aber das Display ein Fernseher ist, bringt uns das nicht weiter weil
** hdmi_group
*** The hdmi_group command defines the HDMI output group to be either
**** Auto-detect from EDID  (hdmi_group=0)
**** CEA (Consumer Electronics Association, the standard typically used by TVs) (hdmi_group=1)
**** DMT (Display Monitor Timings, the standard typically used by monitors) (hdmi_group=2)
* für den Panasonic TX-L24X5E Fernseher, reichten neben der standard LibreELEC config.txt folgende Ergänzungen
<source lang=bash>
hdmi_force_hotplug=1
hdmi_ignore_edid=0xa5000080
hdmi_group=1
</source>
* https://www.raspberrypi.org/documentation/configuration/config-txt/video.md


= Notizen von 2013 =
= Notizen von 2013 =

Aktuelle Version vom 4. Januar 2021, 08:29 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 && exit
  • wichtige Einstellungen
# Force HDMI even if unplugged or powered off
hdmi_force_hotplug=1


Probleme

nur schwarzer Bildschirm

# zumindest schon mal kurz boot bildschirm
hdmi_safe=1
  • hdmi_safe=1 ist die Abkürzung für
hdmi_force_hotplug=1
hdmi_ignore_edid=0xa5000080
config_hdmi_boost=4
hdmi_group=2
hdmi_mode=4
disable_overscan=0
overscan_left=24
overscan_right=24
overscan_top=24
overscan_bottom=24
  • wenn nun aber das Display ein Fernseher ist, bringt uns das nicht weiter weil
    • hdmi_group
      • The hdmi_group command defines the HDMI output group to be either
        • Auto-detect from EDID (hdmi_group=0)
        • CEA (Consumer Electronics Association, the standard typically used by TVs) (hdmi_group=1)
        • DMT (Display Monitor Timings, the standard typically used by monitors) (hdmi_group=2)
  • für den Panasonic TX-L24X5E Fernseher, reichten neben der standard LibreELEC config.txt folgende Ergänzungen
hdmi_force_hotplug=1
hdmi_ignore_edid=0xa5000080
hdmi_group=1


Notizen von 2013

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

Quellen