computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.0 KiB
24 lines
1.0 KiB
# Navigation Basics |
|
|
|
In Linux, navigation between directories and files is a fundamental, yet essential function that allows you to exploit the power of the command-line interface (CLI). Mastering the basic Linux navigation commands such as `cd`, `pwd`, `ls`, and `tree` enables you to flawlessly move from one point to another within the filesystem, display the list of files & directories, and understand your position relative to other system components. |
|
|
|
Here is how you use these commands: |
|
|
|
- To change directories, use the `cd` command: |
|
|
|
```bash |
|
cd /path/to/directory |
|
``` |
|
|
|
- To list the contents of a directory, use the `ls` command: |
|
|
|
```bash |
|
ls |
|
``` |
|
|
|
Visit the following resources to learn more: |
|
|
|
- [@article@Intro to Linux](https://www.linkedin.com/pulse/intro-linux-fundamentals-what-hillary-nyakundi-4u7af/) |
|
- [@video@Linux fundamentals](https://www.youtube.com/watch?v=kPylihJRG70&t=1381s&ab_channel=TryHackMe) |
|
- [@article@Practice on Linux fundamentals](https://linuxjourney.com/) |
|
- [@course@Linux for Noobs (Hands-on)](https://labex.io/courses/linux-for-noobs) |