within linux where were passwords historically stored
Historically these were saved in the /etc/passwd file but this now only contains each user and metadata for each user
what does the salt value added to a password offer resistance to
this offers resistance to dictionary and rainbow attacks
how does linux determine which file permissions to use and what 3 scenarios are spawned from this
to achieve this linux uses the user id (UID) and group id (GID) of the current process and the file
from here:
this linux command is used to administer /etc/group and /etc/gshadow such as adding and deleting members
describe the linux command
Gpasswd
describe briefly
Access control lists (ACL)
what tasks can super users carry out that normal users cant
this type of user can:
Create change or delete hardware and system files
describe the first 2 columns of the /etc/shadow file and subsequent columns
The columns for this file are as follows:
this is a linux command used to delete a user or group from the system
describe the linux command
Deluser
what is the
default behaviour of deluser
By default this linux command only deletes the user account and does not remove the home directory or mail spool
to remove the home directory and mail spool include the option
–remove-home
this is represented as:
note
some linux commands allow the numeric expression to be entered as the permissions

describe the binary represenation of the linux permissions
this will set permissions on newfile1 as:
describe the execution of the linux command
chmod u=rwx,g=rw,o=r newfile1
this is the basic syntax for adding a new user
describe the command
Sudo adduser user
these include:
within linux what are the 3
types of users that can have permisions granted to them
this column is subdivided into three distinct parts which are separated by a $
describe the
second column of the /etc/shadow file
this is a linux file that holds all the groups on the system
describe the linux file
/etc/group
this is the basic syntax to add a new group in linux
describe the command
sudo addgroup group
this linux command is used to add new users and groups
describe the linux command
Adduser
name 5 properties of a hash function
these include:
this is a file that has passwords and the hash value already calculated
describe briefly a dictionary attack
describe the linux command
Addgroup
this is a linux command that is used to add groups to the system
describe the execution of the linux command
chmod u=rwx,g=rw,o=r newfile1
this will set permissions on newfile1 as:
the actions it takes include:
what are the 7
actions that adduser takes upon execution
within linux what are the 3
types of users that can have permisions granted to them
these include:
this linux command will delete ali from the students group
what is the outcome of executing the following linux command
sudo gpasswd -d ali students