Mod 8 Day 4 Flashcards
What is the purpose of the Set command?
the Set command displays existing shell variables, environmental variables, and shell functions.
What is the purpose of the Export command?
Export is a bash built-in command that marks an environmental variable to be exported with any newly forked child processes.
What is an environmental variable?
an Environmental Variable are global variables, affecting the users’ total environment, and are often upper-case for quick identification.
What is the purpose of the Source command?
the Source command reads and executes the contents of a file that is passed as an argument in the current shell script.
What is the purpose of the Env command?
the Env command displays only existing environmental variables.
What shebang line represents the bash shell?
!/bin/bash
What is the shebang line to represent the Power Shell?
!/usr/bin/pwsh
What is a login shell?
A login shell requires system authentication, they are interactive shells, you get the system wide environment , and the users full environment.
What is an SSH suite?
an SSH suite is a suite of software that contains programs that create a secure, encrypted channel of communication for data exchange between networked devices.
What is SCP?
SCP securely copies files over the network
- r -recursively copy entire directories
- P -specifies what port to use as apposed to default port 22
default port of (22)
What is SFTP?
STFP is an ftp-like client used for file transfer over a network.
What is SSH?
SSH requires a successful login to the remote system, after which a shell opens to execute commands on that system.
what is an RSSH?
RSSH is a restricted secure shell, it can be configured to specifically restrict use to scp or sftp.
What is the purpose of the chsh command?
the chsh command allows the current user to change their current shell by entering the shell executable that they are wanting to change to
ex: chsh -s /bin/sh billy
What is a non-login shell?
A non-login shell is started by a program without requiring a new login.
What file contains a user specific enviornment and startup programs?
~/.bash_profile
What file contains user specific aliases and functions?
~/.bashrc
What file has the purpose of authentication and authorization?
/etc/passwd
what file has the purpose of authentication?
/etc/shadow
what file has the purpose of authorization?
/etc/group
What is the contents and purpose of /etc/passwd file?
/etc/passwd contains editable user account information for each user. during login the information provided by the user is compared to information in this file, if they match they are authenticated and taken to their home directory.
mnemonic: Never Pass Up Good Chicks Doing Shots
What is the contents and purpose of /etc/shadow?
/etc/shadow contains everything to do with a users password, it contains copies of a users hashed password.
mnemonic: U Have Lost Many Matches Winning Is Everything.
what is the contents and purpose of /etc/group file?
/etc/group is where supplemental group membership is maintained. it contains a listing of every group on the system and user memberships in the group.
mnemonic: Grand Pa Got Shot
What is the command to create a group?
groupadd
-g - allows you to set your GID
What is the command to switch the currently logged in user to a different group?
newgrp is used to switch the user to a new group
What is the command to create a new user?
useradd is used to create a new account
- c -comment
- g primary group
- G supplementary group
- d specifies path of users home directory
- m creates a home directory if one does not exist.
- s specifies non-default shell
- n creates a user with systems default group value
What is the command to update a users authentication token?
passwd
- e expire password for an account
- i days before expired password indicates inactive account
- n sets min field for number of days
- x sets max field for number of days
- w sets warning field for number of days
- l locks user account (-u unlocks)
what command can change and view a users password expiration information?
chage
-l displays account aging information
what command allows you to change parameters set to useradd?
usermod
- s
- g
- G
- a
syntax: usermod [options]
What command allows you to delete a user?
userdel
- r recursively removes a users home directory
- f force removal even if logged in
what command syncs up information between /etc/shadow and /etc/passwd?
pwconv
what command prints the users real and effective UID and GUID?
id