unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#22492: create new user guixsd
@ 2016-01-30  2:48 rennes
  2016-01-31 16:29 ` Ludovic Courtès
  2016-02-01  0:55 ` Leo Famulari
  0 siblings, 2 replies; 10+ messages in thread
From: rennes @ 2016-01-30  2:48 UTC (permalink / raw)
  To: 22492

Hi,

i run 'guix system reconfigure config.scm --falback', and add new user: 
tron.

When i try to login such as tron does not allow login and slim restart.

i check secure and slim.log log files, this message appears in slim.log:

slim: pam_authentication(): User not known to the underlying 
authentication module

The solution to fix this issue was: changing the owner:group for the 
home user.

cd /home
chown -Rf 30019:users tron

and works.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-01-30  2:48 bug#22492: create new user guixsd rennes
@ 2016-01-31 16:29 ` Ludovic Courtès
  2016-02-01 16:59   ` rennes
  2016-02-01  0:55 ` Leo Famulari
  1 sibling, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2016-01-31 16:29 UTC (permalink / raw)
  To: rennes; +Cc: 22492

rennes@openmailbox.org skribis:

> i run 'guix system reconfigure config.scm --falback', and add new
> user: tron.

How did you add the new user account?  You added it in the
‘operating-system’ declaration and then run ‘guix system reconfigure’,
right?

> When i try to login such as tron does not allow login and slim restart.
>
> i check secure and slim.log log files, this message appears in slim.log:
>
> slim: pam_authentication(): User not known to the underlying
> authentication module
>
> The solution to fix this issue was: changing the owner:group for the
> home user.

Could it be that /home is on a separate partition?  There’s a problem
when that is the case: <http://bugs.gnu.org/21108>.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-01-30  2:48 bug#22492: create new user guixsd rennes
  2016-01-31 16:29 ` Ludovic Courtès
@ 2016-02-01  0:55 ` Leo Famulari
  2016-02-01 17:01   ` rennes
  1 sibling, 1 reply; 10+ messages in thread
From: Leo Famulari @ 2016-02-01  0:55 UTC (permalink / raw)
  To: rennes; +Cc: 22492

On Sat, Jan 30, 2016 at 03:48:26AM +0100, rennes@openmailbox.org wrote:
> Hi,
> 
> i run 'guix system reconfigure config.scm --falback', and add new user:
> tron.
> 
> When i try to login such as tron does not allow login and slim restart.
> 
> i check secure and slim.log log files, this message appears in slim.log:
> 
> slim: pam_authentication(): User not known to the underlying authentication
> module
> 
> The solution to fix this issue was: changing the owner:group for the home
> user.
> 
> cd /home
> chown -Rf 30019:users tron

If I am reading this correctly, it means that you changed ownership of
all files in /home to the "tron" user. In general that seems like a bad
idea. What about other users?

> 
> and works.
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-01-31 16:29 ` Ludovic Courtès
@ 2016-02-01 16:59   ` rennes
  2016-02-12 20:58     ` Ludovic Courtès
  0 siblings, 1 reply; 10+ messages in thread
From: rennes @ 2016-02-01 16:59 UTC (permalink / raw)
  To: ludo; +Cc: 22492

Hi ludo,

On 2016-01-31 17:29, ludo@gnu.org wrote:
> rennes@openmailbox.org skribis:
> 
>> i run 'guix system reconfigure config.scm --falback', and add new
>> user: tron.
> 
> How did you add the new user account?  You added it in the
> ‘operating-system’ declaration and then run ‘guix system reconfigure’,
> right?
> 
>> When i try to login such as tron does not allow login and slim 
>> restart.
>> 
>> i check secure and slim.log log files, this message appears in 
>> slim.log:
>> 
>> slim: pam_authentication(): User not known to the underlying
>> authentication module
>> 
>> The solution to fix this issue was: changing the owner:group for the
>> home user.
> 
> Could it be that /home is on a separate partition?  There’s a problem
> when that is the case: <http://bugs.gnu.org/21108>.
> 
> Thanks,
> Ludo’.

i replace bob user with tron in the configuration file, and later i 
reconfigure. And i have only root partition.

Thanks

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-02-01  0:55 ` Leo Famulari
@ 2016-02-01 17:01   ` rennes
  0 siblings, 0 replies; 10+ messages in thread
From: rennes @ 2016-02-01 17:01 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 22492

Hi,

On 2016-02-01 01:55, Leo Famulari wrote:
> On Sat, Jan 30, 2016 at 03:48:26AM +0100, rennes@openmailbox.org wrote:
>> Hi,
>> 
>> i run 'guix system reconfigure config.scm --falback', and add new 
>> user:
>> tron.
>> 
>> When i try to login such as tron does not allow login and slim 
>> restart.
>> 
>> i check secure and slim.log log files, this message appears in 
>> slim.log:
>> 
>> slim: pam_authentication(): User not known to the underlying 
>> authentication
>> module
>> 
>> The solution to fix this issue was: changing the owner:group for the 
>> home
>> user.
>> 
>> cd /home
>> chown -Rf 30019:users tron
> 
> If I am reading this correctly, it means that you changed ownership of
> all files in /home to the "tron" user. In general that seems like a bad
> idea. What about other users?
> 
>> 
>> and works.
>> 
>> 
>> 
>> 

In the new generations the user are created but do not enter.

Thanks

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-02-01 16:59   ` rennes
@ 2016-02-12 20:58     ` Ludovic Courtès
  2016-02-13  5:48       ` rennes
  0 siblings, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2016-02-12 20:58 UTC (permalink / raw)
  To: rennes; +Cc: 22492

rennes@openmailbox.org skribis:

> On 2016-01-31 17:29, ludo@gnu.org wrote:
>> rennes@openmailbox.org skribis:
>>
>>> i run 'guix system reconfigure config.scm --falback', and add new
>>> user: tron.
>>
>> How did you add the new user account?  You added it in the
>> ‘operating-system’ declaration and then run ‘guix system reconfigure’,
>> right?

[...]

> i replace bob user with tron in the configuration file, and later i
> reconfigure. And i have only root partition.

You wrote:

> When i try to login such as tron does not allow login and slim restart.

Can you log in as ‘tron’ on the console?  (Try Ctrl-alt-F2 to switch to
the console.)

Ludo’.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-02-12 20:58     ` Ludovic Courtès
@ 2016-02-13  5:48       ` rennes
  2016-03-07 12:20         ` Ludovic Courtès
  0 siblings, 1 reply; 10+ messages in thread
From: rennes @ 2016-02-13  5:48 UTC (permalink / raw)
  To: ludo; +Cc: 22492

On 2016-02-12 14:58, ludo@gnu.org wrote:
> rennes@openmailbox.org skribis:
> 
>> On 2016-01-31 17:29, ludo@gnu.org wrote:
>>> rennes@openmailbox.org skribis:
>>> 
>>>> i run 'guix system reconfigure config.scm --falback', and add new
>>>> user: tron.
>>> 
>>> How did you add the new user account?  You added it in the
>>> ‘operating-system’ declaration and then run ‘guix system 
>>> reconfigure’,
>>> right?
> 
> [...]
> 
>> i replace bob user with tron in the configuration file, and later i
>> reconfigure. And i have only root partition.
> 
> You wrote:
> 
>> When i try to login such as tron does not allow login and slim 
>> restart.
> 
> Can you log in as ‘tron’ on the console?  (Try Ctrl-alt-F2 to switch to
> the console.)
> 
> Ludo’.

Hi Ludo,

i installed the system from scratch. I will make a scenario for testing.

Thanks.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-02-13  5:48       ` rennes
@ 2016-03-07 12:20         ` Ludovic Courtès
  2016-03-08 14:13           ` rennes
  0 siblings, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2016-03-07 12:20 UTC (permalink / raw)
  To: rennes; +Cc: 22492

rennes@openmailbox.org skribis:

> On 2016-02-12 14:58, ludo@gnu.org wrote:
>> rennes@openmailbox.org skribis:
>>
>>> On 2016-01-31 17:29, ludo@gnu.org wrote:
>>>> rennes@openmailbox.org skribis:
>>>>
>>>>> i run 'guix system reconfigure config.scm --falback', and add new
>>>>> user: tron.
>>>>
>>>> How did you add the new user account?  You added it in the
>>>> ‘operating-system’ declaration and then run ‘guix system
>>>> reconfigure’,
>>>> right?
>>
>> [...]
>>
>>> i replace bob user with tron in the configuration file, and later i
>>> reconfigure. And i have only root partition.
>>
>> You wrote:
>>
>>> When i try to login such as tron does not allow login and slim
>>> restart.
>>
>> Can you log in as ‘tron’ on the console?  (Try Ctrl-alt-F2 to switch to
>> the console.)
>>
>> Ludo’.
>
> Hi Ludo,
>
> i installed the system from scratch. I will make a scenario for testing.

Hi!  Any update on this bug?

  http://bugs.gnu.org/22492

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-03-07 12:20         ` Ludovic Courtès
@ 2016-03-08 14:13           ` rennes
  2016-03-08 14:51             ` Ludovic Courtès
  0 siblings, 1 reply; 10+ messages in thread
From: rennes @ 2016-03-08 14:13 UTC (permalink / raw)
  To: ludo; +Cc: 22492

On 2016-03-07 06:20, ludo@gnu.org wrote:
> rennes@openmailbox.org skribis:
> 
>> On 2016-02-12 14:58, ludo@gnu.org wrote:
>>> rennes@openmailbox.org skribis:
>>> 
>>>> On 2016-01-31 17:29, ludo@gnu.org wrote:
>>>>> rennes@openmailbox.org skribis:
>>>>> 
>>>>>> i run 'guix system reconfigure config.scm --falback', and add new
>>>>>> user: tron.
>>>>> 
>>>>> How did you add the new user account?  You added it in the
>>>>> ‘operating-system’ declaration and then run ‘guix system
>>>>> reconfigure’,
>>>>> right?
>>> 
>>> [...]
>>> 
>>>> i replace bob user with tron in the configuration file, and later i
>>>> reconfigure. And i have only root partition.
>>> 
>>> You wrote:
>>> 
>>>> When i try to login such as tron does not allow login and slim
>>>> restart.
>>> 
>>> Can you log in as ‘tron’ on the console?  (Try Ctrl-alt-F2 to switch 
>>> to
>>> the console.)
>>> 
>>> Ludo’.
>> 
>> Hi Ludo,
>> 
>> i installed the system from scratch. I will make a scenario for 
>> testing.
> 
> Hi!  Any update on this bug?
> 
>   http://bugs.gnu.org/22492
> 
> Thanks,
> Ludo’.


I realized the stage and the new user was created correctly.

Thanks

^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#22492: create new user guixsd
  2016-03-08 14:13           ` rennes
@ 2016-03-08 14:51             ` Ludovic Courtès
  0 siblings, 0 replies; 10+ messages in thread
From: Ludovic Courtès @ 2016-03-08 14:51 UTC (permalink / raw)
  To: rennes; +Cc: 22492

rennes@openmailbox.org skribis:

> On 2016-03-07 06:20, ludo@gnu.org wrote:
>> rennes@openmailbox.org skribis:
>>
>>> On 2016-02-12 14:58, ludo@gnu.org wrote:
>>>> rennes@openmailbox.org skribis:
>>>>
>>>>> On 2016-01-31 17:29, ludo@gnu.org wrote:
>>>>>> rennes@openmailbox.org skribis:
>>>>>>
>>>>>>> i run 'guix system reconfigure config.scm --falback', and add new
>>>>>>> user: tron.
>>>>>>
>>>>>> How did you add the new user account?  You added it in the
>>>>>> ‘operating-system’ declaration and then run ‘guix system
>>>>>> reconfigure’,
>>>>>> right?
>>>>
>>>> [...]
>>>>
>>>>> i replace bob user with tron in the configuration file, and later i
>>>>> reconfigure. And i have only root partition.
>>>>
>>>> You wrote:
>>>>
>>>>> When i try to login such as tron does not allow login and slim
>>>>> restart.
>>>>
>>>> Can you log in as ‘tron’ on the console?  (Try Ctrl-alt-F2 to
>>>> switch to
>>>> the console.)
>>>>
>>>> Ludo’.
>>>
>>> Hi Ludo,
>>>
>>> i installed the system from scratch. I will make a scenario for
>>> testing.
>>
>> Hi!  Any update on this bug?
>>
>>   http://bugs.gnu.org/22492
>>
>> Thanks,
>> Ludo’.
>
>
> I realized the stage and the new user was created correctly.

OK, closing.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2016-03-08 14:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-30  2:48 bug#22492: create new user guixsd rennes
2016-01-31 16:29 ` Ludovic Courtès
2016-02-01 16:59   ` rennes
2016-02-12 20:58     ` Ludovic Courtès
2016-02-13  5:48       ` rennes
2016-03-07 12:20         ` Ludovic Courtès
2016-03-08 14:13           ` rennes
2016-03-08 14:51             ` Ludovic Courtès
2016-02-01  0:55 ` Leo Famulari
2016-02-01 17:01   ` rennes

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).