> > > That doesn't show the users primary group, you need the output of > 'getent passwd ppp' > > getent passwd pppppp:x:1000:1000:ppp,,,:/home/ppp:/bin/bash
On 08/08/2019 11:50, lampahome wrote:> > > That doesn't show the users primary group, you need the output of > 'getent passwd ppp' > > getent passwd ppp > ppp:x:1000:1000:ppp,,,:/home/ppp:/bin/bashGood, that shows the user exists on that Unix computer, now try this: cat /etc/group | grep '1000' | awk -F ':' '{print $1}' It should return 'ppp' Now go and run those commands on the other Unix computer and you should get the same results. Rowland
> > > > Good, that shows the user exists on that Unix computer, now try this: > > cat /etc/group | grep '1000' | awk -F ':' '{print $1}' > > It should return 'ppp' > > Now go and run those commands on the other Unix computer and you should > get the same results. > > Yes, it returns ppp