LINUX COMMANDS Flashcards
LS
lists files and folders in a directory
GREP
SEARCHES TEXT FILES OR COMMAND OUTPUT
EX: Use grep on “access.log” to find the flag that has a prefix of “THM”. What is the flag?
tryhackme@linux1:~$ grep “THM” access.log
13.127.130.212 - - [04/May/2021:08:35:26 +0000] “GET THM{ACCESS} lang=en HTTP/
1.1” 404 360 “-“ “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36”
CD
cd command in linux known as change directory command. It is used to change current working directory.
SHUTDOWN
BRINGS DOWN SYSTEM
PWD
This stands for Print Working Directory
DISPLAYS FULL PATH OR WORKING DIRECTORY
EX: /HOME/MARK
PASSWD
UPDATES CURRENT USER’S PASSWORD
MV
MOVES OR RENAMES FILES
CP
COPY FILES
RM
PERMANENTLY DELETES FILES
You can simply remove files by using rm. However, you need to provide the -R switch alongside the name of the directory you wish to remove.
ex:
tryhackme@linux2:~$ rm note
tryhackme@linux2:~$ ls
folder1 mydirectory
using -R switch:
tryhackme@linux2:~$ rm -R mydirectory
tryhackme@linux2:~$ ls
folder1
CHMOD
CHANGES PERMISSIONS FOR SPECIFIED FILES
CHOWN
CHANGES OWNERSHIP
IWCONFIG
DISPLAYS AND CONFIGURES WIRELESS NETWORK SETTINGS
IFCONFIG
DISPLAYS AND CONFIGURES NETWORK SETTINGS
PS
LISTS PROCESSES
SU
SWITCHES USER TO SPECIFIED USER ACCOUNT
SUDO
RUNS COMMANDS USING ROOT USER ACCESS
APT-GET
UPDATES AND MAINTAINS LIST OF SOFTWARE PACKAGES
VI
STANDARD LINUX TEXT EDITOR
DD
CREATES AN EXACT(BIT-BY-BIT) COPY OF A STORAGE VOLUME
KILL
STOPS A SPECIFIED PROCESS
echo
Output any text that we provide
ex:
tryhackme@linux1:~$ echo “hello Friend!”
hello Friend!
whoami
Find out what user we’re currently logged in as!
ex:
tryhackme@linux1:~$ whoami
tryhackme
cat (concatenate)
Outputting the Contents of a File
“Cat” is short for concatenating & is a fantastic way us to output the contents of files (not just text files!)
ex:
tryhackme@linux1:~/Documents$ ls
todo.txt
tryhackme@linux1:~/Documents$ cat todo.txt
Here’s something important for me to do later!
touch
The touch command takes exactly one argument – the name we want to give the file we create. For example, we can create the file “note” by using touch note. It’s worth noting that touch simply creates a blank file. You would need to use commands like echo or text editors such as nano to add content to the blank file.
ex:
tryhackme@linux2:~$ touch note
tryhackme@linux2:~$ ls
folder1 note
mkdir
making a folder, which just involves using the mkdir command and again providing the name that we want to assign to the directory. For example, creating the directory “mydirectory” using mkdir mydirectory.
ex:
tryhackme@linux2:~$ mkdir mydirectory
tryhackme@linux2:~$ ls
folder1 mydirectory note
file
Determining File Type
ex:
tryhackme@linux2:~$ file note
note: ASCII text
nano
To create or edit a file using nano, we simply use nano filename – replacing “filename” with the name of the file you wish to edit.
ex:
tryhackme@linux3:/tmp# nano myfile
Once we press enter to execute the command, nano will launch! Where we can just begin to start entering or modifying our text. You can navigate each line using the “up” and “down” arrow keys or start a new line using the “Enter” key on your keyboard.
Nano has a few features that are easy to remember & covers the most general things you would want out of a text editor, including:
Searching for text Copying and Pasting Jumping to a line number Finding out what line number you are on
You can use these features of nano by pressing the “Ctrl” key (which is represented as an ^ on Linux) and a corresponding letter. For example, to exit, we would want to press “Ctrl” and “X” to exit Nano.
wget
This command allows us to download files from the web via HTTP – as if you were accessing the file in your browser. We simply need to provide the address of the resource that we wish to download. For example, if I wanted to download a file named “myfile.txt” onto my machine, assuming I knew the web address it – it would look something like this:
ex:
wget https://assets.tryhackme.com/additional/linux-fundamentals/part3/myfile.txt
scp(secure copy)
Secure copy, or SCP, is just that – a means of securely copying files. Unlike the regular cp command, this command allows you to transfer files between two computers using the SSH protocol to provide both authentication and encryption
ex: Copy files & directories from your current system to a remote system
Variable Value
The IP address of the remote system 192.168.1.30
User on the remote system ubuntu
Name of the file on the local system important.txt
Name that we wish to store the file as on the remote system transferred.txt
-With this information, let’s craft our scp command (remembering that the format of SCP is just SOURCE and DESTINATION)
And now let’s reverse this and layout the syntax for using scp to copy a file from a remote computer that we’re not logged into:
ex:
Variable Value
IP address of the remote system 192.168.1.30
User on the remote system ubuntu
Name of the file on the remote system documents.txt
Name that we wish to store the file as on our system notes.txt
The command will now look like the following:
command: scp ubuntu@192.168.1.30:/home/ubuntu/documents.txt notes.txt
ip address
shows IP address information for linux devices