How to reload NetworkManager after installing NetworkManager-wifi
up vote
0
down vote
favorite
I have a wireless card installed and nmcli
reports that it is "unmanaged" with text in red that a "plugin is missing".
Googling around led me to identify that I need to install the requisite "NetworkManager-wifi" package. After installation over a wired connection, the red message about the plugin being missing did not go away until after a reboot, after which the device became managed and automatically connected to a network I had setup through nmtui
.
My question is, how can I reload NetworkManager to recognize the plugin needed for the wifi to work without a reboot?
I tried:
$ service network reload
This did not have any affect.
centos wifi networkmanager
add a comment |
up vote
0
down vote
favorite
I have a wireless card installed and nmcli
reports that it is "unmanaged" with text in red that a "plugin is missing".
Googling around led me to identify that I need to install the requisite "NetworkManager-wifi" package. After installation over a wired connection, the red message about the plugin being missing did not go away until after a reboot, after which the device became managed and automatically connected to a network I had setup through nmtui
.
My question is, how can I reload NetworkManager to recognize the plugin needed for the wifi to work without a reboot?
I tried:
$ service network reload
This did not have any affect.
centos wifi networkmanager
network
!=NetworkManager
– Ipor Sircer
Nov 27 at 4:49
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a wireless card installed and nmcli
reports that it is "unmanaged" with text in red that a "plugin is missing".
Googling around led me to identify that I need to install the requisite "NetworkManager-wifi" package. After installation over a wired connection, the red message about the plugin being missing did not go away until after a reboot, after which the device became managed and automatically connected to a network I had setup through nmtui
.
My question is, how can I reload NetworkManager to recognize the plugin needed for the wifi to work without a reboot?
I tried:
$ service network reload
This did not have any affect.
centos wifi networkmanager
I have a wireless card installed and nmcli
reports that it is "unmanaged" with text in red that a "plugin is missing".
Googling around led me to identify that I need to install the requisite "NetworkManager-wifi" package. After installation over a wired connection, the red message about the plugin being missing did not go away until after a reboot, after which the device became managed and automatically connected to a network I had setup through nmtui
.
My question is, how can I reload NetworkManager to recognize the plugin needed for the wifi to work without a reboot?
I tried:
$ service network reload
This did not have any affect.
centos wifi networkmanager
centos wifi networkmanager
edited Nov 27 at 21:18
Rui F Ribeiro
38.3k1476127
38.3k1476127
asked Nov 27 at 4:43
Zhro
342313
342313
network
!=NetworkManager
– Ipor Sircer
Nov 27 at 4:49
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41
add a comment |
network
!=NetworkManager
– Ipor Sircer
Nov 27 at 4:49
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41
network
!= NetworkManager
– Ipor Sircer
Nov 27 at 4:49
network
!= NetworkManager
– Ipor Sircer
Nov 27 at 4:49
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Relading a device plugin (as provided by NetworkManager-wifi) is not supported. You need to restart NetworkManager via systemctl restart NetworkManager
(or whatever service manager/init you use).
It's not supported because it's high effort and not easily possible. That is because the plugin is a shared library, and while it could be loaded on demand, it cannot be unloaded or updated without restart. Since restart anyway is required to work well, that is the suggested way for installing a device plugin.
Note that a restart of the NetworkManager service is usually not required, for example when doing changes to the networking configuration. This is one of the exceptions.
And yes, Ipor is right: network.service
!= network.target
!= NetworkManager.service
(in systemd).
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Relading a device plugin (as provided by NetworkManager-wifi) is not supported. You need to restart NetworkManager via systemctl restart NetworkManager
(or whatever service manager/init you use).
It's not supported because it's high effort and not easily possible. That is because the plugin is a shared library, and while it could be loaded on demand, it cannot be unloaded or updated without restart. Since restart anyway is required to work well, that is the suggested way for installing a device plugin.
Note that a restart of the NetworkManager service is usually not required, for example when doing changes to the networking configuration. This is one of the exceptions.
And yes, Ipor is right: network.service
!= network.target
!= NetworkManager.service
(in systemd).
add a comment |
up vote
1
down vote
accepted
Relading a device plugin (as provided by NetworkManager-wifi) is not supported. You need to restart NetworkManager via systemctl restart NetworkManager
(or whatever service manager/init you use).
It's not supported because it's high effort and not easily possible. That is because the plugin is a shared library, and while it could be loaded on demand, it cannot be unloaded or updated without restart. Since restart anyway is required to work well, that is the suggested way for installing a device plugin.
Note that a restart of the NetworkManager service is usually not required, for example when doing changes to the networking configuration. This is one of the exceptions.
And yes, Ipor is right: network.service
!= network.target
!= NetworkManager.service
(in systemd).
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Relading a device plugin (as provided by NetworkManager-wifi) is not supported. You need to restart NetworkManager via systemctl restart NetworkManager
(or whatever service manager/init you use).
It's not supported because it's high effort and not easily possible. That is because the plugin is a shared library, and while it could be loaded on demand, it cannot be unloaded or updated without restart. Since restart anyway is required to work well, that is the suggested way for installing a device plugin.
Note that a restart of the NetworkManager service is usually not required, for example when doing changes to the networking configuration. This is one of the exceptions.
And yes, Ipor is right: network.service
!= network.target
!= NetworkManager.service
(in systemd).
Relading a device plugin (as provided by NetworkManager-wifi) is not supported. You need to restart NetworkManager via systemctl restart NetworkManager
(or whatever service manager/init you use).
It's not supported because it's high effort and not easily possible. That is because the plugin is a shared library, and while it could be loaded on demand, it cannot be unloaded or updated without restart. Since restart anyway is required to work well, that is the suggested way for installing a device plugin.
Note that a restart of the NetworkManager service is usually not required, for example when doing changes to the networking configuration. This is one of the exceptions.
And yes, Ipor is right: network.service
!= network.target
!= NetworkManager.service
(in systemd).
answered Nov 27 at 22:14
thaller
55135
55135
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f484360%2fhow-to-reload-networkmanager-after-installing-networkmanager-wifi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
network
!=NetworkManager
– Ipor Sircer
Nov 27 at 4:49
Am I understanding correctly that, the problem comes back after the first reboot succeeded in fixing it?
– Michael Prokopec
Nov 27 at 4:59
The problem goes away after installing this package and rebooting.
– Zhro
Nov 27 at 13:41