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.










share|improve this question
























  • 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















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.










share|improve this question
























  • 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













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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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


















  • 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










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).






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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).






    share|improve this answer

























      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).






      share|improve this answer























        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).






        share|improve this answer












        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).







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 at 22:14









        thaller

        55135




        55135






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            サソリ

            広島県道265号伴広島線

            Setup Asymptote in Texstudio