KandZ – Tuts

We like to help…!

Linux CLI HowTo 2 🐧 Navigate Linux Filesystem Like a Pro

2 – How-To: Navigate Linux Filesystem Like a Pro

How to Find Your Current Location in the Filesystem

Steps:

  1. Open terminal
  2. Type pwd and press Enter
  3. Terminal displays current path (e.g., /home/username)

Why: Shows exactly where you are in the directory tree structure


How to Move to Root Directory

Steps:

  1. Open terminal
  2. Type cd / and press Enter
  3. Verify with pwd

Why: Accesses the top-level directory that contains all other directories


How to List All Files Including Hidden Ones

Steps:

  1. Open terminal in desired directory
  2. Type ls -la and press Enter
  3. View results showing hidden files (starting with .)

Why: Reveals system files, configuration files, and hidden directories


How to Go Back to Your Home Directory Quickly

Steps:

  1. Open terminal from anywhere
  2. Type cd and press Enter (or cd ~)
  3. Verify with pwd

Why: Fast way to return to personal user space regardless of current location


How to Access Another User’s Home Directory

Steps:

  1. Open terminal
  2. Type cd ~username where username is the target user
  3. Press Enter
  4. If successful, you’ll be in their home directory

Why: Useful for system administration or accessing shared user data


How to Navigate Up One Level in Directory Tree

Steps:

  1. Open terminal in subdirectory
  2. Type cd .. and press Enter
  3. Verify with pwd

Why: Moves you to parent directory, useful when exploring nested folders


How to Go Back to Previous Location

Steps:

  1. Open terminal
  2. Type cd - and press Enter
  3. You’ll return to last working directory

Why: Quick way to switch between two locations without remembering paths


How to Check What’s in Your Home Directory

Steps:

  1. Open terminal
  2. Type ls -la ~ and press Enter
  3. View all files including hidden ones in home directory

Why: Shows complete user environment including system configuration files


How to See Hidden Files in Current Directory

Steps:

  1. Open terminal in target directory
  2. Type ls -a and press Enter
  3. Notice files starting with dots (hidden files)

Why: Reveals important configuration files that aren’t normally visible


How to Navigate to Specific Deep Directory Path

Steps:

  1. Open terminal
  2. Type cd /home/username/documents/work/projects and press Enter
  3. Use pwd to confirm location

Why: Direct access to deeply nested directories without multiple steps

Leave a Reply