Pages

Wednesday, June 11, 2008

Logetech MediaBoard Pro in YDL

사용자 삽입 이미지
아마존에 주문한 미디어보드 프로가 드디어 오늘 도착했다. 페덱스 그라운드는 정말 너무 느리다. 하지만 공짜면 모든게 용서된다. -_-

Yellow Dog Linux에서 사용하려고 산 키보드니 어떻게 하면 블루투스 키보드를 사용할 수 있는지 방법을 정리해 보도록 한다.

첫번째로 일단 블루트스 드라이버를 깔아야 할 것이다. http://www.bluez.org에서 bluez를 다운로드 받도록 한다.
yum install bluez*
두번째는 리부팅, 드라이버 설치 후 리부팅은 예의랄까~
shutdown -r 0


재부팅 후 키보드 검색을 위해 다음 커맨드를 입력한다.
hcitool scan


그럼 다음 같은 메시지가 표시된다.
Scanning ...
00:07:61:75:DE:24 Logitech Cordless MediaBoard Pro(TM)


/etc/bluetooth/hcid.conf  파일을 다음과 같이 수정한다.
#
# HCI daemon configuration file.
#

# HCId options
options {
# Automatically initialize new devices
autoinit yes;

# Security Manager mode
# none - Security manager disabled
# auto - Use local PIN for incoming connections
# user - Always ask user for a PIN
#
security user;

# Pairing mode
# none - Pairing disabled
# multi - Allow pairing with already paired devices
# once - Pair once and deny successive attempts
pairing multi;

# PIN helper
#pin_helper /usr/bin/bluepin;

# D-Bus PIN helper
dbus_pin_helper;
}

# Default settings for HCI devices
device {
# Local device name
# %d - device id
# %h - host name
name "PS3 BT Host (%d)";

# Local device class
class 0x3e0100;

# Default packet type
#pkt_type DH1,DM1,HV1;

# Inquiry and Page scan
iscan enable; pscan enable;

# Default link mode
# none - no specific policy
# accept - always accept incoming connections
# master - become master on incoming connections,
# deny role switch on outgoing connections
lm accept;

# Default link policy
# none - no specific policy
# rswitch - allow role switch
# hold - allow hold mode
# sniff - allow sniff mode
# park - allow park mode
lp rswitch,hold,sniff,park;

# Authentication and Encryption (Security Mode 3)
#auth enable;
#encrypt enable;
}


다음 명령으로 키보드를 등록한다. 단, 주의할 점은 키보드가 디스커버리 모드에 있어야 하고, 키보다의 하드웨어 주소가 동일해야 한다.
hidd --connect 00:07:61:75:DE:24

No comments: