The Linux command line is a powerful tool for interacting with your computer and performing various tasks. Here are the basic steps to get started with the Linux command line:
- Open a terminal window. On most Linux distributions, you can open the terminal by pressing the key combination
Ctrl + Alt + T
. Use the
ls
command to list the files and directories in the current directory.ls
Use the
cd
command to change the current directory. For example, to change to the home directory, you would use the command:cd /home/ubuntu/
Use the
pwd
command to display the current working directory.pwd
Use the
mkdir
command to create a new directory. For example, to create a new directory called "myfolder", you would use the command:mkdir myfolder
Use the
touch
command to create a new empty file. For example, to create a new file called "myfile.txt", you would use the command:touch myfile.txt
Use the
rm
command to delete a file or directory. For example, to delete the file "myfile.txt", you would use the command: (run this carefully)rm myfile.txt
Use the
cp
command to copy a file or directory. For example, to copy the file "myfile.txt" to a new file called "myfile_backup.txt", you would use the command:cp myfile.txt myfile_backup.txt
Use the
mv
command to move or rename a file or directory. For example, to rename the file "myfile.txt" to "mynewfile.txt", you would use the command:mv myfile.txt mynewfile.txt
Other:
- "cat" - Displays the contents of a file.
- "grep" - Searches for a specific string in a file or multiple files.
- "find" - Searches for files based on various criteria such as name, size, and time modified.
- "man" - Displays the manual pages for a command.
- "chmod" - Changes the permissions of a file or directory.
- "sudo" - Allows a user to run a command with administrative privileges.
These are just a few basic examples of how to use the Linux command line. There are many more commands and options available, and it's worth exploring and learning more about the command line.
It's important to note that the command line uses case-sensitive, so be careful of the case when you type the command.