Users Guide

通过 SoftAP (hostapd) 连接
支持启用软件的访问点 (SoftAP) 可通过增加可用的熵并减少到客户端的连接重试数量改进到无线访问点的连接。
: 有关 SoftAP 的更多信息请参阅 docs.ubuntu.com/core/en/stacks/network/wifi-ap/docs/index
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
通过蓝牙连接
此功能允许系统连接到蓝牙设备如蓝牙键盘。
1. 运行命令以启动 bluetoothctl 控制台。
#bluetoothctl
此时将打开 bluetoothctl 控制台。
2. 运行以下命令以启动蓝牙设备。
# power on
3. 注册键盘的代理
# agent KeyboardOnly
# default-agent
4. 运行以下命令以将蓝牙控制器置于配对模式。
# pairable on
80
设置操作系统