Re: User is not in the sudoers file

2023-05-08 Thread 황병희
On Mon, 2023-05-08 at 17:08 -0600, Charles Curley wrote: > On Mon, 8 May 2023 17:27:24 +0200 > wrote: > > >  (2) add your user to the sudo group. I'd prefer (2). > > usermod -a -G sudo Oh Good! Thanks for tip! Sincerely, Byung-Hee -- ^고맙습니다 _布德天下_ 감사합니다_^))//

Re: User is not in the sudoers file

2023-05-08 Thread Charles Curley
On Mon, 8 May 2023 19:41:35 -0400 Greg Wooledge wrote: > Wanna be lazier? Nah. I'm too lazy to edit my script. :-) -- Does anybody read signatures any more? https://charlescurley.com https://charlescurley.com/blog/

Re: User is not in the sudoers file

2023-05-08 Thread Greg Wooledge
On Mon, May 08, 2023 at 05:08:44PM -0600, Charles Curley wrote: > On Mon, 8 May 2023 17:27:24 +0200 > wrote: > > > (2) add your user to the sudo group. I'd prefer (2). > > usermod -a -G sudo > > I'm lazy. I have that in a script. Wanna be lazier? In Debian, you can do it this way:

Re: User is not in the sudoers file

2023-05-08 Thread Charles Curley
On Mon, 8 May 2023 17:27:24 +0200 wrote: > (2) add your user to the sudo group. I'd prefer (2). usermod -a -G sudo I'm lazy. I have that in a script. -- Does anybody read signatures any more? https://charlescurley.com https://charlescurley.com/blog/

Re: User is not in the sudoers file

2023-05-08 Thread tomas
On Mon, May 08, 2023 at 11:26:48AM -0400, Dan Purgert wrote: > On May 08, 2023, Igor Korot wrote: > > Hi, ALL, > > Is there a reason for the default install > > I immediately get the error in the subj? > > You likely created a root account during the initial setup. Doing that > skips over adding

Re: User is not in the sudoers file

2023-05-08 Thread tomas
On Mon, May 08, 2023 at 11:20:17AM -0400, Dan Ritter wrote: > Igor Korot wrote: > > Hi, ALL, > > Is there a reason for the default install > > I immediately get the error in the subj? > > > > Basically trying to run: > > > > [code] > > sudo apt-get install > > [/code] > > > Depending on the

Re: User is not in the sudoers file

2023-05-08 Thread Dan Ritter
Igor Korot wrote: > Hi, ALL, > Is there a reason for the default install > I immediately get the error in the subj? > > Basically trying to run: > > [code] > sudo apt-get install > [/code] Depending on the choices you made during installation, either: - root has a password and sudo is not

Re: User is not in the sudoers file

2023-05-08 Thread Dan Purgert
On May 08, 2023, Igor Korot wrote: > Hi, ALL, > Is there a reason for the default install > I immediately get the error in the subj? You likely created a root account during the initial setup. Doing that skips over adding the first user (created during install) to sudoers (i.e. "the operator

Re: User is not in the sudoers file

2023-05-08 Thread Joe
On Mon, 8 May 2023 10:16:33 -0500 Igor Korot wrote: > Hi, ALL, > Is there a reason for the default install > I immediately get the error in the subj? > > Basically trying to run: > > [code] > sudo apt-get install > [/code] > > Thank you. > Sudi itself requires configuration as it does not

Re: User is not in the sudoers file

2023-05-08 Thread tomas
udo It seems you gave root a password. Now you have to become root once, the "traditional" way and either (1) edit the sudoers file to add your user, or (2) add your user to the sudo group. I'd prefer (2). Cheers -- t signature.asc Description: PGP signature

User is not in the sudoers file

2023-05-08 Thread Igor Korot
Hi, ALL, Is there a reason for the default install I immediately get the error in the subj? Basically trying to run: [code] sudo apt-get install [/code] Thank you.