Kali Basic Commands Flashcards
True of false
Linux is not case sensitive
False
What is the command which will tell you the directory you are currently in?
Type the command ‘pwd’
What is the command to move UP a directory?
Type the command ‘cd ..’
What is the shortcut to take you back to the home folder?
Type the command ‘cd ~’
Alternatively, you can simply type ‘cd’
Note: The symbol is the tilde
What is the shortcut to go back to the previous folder you were in?
Type the command ‘cd - ‘
You are in the home folder.
How would you create a new folder in the temp directory?
Type the command ‘mkdir /tmp/testdir
What is the command to get parent directories, i.e. one folder within another folder?
Type the command ‘mkdir -p /tmp/dir1/dir2
What is the command to create a new text file in the tmp directory?
Type the command ‘touch /tmp/newfile.txt’