How do I programmatically disable “Connectivty Checking”?











up vote
2
down vote

favorite












I just installed Ubuntu 18.04 and going through all my dotfile-scripts to properly configure Ubuntu automatically as much as possible. Looping through gsettings I was able to configure most settings as I want them but I haven't found anything in gsettings related to "Connectivity Checking" which is new in Ubuntu 18.04 LTS (at least not included in 16.04 LTS).



I can turn off Connectivity Checking through Settings -> Privacy but how can I do this programmatically? Just uninstall network-manager-config-connectivity-ubuntu? I was able to turn off other privacy settings through gsettings.



Viewing the file list of this package at https://packages.ubuntu.com/bionic/all/network-manager-config-connectivity-ubuntu/filelist indicates that there is just one settings file (/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf) but it does not show any possibility to enable/disable the feature.



Any help is appreciated.










share|improve this question


























    up vote
    2
    down vote

    favorite












    I just installed Ubuntu 18.04 and going through all my dotfile-scripts to properly configure Ubuntu automatically as much as possible. Looping through gsettings I was able to configure most settings as I want them but I haven't found anything in gsettings related to "Connectivity Checking" which is new in Ubuntu 18.04 LTS (at least not included in 16.04 LTS).



    I can turn off Connectivity Checking through Settings -> Privacy but how can I do this programmatically? Just uninstall network-manager-config-connectivity-ubuntu? I was able to turn off other privacy settings through gsettings.



    Viewing the file list of this package at https://packages.ubuntu.com/bionic/all/network-manager-config-connectivity-ubuntu/filelist indicates that there is just one settings file (/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf) but it does not show any possibility to enable/disable the feature.



    Any help is appreciated.










    share|improve this question
























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I just installed Ubuntu 18.04 and going through all my dotfile-scripts to properly configure Ubuntu automatically as much as possible. Looping through gsettings I was able to configure most settings as I want them but I haven't found anything in gsettings related to "Connectivity Checking" which is new in Ubuntu 18.04 LTS (at least not included in 16.04 LTS).



      I can turn off Connectivity Checking through Settings -> Privacy but how can I do this programmatically? Just uninstall network-manager-config-connectivity-ubuntu? I was able to turn off other privacy settings through gsettings.



      Viewing the file list of this package at https://packages.ubuntu.com/bionic/all/network-manager-config-connectivity-ubuntu/filelist indicates that there is just one settings file (/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf) but it does not show any possibility to enable/disable the feature.



      Any help is appreciated.










      share|improve this question













      I just installed Ubuntu 18.04 and going through all my dotfile-scripts to properly configure Ubuntu automatically as much as possible. Looping through gsettings I was able to configure most settings as I want them but I haven't found anything in gsettings related to "Connectivity Checking" which is new in Ubuntu 18.04 LTS (at least not included in 16.04 LTS).



      I can turn off Connectivity Checking through Settings -> Privacy but how can I do this programmatically? Just uninstall network-manager-config-connectivity-ubuntu? I was able to turn off other privacy settings through gsettings.



      Viewing the file list of this package at https://packages.ubuntu.com/bionic/all/network-manager-config-connectivity-ubuntu/filelist indicates that there is just one settings file (/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf) but it does not show any possibility to enable/disable the feature.



      Any help is appreciated.







      18.04 gsettings






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 28 at 7:48









      CHolmstedt

      188117




      188117






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf that is set to false if you disable the setting in the UI:



          [connectivity] 
          .set.enabled=false


          You can use the tool crudini to set the flag using the command line or a script:



          sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"


          For some reason the ui doesn't get updated until a reboot (didn't test logoff/login).
          Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.



          btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):



          sudo find /var -newermt "-1 minute" -ls


          There aren't any changes to gsettings. I monitored the settings using this command:



          dconf watch /





          share|improve this answer























          • Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
            – CHolmstedt
            Oct 17 at 17:18


















          up vote
          1
          down vote













          I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:



          sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf


          This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf.






          share|improve this answer





















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2faskubuntu.com%2fquestions%2f1029108%2fhow-do-i-programmatically-disable-connectivty-checking%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf that is set to false if you disable the setting in the UI:



            [connectivity] 
            .set.enabled=false


            You can use the tool crudini to set the flag using the command line or a script:



            sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"


            For some reason the ui doesn't get updated until a reboot (didn't test logoff/login).
            Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.



            btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):



            sudo find /var -newermt "-1 minute" -ls


            There aren't any changes to gsettings. I monitored the settings using this command:



            dconf watch /





            share|improve this answer























            • Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
              – CHolmstedt
              Oct 17 at 17:18















            up vote
            1
            down vote



            accepted










            There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf that is set to false if you disable the setting in the UI:



            [connectivity] 
            .set.enabled=false


            You can use the tool crudini to set the flag using the command line or a script:



            sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"


            For some reason the ui doesn't get updated until a reboot (didn't test logoff/login).
            Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.



            btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):



            sudo find /var -newermt "-1 minute" -ls


            There aren't any changes to gsettings. I monitored the settings using this command:



            dconf watch /





            share|improve this answer























            • Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
              – CHolmstedt
              Oct 17 at 17:18













            up vote
            1
            down vote



            accepted







            up vote
            1
            down vote



            accepted






            There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf that is set to false if you disable the setting in the UI:



            [connectivity] 
            .set.enabled=false


            You can use the tool crudini to set the flag using the command line or a script:



            sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"


            For some reason the ui doesn't get updated until a reboot (didn't test logoff/login).
            Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.



            btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):



            sudo find /var -newermt "-1 minute" -ls


            There aren't any changes to gsettings. I monitored the settings using this command:



            dconf watch /





            share|improve this answer














            There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf that is set to false if you disable the setting in the UI:



            [connectivity] 
            .set.enabled=false


            You can use the tool crudini to set the flag using the command line or a script:



            sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"


            For some reason the ui doesn't get updated until a reboot (didn't test logoff/login).
            Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.



            btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):



            sudo find /var -newermt "-1 minute" -ls


            There aren't any changes to gsettings. I monitored the settings using this command:



            dconf watch /






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Oct 4 at 11:27

























            answered Oct 4 at 11:19









            fnx

            263




            263












            • Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
              – CHolmstedt
              Oct 17 at 17:18


















            • Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
              – CHolmstedt
              Oct 17 at 17:18
















            Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
            – CHolmstedt
            Oct 17 at 17:18




            Thanks for the information. I verified that the same file is updated for me and it is. I haven't tried to actually add it to my dotfiles script yet.
            – CHolmstedt
            Oct 17 at 17:18












            up vote
            1
            down vote













            I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:



            sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf


            This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf.






            share|improve this answer

























              up vote
              1
              down vote













              I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:



              sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf


              This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf.






              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:



                sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf


                This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf.






                share|improve this answer












                I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:



                sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf


                This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 20 at 15:55









                Andrew Lamarra

                1266




                1266






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1029108%2fhow-do-i-programmatically-disable-connectivty-checking%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

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局