How to connect to wifi in CentOS 7(CLI)(no GUI)?

Clash Royale CLAN TAG#URR8PPP
up vote
7
down vote
favorite
I had installed CentOS(CLI,minimal).it have no GUI.i want connect to WiFi but answers on askubuntu are not working.
.I want to know following:-
- How to turn WiFi on/off?
- How to get list of available WiFi connections?
- How to connect WiFi that i want to connect with?
centos command-line wifi
add a comment |Â
up vote
7
down vote
favorite
I had installed CentOS(CLI,minimal).it have no GUI.i want connect to WiFi but answers on askubuntu are not working.
.I want to know following:-
- How to turn WiFi on/off?
- How to get list of available WiFi connections?
- How to connect WiFi that i want to connect with?
centos command-line wifi
add a comment |Â
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I had installed CentOS(CLI,minimal).it have no GUI.i want connect to WiFi but answers on askubuntu are not working.
.I want to know following:-
- How to turn WiFi on/off?
- How to get list of available WiFi connections?
- How to connect WiFi that i want to connect with?
centos command-line wifi
I had installed CentOS(CLI,minimal).it have no GUI.i want connect to WiFi but answers on askubuntu are not working.
.I want to know following:-
- How to turn WiFi on/off?
- How to get list of available WiFi connections?
- How to connect WiFi that i want to connect with?
centos command-line wifi
centos command-line wifi
edited Apr 7 at 20:09
Ninroot
84
84
asked Jun 10 '17 at 6:10
rahul
69116
69116
add a comment |Â
add a comment |Â
5 Answers
5
active
oldest
votes
up vote
10
down vote
The best and easy option I like to use with CentOS is nmtui. (Ref: Redhat)
THIS IS NOT GUI, IT IS TUI (TEXT USER INTERFACE)
First you have to install nmtui,
# yum install NetworkManager-tui
Then,
# nmtui
This will option up what you are after.

Now you can go to Edit connection and itwill list out all the available WiFi connections for you. Then you can select what you want and Activate/Deactivate what ever you want.
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
add a comment |Â
up vote
7
down vote
To run the ifconfig ... command , you should install the net-tools package.
Because the net-tools is deprecated there is the ip and iw commands which answer your question:
How to turn WiFi on/off?
$ ip link set <interface> up
$ ip link set <interface> down
How to get list of available WiFi connections?
$ iw dev <interface> scan | grep SSID
How to connect WiFi that i want to connect with?
Create a wpa_supplicant configuration file with the following content:
ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
To add the SSID and the password, run:
$ wpa_passphrase "YOUR-SSID" YOUR-PASSWD >> /etc/wpa_supplicant/wpa_supplicant.conf
To connect run:
$ wpa_supplicant -i <interface> -c /etc/wpa_supplicant/wpa_supplicant.conf -B
dhclient <interface>
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
add a comment |Â
up vote
2
down vote
You should be able to see if the drivers for the card are installed by using lspci -k
And then to know if your interface is correctly detected and named you can use ip link
You can then try to bring up the interface with ifup
If the interface does not come up correctly it might be because you're missing a configuration file like /etc/sysconfig/network-scripts/ifcfg-<interface-name>
Another alternative solution if it's something you only want to bring up once you can input the following commands :
ip link set dev <interface-name> up
wpa_supplicant -B -i <interface-name> -c /etc/wpa_supplicant/wpa_supplicant.conf
dhcpcd <interface-name>
add a comment |Â
up vote
2
down vote
If you are running CentOS 7:
You may want to check if NetworkManager is already there available for you to use:
chkconfig NetworkManager on
service NetworkManager start
Issue command: nmtui
Go directly to "Active a connection" to check if you already can see your wireless network/wi-fi. If so, input your password.
You can also Edit a profile for the wi-fi you want to connect.
NOTE: if you cannot active a wi-fi, try the following:
After above steps: /etc/init.d/network restart
OR REBOOT/RESTART your box.
add a comment |Â
up vote
0
down vote
Here is my experience, for the following reasons:
- If you got connected to Wifi network when you have installed CentOS 7.
- After CentOS 7 entering into sleep mode OR accidental shutdown due to power drainage OR you have restarted & logged into CentOS 7
and if your wifi not working.
Don't install extra kernel module/do any tweaks/install any new packages
Just shutdown and boot again in CentOS 7. Your wifi will start working again.
This is what I realised after 6 hours of tweaks and tried everything out.
add a comment |Â
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
The best and easy option I like to use with CentOS is nmtui. (Ref: Redhat)
THIS IS NOT GUI, IT IS TUI (TEXT USER INTERFACE)
First you have to install nmtui,
# yum install NetworkManager-tui
Then,
# nmtui
This will option up what you are after.

Now you can go to Edit connection and itwill list out all the available WiFi connections for you. Then you can select what you want and Activate/Deactivate what ever you want.
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
add a comment |Â
up vote
10
down vote
The best and easy option I like to use with CentOS is nmtui. (Ref: Redhat)
THIS IS NOT GUI, IT IS TUI (TEXT USER INTERFACE)
First you have to install nmtui,
# yum install NetworkManager-tui
Then,
# nmtui
This will option up what you are after.

Now you can go to Edit connection and itwill list out all the available WiFi connections for you. Then you can select what you want and Activate/Deactivate what ever you want.
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
add a comment |Â
up vote
10
down vote
up vote
10
down vote
The best and easy option I like to use with CentOS is nmtui. (Ref: Redhat)
THIS IS NOT GUI, IT IS TUI (TEXT USER INTERFACE)
First you have to install nmtui,
# yum install NetworkManager-tui
Then,
# nmtui
This will option up what you are after.

Now you can go to Edit connection and itwill list out all the available WiFi connections for you. Then you can select what you want and Activate/Deactivate what ever you want.
The best and easy option I like to use with CentOS is nmtui. (Ref: Redhat)
THIS IS NOT GUI, IT IS TUI (TEXT USER INTERFACE)
First you have to install nmtui,
# yum install NetworkManager-tui
Then,
# nmtui
This will option up what you are after.

Now you can go to Edit connection and itwill list out all the available WiFi connections for you. Then you can select what you want and Activate/Deactivate what ever you want.
edited Oct 14 '17 at 6:59
answered Oct 14 '17 at 1:38
NIK
26127
26127
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
add a comment |Â
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
1
1
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
The question says CLI, no GUI.
â G-Man
Oct 14 '17 at 2:04
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
Yes. I know the question says it is CLI that's where nmtui comes handy. It is not a GUI it is TUI. (Text User Interface) this is a recommended method by Redhat. Look, there are two things we can think of. If the requirement is to configure Wifi manually using a command line this is the best and easiest option. Scripting is not possible with this though, I agree.
â NIK
Oct 14 '17 at 6:56
2
2
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
How can I install NetworkManager-tui without Wifi ??
â rahul
Oct 18 '17 at 9:50
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Correct this is the million dollar question. :) Again you have two options. Easy method is connecting your device to a wired network normally to a network port (RJ45) in your wifi router and do the configuration. ( I have written this here how to do this for Raspberry Pi namal.org. this is same for other devices as well). Second option is download the nmtui rpm and dependencies manually and install using RPM. If you can tell the device you are using and the exact centOS version probably I could tell you what exactly you have to do.
â NIK
Oct 18 '17 at 12:11
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
Thanks! I had an issue on CentOS7 where I couldn't activate (from a GUI) a second, duplicate Wi-Fi NIC because there were configuration conflicts somewhere along the way that prevented from connecting. I came across this suggested answer and this solution worked out most elegantly and allowed me to activate it from commandline.
â KÃÂrlis K.
Jan 22 at 17:59
add a comment |Â
up vote
7
down vote
To run the ifconfig ... command , you should install the net-tools package.
Because the net-tools is deprecated there is the ip and iw commands which answer your question:
How to turn WiFi on/off?
$ ip link set <interface> up
$ ip link set <interface> down
How to get list of available WiFi connections?
$ iw dev <interface> scan | grep SSID
How to connect WiFi that i want to connect with?
Create a wpa_supplicant configuration file with the following content:
ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
To add the SSID and the password, run:
$ wpa_passphrase "YOUR-SSID" YOUR-PASSWD >> /etc/wpa_supplicant/wpa_supplicant.conf
To connect run:
$ wpa_supplicant -i <interface> -c /etc/wpa_supplicant/wpa_supplicant.conf -B
dhclient <interface>
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
add a comment |Â
up vote
7
down vote
To run the ifconfig ... command , you should install the net-tools package.
Because the net-tools is deprecated there is the ip and iw commands which answer your question:
How to turn WiFi on/off?
$ ip link set <interface> up
$ ip link set <interface> down
How to get list of available WiFi connections?
$ iw dev <interface> scan | grep SSID
How to connect WiFi that i want to connect with?
Create a wpa_supplicant configuration file with the following content:
ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
To add the SSID and the password, run:
$ wpa_passphrase "YOUR-SSID" YOUR-PASSWD >> /etc/wpa_supplicant/wpa_supplicant.conf
To connect run:
$ wpa_supplicant -i <interface> -c /etc/wpa_supplicant/wpa_supplicant.conf -B
dhclient <interface>
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
add a comment |Â
up vote
7
down vote
up vote
7
down vote
To run the ifconfig ... command , you should install the net-tools package.
Because the net-tools is deprecated there is the ip and iw commands which answer your question:
How to turn WiFi on/off?
$ ip link set <interface> up
$ ip link set <interface> down
How to get list of available WiFi connections?
$ iw dev <interface> scan | grep SSID
How to connect WiFi that i want to connect with?
Create a wpa_supplicant configuration file with the following content:
ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
To add the SSID and the password, run:
$ wpa_passphrase "YOUR-SSID" YOUR-PASSWD >> /etc/wpa_supplicant/wpa_supplicant.conf
To connect run:
$ wpa_supplicant -i <interface> -c /etc/wpa_supplicant/wpa_supplicant.conf -B
dhclient <interface>
To run the ifconfig ... command , you should install the net-tools package.
Because the net-tools is deprecated there is the ip and iw commands which answer your question:
How to turn WiFi on/off?
$ ip link set <interface> up
$ ip link set <interface> down
How to get list of available WiFi connections?
$ iw dev <interface> scan | grep SSID
How to connect WiFi that i want to connect with?
Create a wpa_supplicant configuration file with the following content:
ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
To add the SSID and the password, run:
$ wpa_passphrase "YOUR-SSID" YOUR-PASSWD >> /etc/wpa_supplicant/wpa_supplicant.conf
To connect run:
$ wpa_supplicant -i <interface> -c /etc/wpa_supplicant/wpa_supplicant.conf -B
dhclient <interface>
edited Aug 26 at 5:19
slmâ¦
239k65494664
239k65494664
answered Jun 10 '17 at 9:41
GAD3R
22.9k164895
22.9k164895
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
add a comment |Â
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
+1 for mentioning net-tools deprecation.
â Isius
Aug 27 at 15:24
add a comment |Â
up vote
2
down vote
You should be able to see if the drivers for the card are installed by using lspci -k
And then to know if your interface is correctly detected and named you can use ip link
You can then try to bring up the interface with ifup
If the interface does not come up correctly it might be because you're missing a configuration file like /etc/sysconfig/network-scripts/ifcfg-<interface-name>
Another alternative solution if it's something you only want to bring up once you can input the following commands :
ip link set dev <interface-name> up
wpa_supplicant -B -i <interface-name> -c /etc/wpa_supplicant/wpa_supplicant.conf
dhcpcd <interface-name>
add a comment |Â
up vote
2
down vote
You should be able to see if the drivers for the card are installed by using lspci -k
And then to know if your interface is correctly detected and named you can use ip link
You can then try to bring up the interface with ifup
If the interface does not come up correctly it might be because you're missing a configuration file like /etc/sysconfig/network-scripts/ifcfg-<interface-name>
Another alternative solution if it's something you only want to bring up once you can input the following commands :
ip link set dev <interface-name> up
wpa_supplicant -B -i <interface-name> -c /etc/wpa_supplicant/wpa_supplicant.conf
dhcpcd <interface-name>
add a comment |Â
up vote
2
down vote
up vote
2
down vote
You should be able to see if the drivers for the card are installed by using lspci -k
And then to know if your interface is correctly detected and named you can use ip link
You can then try to bring up the interface with ifup
If the interface does not come up correctly it might be because you're missing a configuration file like /etc/sysconfig/network-scripts/ifcfg-<interface-name>
Another alternative solution if it's something you only want to bring up once you can input the following commands :
ip link set dev <interface-name> up
wpa_supplicant -B -i <interface-name> -c /etc/wpa_supplicant/wpa_supplicant.conf
dhcpcd <interface-name>
You should be able to see if the drivers for the card are installed by using lspci -k
And then to know if your interface is correctly detected and named you can use ip link
You can then try to bring up the interface with ifup
If the interface does not come up correctly it might be because you're missing a configuration file like /etc/sysconfig/network-scripts/ifcfg-<interface-name>
Another alternative solution if it's something you only want to bring up once you can input the following commands :
ip link set dev <interface-name> up
wpa_supplicant -B -i <interface-name> -c /etc/wpa_supplicant/wpa_supplicant.conf
dhcpcd <interface-name>
answered Jun 10 '17 at 7:37
Panda
312
312
add a comment |Â
add a comment |Â
up vote
2
down vote
If you are running CentOS 7:
You may want to check if NetworkManager is already there available for you to use:
chkconfig NetworkManager on
service NetworkManager start
Issue command: nmtui
Go directly to "Active a connection" to check if you already can see your wireless network/wi-fi. If so, input your password.
You can also Edit a profile for the wi-fi you want to connect.
NOTE: if you cannot active a wi-fi, try the following:
After above steps: /etc/init.d/network restart
OR REBOOT/RESTART your box.
add a comment |Â
up vote
2
down vote
If you are running CentOS 7:
You may want to check if NetworkManager is already there available for you to use:
chkconfig NetworkManager on
service NetworkManager start
Issue command: nmtui
Go directly to "Active a connection" to check if you already can see your wireless network/wi-fi. If so, input your password.
You can also Edit a profile for the wi-fi you want to connect.
NOTE: if you cannot active a wi-fi, try the following:
After above steps: /etc/init.d/network restart
OR REBOOT/RESTART your box.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
If you are running CentOS 7:
You may want to check if NetworkManager is already there available for you to use:
chkconfig NetworkManager on
service NetworkManager start
Issue command: nmtui
Go directly to "Active a connection" to check if you already can see your wireless network/wi-fi. If so, input your password.
You can also Edit a profile for the wi-fi you want to connect.
NOTE: if you cannot active a wi-fi, try the following:
After above steps: /etc/init.d/network restart
OR REBOOT/RESTART your box.
If you are running CentOS 7:
You may want to check if NetworkManager is already there available for you to use:
chkconfig NetworkManager on
service NetworkManager start
Issue command: nmtui
Go directly to "Active a connection" to check if you already can see your wireless network/wi-fi. If so, input your password.
You can also Edit a profile for the wi-fi you want to connect.
NOTE: if you cannot active a wi-fi, try the following:
After above steps: /etc/init.d/network restart
OR REBOOT/RESTART your box.
answered Jun 5 at 3:49
Steve Zhou
211
211
add a comment |Â
add a comment |Â
up vote
0
down vote
Here is my experience, for the following reasons:
- If you got connected to Wifi network when you have installed CentOS 7.
- After CentOS 7 entering into sleep mode OR accidental shutdown due to power drainage OR you have restarted & logged into CentOS 7
and if your wifi not working.
Don't install extra kernel module/do any tweaks/install any new packages
Just shutdown and boot again in CentOS 7. Your wifi will start working again.
This is what I realised after 6 hours of tweaks and tried everything out.
add a comment |Â
up vote
0
down vote
Here is my experience, for the following reasons:
- If you got connected to Wifi network when you have installed CentOS 7.
- After CentOS 7 entering into sleep mode OR accidental shutdown due to power drainage OR you have restarted & logged into CentOS 7
and if your wifi not working.
Don't install extra kernel module/do any tweaks/install any new packages
Just shutdown and boot again in CentOS 7. Your wifi will start working again.
This is what I realised after 6 hours of tweaks and tried everything out.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Here is my experience, for the following reasons:
- If you got connected to Wifi network when you have installed CentOS 7.
- After CentOS 7 entering into sleep mode OR accidental shutdown due to power drainage OR you have restarted & logged into CentOS 7
and if your wifi not working.
Don't install extra kernel module/do any tweaks/install any new packages
Just shutdown and boot again in CentOS 7. Your wifi will start working again.
This is what I realised after 6 hours of tweaks and tried everything out.
Here is my experience, for the following reasons:
- If you got connected to Wifi network when you have installed CentOS 7.
- After CentOS 7 entering into sleep mode OR accidental shutdown due to power drainage OR you have restarted & logged into CentOS 7
and if your wifi not working.
Don't install extra kernel module/do any tweaks/install any new packages
Just shutdown and boot again in CentOS 7. Your wifi will start working again.
This is what I realised after 6 hours of tweaks and tried everything out.
answered Apr 26 at 1:05
rammayur
1012
1012
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f370318%2fhow-to-connect-to-wifi-in-centos-7clino-gui%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password