Host Based Forensics Toolkit Flashcards
What is the comand for Listing files?
ls
What does the “ls” comand do?
It lists files.
What is the comand to list with hidden files?
ls -a
What does the “ls -a” comand do?
It includes hidden files.
What is the comand to list with Detials?
ls -l
What does the “ls -l” comand do?
It does detailed listing.
What is the comand for detailed list including human readable files?
ls -lh
What does the “ls -lh” comand do?
Detailed list including human readable files.
What is the comand to reverse order the list?
ls -r
What does the “ls -r” comand do?
It reverses the display order of the list.
What is the comand to Change directory?
cd <dir></dir>
What does the “cd (dir)(/dir)” comand do?
Changes to a specific directory.
What does “<dir></dir>” mean?
Directory.
What does the “cd ~” comand do?
It goes to the Home Directory.
What is the comand to go to the Home Directory?
cd ~
What does the “cd ../..” comand do?
Goes 2 directories up.
What is the comand to go 2 directories up?
cd ../..
What is an absolute file path?
It is the full file path where we want to go.
What is an example of an absolute file path?
cd /home/cain/downloads
What type of example is this file path “cd /home/cain/downloads”?
Absolute file path.
What is a relative file path?
It is the file path starting where you are currently.
What is an example of a relative file path?
Staring in “/home/caine”
to get to downloads
“cd downloads”.
What does “..” comand do?
Moves up a directory.
What comand would you use to get from “/home/caine/downloads/PCAP” and get to “/home/caine”?
cd ../..
What is the comand to copy a directory?
cp (source) (destination)