-2

My old computer had linux on my old computer and I had a friend that went into the grub menu and did something and that gave me administration permissions. Lately that friend has not listened to me at all and won't do it again so can someone show me a tutorial on how to do that. It would be GREATLY appreciated. Pls HELP.

1 Answers1

1

Open a Terminal window and type the following command:

sudo visudo

type in your password when prompted and add the following line in the sudoers file

$your_user_name ALL=(ALL) NOPASSWD: ALL

Replace &your_user_name with your username.

Crtl+x -> y -> Enter

to save and quit.

AbP
  • 11