Navigating Linux File System Linux is most probably the most used operating system when it comes to development. Learning how to navigate the Linux file system can really benefit if you plan on using linux as you primary operating system or for development purposes Basic Commands 1. pwd: print the name of the current working directory on the terminal Use this command to find out where you are in the directory structure. When you log on to Linux, your starting directory is always your home directory, so you will be in /home/[your username] as any other than root, or /root if you are logged in as root. pwd 2) ls: list the contents of the current working directory ls command is the most used ls command in Linux. It is the command that most people use once they are logged in a Linux system. To see what files we have in the current working directory we can use the "ls" command To see all the hidden files ( those starting with a period ), use the following switch: ...
This blog is for the Linux lovers who do their everyday computer related stuff with the Linux Distributions