Last active
July 8, 2019 15:21
-
-
Save topin89/dc5fe421ba176ac3605c9f233c80740d to your computer and use it in GitHub Desktop.
How to create access point using network manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://unix.stackexchange.com/a/384513 | |
# by | |
# https://unix.stackexchange.com/users/10349/ysdx | |
hostname@user:~$ nmcli d | |
DEVICE TYPE STATE CONNECTION | |
wlp3s0 wifi connected InternetSSID | |
wlx8416f91eade2 wifi disconnected -- #your future AP | |
enp2s0 ethernet unavailable -- | |
lo loopback untranslated -- | |
hostname@user:~$ sudo nmcli device wifi hotspot ifname wlx8416f91eade2 ssid suchssidn password "muchqwerty" | |
Device 'wlx8416f91eade2' successfully activated with 'long-character-string'. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment