Raspberrypi

From 탱이의 잡동사니
Jump to navigation Jump to search

Overview

Raspberry pi 정보 정리

Installation

공개된 Raspberry pi 설치 이미지는 이곳<ref>https://www.raspberrypi.org/downloads/</ref>에서 다운받을 수 있다.

이후, 다운받은 이미지를 dd 명령어를 이용하여 SD 카드로 복사하면 된다.

$ wget https://downloads.raspberrypi.org/raspbian_latest

$ ls
2015-05-05-raspbian-wheezy.img

$ sudo dd bs=4M if=./2015-05-05-raspbian-wheezy.img of=/dev/mmcblk0

Configurations

raspi-config

라즈베리 파이의 기본 설정을 변경할 수 있는 매뉴이다.

Wireless

라즈베리 파이에서 무선랜 설정을 위해서는 크게 다음과 같은 과정을 거친다.

- 무선랜 검색
- /etc/wpa_suuplicant/wpa_supplicant.conf 파일 설정
- /etc/network/interfaces 파일 설정

무선랜 검색은 다음의 명령어로 할 수 있다.

$ sudo iwlist wlan0 scan

/etc/wpa_supplicant/wpa_supplicant.conf 파일 설정은 다음을 참고하자.

country=GB
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="test"
    psk="test_password"
}

/etc/network/interfaces 파일 설정은 다음을 참고하자(static).

iface wlan0 inet static
        address 192.168.118.12
        netmask 255.255.255.0
        gateway 192.168.118.1
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

Drivers

DWA-171A1

DWA-171 은 기본적으로 라즈베리 파이용 모듈을 제공하지 않는다. DWA-171 을 라즈베리 파이에서 사용하기 위해서는 해당 모듈을 직접 컴파일해야 한다.<ref>http://digitalhacksblog.blogspot.dk/2015/12/it-worked-for-me-sort-of-raspberry-pi.html</ref>

  • Used Raspbian Jessie image dated 11/21/2015
  • Install below packages.
$ apt-get install dkms build-essential bc gcc
  • Downloaded and unzip the driver from abperiasamy/rtl8812AU_8821AU_linux GitHub.
$ wget https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip
  • Download the appropriate kernel headers for your version of Raspbian.(linux-headers-4.1.13+_4.1.13+-2_armhf.deb)
Download at here. (https://www.niksula.hut.fi/~mhiienka/Rpi/linux-headers-rpi/)
  • Install the header.
$ sudo dpkg –i <package name>.deb.
  • Change the Makefile option.
CONFIG_PLATFORM_I386_PC = n
CONFIG_PLATFORM_ARM_RPI = y
  • Install.
$ sudo make clean
$ sudo make
$ sudo make install
  • Load the module.
$ sudo modprobe -a rtl8812au

Applications

XBMC

설정 가이드

m3u 파일 리스트

kodi-pvr

deb http://pipplware.pplware.pt/pipplware/dists/jessie/main/binary /

Than add the key:

Code:
wget -O - http://pipplware.pplware.pt/pipplware/key.asc | sudo apt-key add -

And update and install Kodi or the PVRs:

Code:
sudo apt-get update

Code:
sudo apt-get install kodi kodi-pvr*

EmulationStation

OSMC

Docker

Docker install on raspberry pi.

라즈베리 파이에서도 docker 를 설치할 수 있다. 다음의 명령어를 입력하면 된다<ref>https://www.raspberrypi.org/blog/docker-comes-to-raspberry-pi/</ref>.

$ curl -sSL https://get.docker.com | sh

See also

References

<references />