Users Guide

Table Of Contents
1. haveged 설치합니다.
# sudo apt install haveged
2. 자신만의 /etc/hostapd/hostapd.conf 만듭니다. 예를 들어, 다음과 같습니다.
auth_algs=1
beacon_int=50
channel=3
country_code=ES
disassoc_low_ack=1
driver=nl80211
hw_mode=g
ht_capab=
ieee80211d=1
ieee80211n=1
interface=wlan0
require_ht=0
rsn_pairwise=CCMP
ssid=TEST
wmm_enabled=1
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_passphrase=00000000
3. wpa_supplicant 비활성화합니다.
# sudo systemctl stop wpa_supplicant.service
# sudo systemctl mask wpa_supplicant.service
4. 네트워크 관리자로부터 분리합니다.
# sudo nmcli d set wlan0 managed no
5. hostapd 사용하여 액세스 지점을 만듭니다.
# hostapd /etc/hostapd/hostapd.conf
Bluetooth 통한 연결
기능을 사용하여 시스템을 Bluetooth 키보드와 같은 Bluetooth 디바이스에 연결할 있습니다.
1. 명령을 실행하여 bluetoothctl 콘솔을 시작합니다.
#bluetoothctl
bluetoothctl 콘솔이 열립니다.
2. 다음 명령을 실행하여 Bluetooth 디바이스의 전원을 켭니다.
# power on
3. 키보드에 에이전트를 등록합니다.
# agent KeyboardOnly
# default-agent
4. 다음 명령을 실행하여 Bluetooth 컨트롤러를 페어링 가능 모드에 놓습니다.
# pairable on
5. 다음 명령을 실행하여 근처의 Bluetooth 디바이스를 검색합니다.
# scan on
6. 다음 명령을 실행하여 Bluetooth 키보드 발견 검사를 중지하게 만듭니다.
# scan off
운영 체제 설정 81