Last active
July 31, 2018 01:46
-
-
Save ethnchao/59371c84ddee429dcdfd128f8250788f to your computer and use it in GitHub Desktop.
CentOS 7 Laptop wifi setup
This file contains 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
ESSID=SSID | |
MODE=Managed | |
KEY_MGMT=WPA-PSK | |
MAC_ADDRESS_RANDOMIZATION=default | |
TYPE=Wireless | |
PROXY_METHOD=none | |
BROWSER_ONLY=no | |
BOOTPROTO=dhcp | |
DEFROUTE=yes | |
IPV4_FAILURE_FATAL=no | |
IPV6INIT=yes | |
IPV6_AUTOCONF=yes | |
IPV6_DEFROUTE=yes | |
IPV6_FAILURE_FATAL=no | |
IPV6_ADDR_GEN_MODE=stable-privacy | |
NAME=wlp4s0 | |
UUID=3cc507c7-f285-42d0-be91-ddc721558a39 | |
DEVICE=wlp4s0 | |
ONBOOT=yes | |
PEERDNS=no | |
DNS1=192.168.120.201 | |
DNS2=192.168.120.204 | |
DOMAIN=xhlabs.io |
This file contains 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
WPA_PSK=PASSWORD |
This file contains 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
net-tools | |
pciutils | |
group "Development Tools" | |
NetworkManager-wifi | |
iw | |
NetworkManager-tui | |
https://www.systutorials.com/docs/linux/man/5-wpa_supplicant.conf/ | |
https://www.quora.com/How-do-I-setup-WiFi-on-centos-7 | |
http://elrepo.org/tiki/wl-kmod | |
http://elrepo.org/tiki/nvidia-detect | |
http://elrepo.org/tiki/bumblebee |
This file contains 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
ctrl_interface=/var/run/wpa_supplicant | |
ctrl_interface_group=wheel | |
network={ | |
ssid="SSID" | |
scan_ssid=1 | |
key_mgmt=WPA-PSK | |
psk="PASSWORD" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment