Exam 1 Flashcards
This command shows the full path of the current working directory
pwd
Should look like this.
home/student
This command list files and directories in the current directory
ls
This command is used to change the directory
Cd
Move up one directory
Cd..
Change to root directory
Cd/
Used to visualize directory structure
Tree
To make a directory
Mkdir
Open your .bashrc file
nano ~/.bashrc
How do you create a file
touch
How would you make a file in a certain directory
Example
Touch home/index.html
Home is the directory and the file is index but only in the home directory
How would you create a root directory
Mkdir ~/my_website
This command is used to display the contents of files
Cat
What command prints text to the terminal
Echo
This command is used to sort lines of text alphabetically or numerically
Sort
This command searches for specific patterns in files
Grep
This command shows the first part of the file by default the first 10 lines
Head
This command shows the last part of the file by default of the last 10 lines
Tail
Counts these lines
Wc
Temporarily grant administrative privileges to a regular case
Sudo
Switch to another user
Su
What is the command to create a group
Sudo groupadd <groupname></groupname>
How can I check that the group has been made
grep <groupname> /etc/group</groupname>
How to create a user with a home directory
Sudo useradd-m dev_(namehere)
How would I create a password for the new user
Sudo passwd dev_(namehere)
How would I add the user to the group
Sudo usermod -aG <group> dev_(name here)</group>
How would I delete a user
Sudo userdel dev_(name here)
List all groups
Getent group
How to I open the python script
Nano my_python.py
How to check sudoers file
Sudo visudo
How to write to a file
Echo “hello” > [file name]
How to remove a file
Rm [file name]