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.
18.04 gsettings
add a comment |
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.
18.04 gsettings
add a comment |
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.
18.04 gsettings
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
18.04 gsettings
asked Apr 28 at 7:48
CHolmstedt
188117
188117
add a comment |
add a comment |
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 /
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
add a comment |
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
.
add a comment |
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 /
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
add a comment |
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 /
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
add a comment |
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 /
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 /
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
add a comment |
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
add a comment |
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
.
add a comment |
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
.
add a comment |
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
.
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
.
answered Nov 20 at 15:55
Andrew Lamarra
1266
1266
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
Required, but never shown
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
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