Changes between Version 2 and Version 3 of Ticket #1616, comment 2
- Timestamp:
- 08/08/17 08:59:42 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1616, comment 2
v2 v3 19 19 }}} 20 20 21 21 {{{ 22 22 [root@srvusi06 ~]# groups alex 23 23 alex : alex xpra 24 }}} 24 25 25 26 I tried changing the main group to the domain user "user": 27 {{{ 26 28 [root@srvusi06 ~]# usermod user -g xpra 27 29 Usermod: user "user" does not exist in /etc/passwd 28 30 }}} 29 31 I manually added a line to /etc/passwd (982 - its gid xpra): 32 {{{ 30 33 user:x:16777219:982::/home/ABC/user:/bin/bash 34 }}} 31 35 32 36 Everything worked! The session started, I was able to connect to it from a remote computer. 33 37 However, now the command 38 {{{ 34 39 [root@srvusi06 ~]# getent passwd 40 }}} 35 41 returns 2 users "user" with the same ID: 36 42 43 {{{ 37 44 ... 38 45 alex:x:1002:1003::/home/alex3:/bin/bash … … 43 50 user:*:16777219:16777216:User aa. family:/home/ABC/user:/bin/bash 44 51 .... 45 52 }}} 46 53 47 54 It's probably wrong ...