Term
|
Definition
|
|
Term
| What option can you use with useradd to set the shell to bash |
|
Definition
|
|
Term
| What option can you use with useradd to set the home directory |
|
Definition
|
|
Term
| what option of useradd will create and populate the home directory |
|
Definition
|
|
Term
| what option can you use with useradd to set a comment in the GECOS field |
|
Definition
|
|
Term
| What command can be used to check the default values assigned with the useradd command |
|
Definition
|
|
Term
| What command can be used to change and existing user account |
|
Definition
|
|
Term
| What command will disable an existing user account |
|
Definition
|
|
Term
| what command will unlock an account that has been disabled |
|
Definition
|
|
Term
| What command can be used to remove a user account |
|
Definition
|
|
Term
| Does 'userdel Phil' remove Phil's home directory? |
|
Definition
| No userdel -r Phil removes his directory |
|
|
Term
| How do you add a group to the system |
|
Definition
|
|
Term
| How do you change a group's parameters in linux |
|
Definition
|
|
Term
| What command will change the name of the group “accounting” to “finance” |
|
Definition
| groupmod -n finance accounting |
|
|
Term
| what command will change user passwords |
|
Definition
|
|
Term
| what command will change the password for a group |
|
Definition
|
|
Term
| what command can be used to move passwords frm /etc/passwd to /etc/shadow |
|
Definition
|
|
Term
| what command can be used to move password storage from /etc/shadow to /etc/passwd |
|
Definition
|
|
Term
| what command can be used to move group passwords frm /etc/group to /etc/gshadow |
|
Definition
|
|
Term
| What command will create the directory /home/accounting? |
|
Definition
| mkdir -p /home/accounting |
|
|