Answer on Question - I am facing error with my internet connection
Above is the link to a fix to help with a loss of connection after power saving mode. It says "open with sudo..." How does one do that if one is a complete novice and knows nothing?
Answer on Question - I am facing error with my internet connection
Above is the link to a fix to help with a loss of connection after power saving mode. It says "open with sudo..." How does one do that if one is a complete novice and knows nothing?
The answer you provided in the link wants you to open a file with root privileges, which can be achieved using these two commands
sudo nano /path/to/your/file.foo
in the command above you are opening file.foo
in a command based text editing tool called nano, In your particular case this command should work.
sudo nano /etc/NetworkManager/NetworkManager.conf
gksu gedit /path/to/your/file.foo
In this command you're opening the same file with a GUI based text editor called Gedit (default on Ubuntu and Ubuntu GNOME), In your particular case, this command should work
gksu gedit /etc/NetworkManager/NetworkManager.conf
Note
Use sudo
for command line programs (like nano
), but use gksu
or gksudo
for GUI programs, which often use configuration files in the home directory. If you use plain sudo, the root user can take ownership or your user ID's configuration files and the program used that way will stop working (unless you continue using sudo
). An alternative to gksu
and gksudo
is sudo -H
An explanation for commenting out is to add a hash #
sign in front of the line, in the example you gave, the line
dns=dnsmasq
should become
#dns=dnsmasq
sudo -H gedit
- because Wayland has stricter security policies and won't allow root to own a window in a non-root session. A workaround is to log out, then log in using the non-Wayland option.
– seanlano
Apr 27 '17 at 23:25
sudo
for command line programs (like nano
), but use gksu
or gksudo
for GUI programs, which often use configuration files in the home directory. If you use plain sudo
, the root user can take ownership or your user ID's configuration files and the program used that way will stop working (unless you continue using sudo). An alternative to gksu
and gksudo
is sudo -H
– sudodus
May 06 '17 at 17:49
gksu/gksudo
has been deprecated and is not installed by default. I recommend using pkexec
. See https://askubuntu.com/questions/156998/how-do-i-start-nautilus-as-root/868882#868882 Sumeet, feel free to add the text from and link this answer.
– user68186
May 06 '17 at 18:10
pkexec
and several people recommend it (you are not alone). But there is another recommendation too: "Do not use GUI application programs for elevated permissions. Use command line." But I know that many people prefer GUI programs. And GUI programs that must use elevated permissions have a built-in system, that prompt a password window, for example 'Synaptic'.
– sudodus
May 06 '17 at 18:19
That means open that file with say the text editor nano but ensure you use root powers to edit it or it won't save. How, do:
sudo nano /etc/NetworkManager/NetworkManager.conf
This is necessary because that file can only be edited by one with root privilege. You will be asked for your password which you have to give so the file will open in nano editor
.
After editing it to save it:
nano
but ensure you useroot powers
to edit it or it won't save. How, do:sudo nano /etc/NetworkManager/NetworkManager.conf
. This is necessary because that file can only be edited by one withroot power
– George Udosen Apr 25 '17 at 10:54