• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do I interpret this account info in Linux??

PeeluckyDuckee

Diamond Member
When I type Vi /etc/passwd I get a listing of accounts. One of them is this...

plucky:x:500:500::/home/plucky:/bin/bash

I'm using RedHat Linux, if that matters. Newbie to Linux as well. Can someone please help the duckie here and shed some light as to what the above means?? Thx in advance 🙂

Plucky
 
ok, you already got it but here goes for the ones that don't know....

/etc/passwd holds the account information in a linux/unix system ( no
user manager here 🙂 ) the structure is: on line for each user containing,

username:encrypted password:user id:group id:<real name>,<location>,
<contact>:home directory:user shell

Notes: the password in not be there ( x in place ) if one uses security package
like the shadow; group ids are present in /etc/group; <real name>,<location>,
<contact> are not required...

Also important are:
/etc/group Holds the group ids
/etc/shadow Holds the encrypted passwords using the shadow suite....


 
Back
Top