본문 바로가기
OldStory/Home Linux

XBMC 12 Frodo & MythTV 0.25 on Ubuntu 12.04 LTS Desktop

by Alnilam 2012. 12. 19.

Ubuntu 12.04 LTS Desktop 에서는 기본적으로 MythTV 0.25 버전과 XBMC 11 버전를 지원하여 XBMC에 TV plugin 설치 하여도 버전 문제로 프로토콜이 상이하여 MythTV live 화면을 볼 수 없었다.

하지만 XBMC 12 Frodo 는 기본적으로 TV 기능을 지원하여 MythTV live화면을 보고 녹화할 수 있다.

먼저 MythTV backend를 설치 하고 설정 한다.

설치 및 설정 방법은 다음 링크 참조

https://help.ubuntu.com/community/MythTV/Install/Server/Backend

http://www.mythtv.org/wiki/User_Manual:Initial_Installation

중요한 것은 TV card 설정과 데이터 베이스 설정

mysql 설정은 아래와 같이 한다.

mysql -u root -p
create database mythconverg;
create user 'mythtv'@'%' identified by 'mythtv';
create user 'mythtv'@'localhost' identified by 'mythtv';
set password for 'mythtv'@'%' = password('mythtv');
set password for 'mythtv'@'localhost' = password('mythtv');
connect mythconverg;
grant all privileges on *.* to 'mythtv'@'%' with grant option;
grant all privileges on *.* to 'mythtv'@'localhost' with grant option;
flush privileges;
exit
XBMC 12 Frodo 설치는 Ubuntu 12.04 LTS desktop에서 다음과 같이 한다.

sudo apt-get install python-software-properties pkg-config
sudo add-apt-repository ppa:team-xbmc/unstable
sudo apt-get update
sudo apt-get install xbmc
윈도우용과 안드로이드용은 다음 링크에서 받아 설치 할 수 있다.

http://xbmc-korea.com/xe/down

XMBC에서 TV 시청 활성화 방법은

“시스템 => TV 시청 => 일반 => 사용함” 클릭 하면 “활성화된 PVR 추가기능 없음” 창이 표시 되는데 확인 놀러 PVR 클러이언트를 설정 해 준다.

PVR 클라이언트는

“MythTV cmyth PVR Client”를 선택 하고 “설정”를 눌러 Backend IP 주소, MySQL DB에서 설정한 DB name, 아이디와 패스워드를 넣어 준다. 설정 후 “추가기능 정보” 화면에서 “사용 함”를 선택한다.

'OldStory > Home Linux' 카테고리의 다른 글

Ubuntu XBMC Frodo 한글화  (0) 2012.12.21
웹 서버를 미디어 서버로 교체  (0) 2012.12.20
XBMC 12 Frodo Released  (0) 2012.12.17
Build MythTV 0.24.3 on Ubuntu 12.04 LTS  (0) 2012.12.17
Ubuntu 12.04 LTS Desktop  (0) 2012.12.16