Term
what does "netstat -r" show |
|
Definition
kernals networking routeing table |
|
|
Term
what does * mean in the "netstat -r" field |
|
Definition
that a gateway isn't needed |
|
|
Term
What is the more feature complete FTP program |
|
Definition
|
|
Term
|
Definition
$ssh _IP ADDRES__ free where the "free" command shows us the free ram |
|
|
Term
how do I show the remote gui |
|
Definition
|
|
Term
whats the main advantage of sftp |
|
Definition
no server needed everything is done via ssh |
|
|
Term
whats the main use of "locate" |
|
Definition
locates file on name alone |
|
|
Term
whats the main reason to use find |
|
Definition
locate file based on several attributes |
|
|
Term
whats an example find cmd to find within the home directory |
|
Definition
|
|
Term
how do I pipe finds results into a cmd |
|
Definition
|
|
Term
what are the 3 find criteria |
|
Definition
|
|
Term
cli use find to output a directory count |
|
Definition
|
|
Term
what are the b,c,d,f,l types of the find command |
|
Definition
b = block c = character d = directory f = file l = link (symbolic) |
|
|
Term
what are the tests of the find cmd |
|
Definition
|
|
Term
what are the 3 logical operators |
|
Definition
|
|
Term
what are the find actions |
|
Definition
|
|
Term
finds "-ok" operator does what |
|
Definition
requires action before proceeding |
|
|
Term
What does a $ mean in a shell script |
|
Definition
It marks it as a variable |
|
|
Term
Where do you place universal scripts |
|
Definition
|
|
Term
What's a good place to put bash scripts for admin use |
|
Definition
/usr/local/sbin #sbin which stands for system bin |
|
|
Term
|
Definition
a value that changes
ex:
Title = yolo
$Title |
|
|
Term
|
Definition
it has a name and contains value but it never changes
ex: Hello |
|
|
Term
|
Definition
what goes into a variable Variable written as a value = String |
|
|
Term
|
Definition
a value inside a variable
ex: title=value string=$title |
|
|
Term
What is a math variable in shell look like? |
|
Definition
|
|
Term
what does the 'touch' cmd do |
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
useradd usernamehere (then...) passwd |
|
|
Term
|
Definition
|
|
Term
|
Definition
cli program that runs basic commands |
|
|
Term
What does & sign do in BASH |
|
Definition
Gives control back to CLI and backgrounds task |
|
|
Term
|
Definition
Takes input and matches line Ex: fstab | grep sdda |
|
|