luofeiyu
New Member
- Joined
- Sep 27, 2023
- Messages
- 1
- Thread Author
- #1
The wireless net card's chip is: Qualcomm Atheros Communications AR9271 802.11n.
I can create a wireless hotspot in debian:
Now i create a wireless hotspot,my smartphone can connect it with account name myhome and password 12345678.
I want to do the same thing in win10.For the chip AR9271,it seemes no need to install driver in win10,shown in Select Qualcomm Atheros wireless driver.Following the steps in How to Create and Configure Wi-Fi Hotspot in Windows 10? - GeeksforGeeks:
How can fix it?
I can create a wireless hotspot in debian:
Code:
sudo apt install hostapd rfkill
git clone https://github.com/oblique/create_ap.git
cd create_ap
sudo make install
sudo iwconfig
lo no wireless extensions.
enp2s0 no wireless extensions.
wlx001a8c3008b1 IEEE 802.11 ESSID:off/any
wlan="wlx001a8c3008b1"
sudo ifconfig $wlan up
sudo rfkill unblock wifi
eth="enp6s0"
sudo create_ap $wlan $eth myhome 12345678
Now i create a wireless hotspot,my smartphone can connect it with account name myhome and password 12345678.
I want to do the same thing in win10.For the chip AR9271,it seemes no need to install driver in win10,shown in Select Qualcomm Atheros wireless driver.Following the steps in How to Create and Configure Wi-Fi Hotspot in Windows 10? - GeeksforGeeks:
Code:
C:\Windows\system32>netsh
netsh>wlan
netsh wlan>set hostednetwork ssid=myhome
The SSID of the hosted network has been successfully changed.
netsh wlan>set hostednetwork key=12345678
The user key passphrase of the hosted network has been successfully changed.
netsh wlan>start hostednetwork
The hosted network couldn't be started.
The group or resource is not in the correct state to perform the requested operatio
How can fix it?