Code: Select all
$vimtutor
Code: Select all
$vimtutor
Code: Select all
To belong to the sudo group, i did this:
The file /etc/sudoers is outside your /home, thus you have to become ROOT, launch a terminal:
Code: Select all
$ su
password: type here your root password
and you become ROOT when you see the hash mark (#)
Now you're ROOT and can edit the /etc/sudoers file:
Code: Select all
# nano /etc/sudoers
edit, adding the line you want to the file.
(i added myself to the group 'wheel' and uncommented the line for those belonging to that group)
## Same thing without a password
%wheel ALL=(ALL) NOPASSWD: ALL
save/exit
It should be /etc/conky and all you have to do is make it a ~./conkyrc file which you can edit without superuser permissions.travalon wrote: The file I am trying to edit is a conky.config file found in /ect/conky.
Code: Select all
cp /etc/conky/conky.config ~/.conkyrc
Code: Select all
## Uncomment to allow members of group wheel to execute any command
# %wheel ALL=(ALL) ALL
## Same thing without a password
# %wheel ALL=(ALL) NOPASSWD: ALL
Code: Select all
gpasswd -a <username> wheel