https://drive.google.com/file/d/1IN5XNJTBNoxs35yDyn6bJYska_cSu-3g/view?usp=sharing

1. Linux is Case-Sensitive

Explanation

Linux treats uppercase and lowercase letters as completely different characters. This means File.txt, file.txt, and FILE.TXT are three distinct files.

Example

touch Linux    # Creates a file named "Linux"
touch linux    # Creates a different file named "linux"
ls -li         # Lists files with inode numbers to show they're separate

Lab Steps

  1. Open a terminal.

  2. Run:

    touch Linux linux LINUX
    ls -li
    
    
  3. Observe that three separate files are created with different inode numbers.

Tips & Warnings


2. Everything in Linux is a File

Explanation

In Linux, everything is treated as a file, including: