Raspberry Pi

 

Video Codecs einspielen:

config.txt:
decode_MPG2=0x3abcdef8

Video Codecs überprüfen:

vcgencmd codec_enabled MPG2
vcgencmd codec_enabled H264
vcgencmd codec_enabled WVC1

Übertakten auf 1GHz:

config.txt:
arm_freq=1000
core_freq=500
sdram_freq=500
over_voltage=6

Checken ob WLAN Adapter AP fähig ist:

iw list:

Supported interface modes:
* AP

RPi als AP:

apt-get install hostapd dnsmasq iw
/etc/network/interfaces:
iface wlan0 inet static
address 192.168.9.1
netmask 255.255.255.0
/etc/hostapd/hostapd.conf:
interface=wlan0
driver=nl80211
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
ssid=pi
hw_mode=g
channel=8
beacon_int=100
auth_algs=3
wmm_enabled=1
/etc/default/hostapd:
DAEMON_CONF="/etc/hostapd/hostapd.conf"
/etc/dnsmasq.conf:
interface=wlan0
dhcp-range=192.168.9.10,192.168.9.90,255,255,255,0,12h

 

Audio aus Klinke:

amixer cset numid=3 1
alsactl store

http://www.netzmafia.de/skripten/hardware/RasPi/RasPi_Sound.html

Fest an einen bestehenden WLAN Netzwerk anmelden:

/etc/network/interfaces:
iface wlan0 inet dhcp
	wpa-ssid MeineSSID
	wpa-psk MEINWPAKENNWORT

Links:

  • vcgencmd: http://elinux.org/RPI_vcgencmd_usage
  • config.txt: http://elinux.org/RPi_config.txt