Term
|
Definition
| File that holds vital user login data |
|
|
Term
| how long can a username be |
|
Definition
|
|
Term
| first field of each line of /etc/passwd |
|
Definition
|
|
Term
| second field of /etc/passwd |
|
Definition
password placeholder username:x:UID:GID... |
|
|
Term
| List the fields of the lines in /etc/password |
|
Definition
| Username:password-placeholder:UID:GID:Comments:Homedir:Shell |
|
|
Term
|
Definition
|
|
Term
| list the fields in /etc/group |
|
Definition
GroupName:x:GID:GroupMembers x=password placeholder |
|
|
Term
|
Definition
| encrypted password file, and password aging fields |
|
|
Term
| password aging, list the fields |
|
Definition
| lastchg days: mindays: maxdays: warddays: inactive days: disabled days: NotUsed |
|
|
Term
| permissions on /etc/shadow |
|
Definition
|
|
Term
| verify the consistency of the user Auth. files |
|
Definition
|
|
Term
| command to edit the password or shadow files |
|
Definition
| vipw - locks the files so that they can't be effed with |
|
|
Term
| You edited password by hand adding an unencrypted password, make it right |
|
Definition
pwconv Converts from /etc/passwd and updates /etc/shadow |
|
|
Term
| edit the group file by hand |
|
Definition
|
|
Term
|
Definition
|
|
Term
| modify the password aging attributes |
|
Definition
|
|
Term
| make user user2 change password on next login |
|
Definition
|
|
Term
| modify user user2 so that they can't modify their password for 5 days after they change it |
|
Definition
|
|
Term
| list the current password aging parameters for user2 |
|
Definition
|
|
Term
| change the finger information for user2 |
|
Definition
|
|
Term
| look at the user information for user2 |
|
Definition
|
|
Term
| add user2 to the admin group |
|
Definition
| usermod -a -G admin user2 |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
| delete user2, include deleting the home dir and mail dir |
|
Definition
|
|
Term
| display failed login attempts |
|
Definition
|
|
Term
| display recent login information |
|
Definition
|
|
Term
|
Definition
|
|
Term
| show who is currently logged in |
|
Definition
|
|
Term
|
Definition
|
|
Term
| add user1 as an administrator of webgroup |
|
Definition
| gpasswd -A user1 webgroup |
|
|
Term
| add user2 as a member of webgroup |
|
Definition
| gpasswd -a user2 webgroup |
|
|
Term
| what is the point of having a group password |
|
Definition
users can use the password to temporarily change into that group with the following command: newgrp webgroup enter group password |
|
|
Term
|
Definition
|
|
Term
|
Definition
| sets system-wide functions and aliases |
|
|
Term
|
Definition
| system-wide, sets environment variables |
|
|
Term
|
Definition
| scripts located here are called by /etc/profile |
|
|
Term
| remove shell access for an ftp only user, user2 |
|
Definition
| chsh -s /sbin/nologin user2 |
|
|