Users Guide
Table Of Contents
- Dell Edge Gateway 3001 설치 및 작동 설명서
- 개요
- 시스템 보기
- Edge Gateway 설치
- ZigBee 동글 설정
- 운영 체제 설정
- Windows 10 IoT Enterprise LTSB 2016
- Ubuntu Core 16
- Ubuntu Server
- 개요
- 이더넷 포트 1을 사용하여 Edge Gateway에 로그인
- DHCP(Dynamic Host Configuration Protocol) 디먼 설치 또는 구성
- Ubuntu Server 드라이버 정보
- Ubuntu Server에서의 펌웨어 관리
- WDT(Watchdog Timer) 구성
- 신뢰할 수 있는 플랫폼 모듈(TPM)
- 클라우드 LED 켜기/끄기
- ALSA(Advanced Linux Sound Architecture)
- GPS(Global Positioning Systems)
- 직렬 포트
- GPIO
- 센서
- 점화 핀
- 시스템 전원 관리
- Ubuntu 네트워크 관리자
- Ubuntu Server 복원
- OS 복구 USB 플래시 드라이브 생성
- BIOS 액세스 및 업데이트
- 참고 자료
- 부록
- Dell에 문의하기
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