- Linux - Navigation (ls -la, cd, pwd, tree, relative/absolute paths, filesystem)
- Create directory structure:
~/project/{src,bin,doc,data}
- Navigate and list contents:
Show the current directory path
Shows all files, including hidden files, in detailed format
Display the directory structure as tree
- Compare Filesystem Types (EXT4 vs NTFS):
Check filesystem types of mounted drives

- Linux - File Management (mv, rename, rm, touch, vim, cat, head, tail, mkdir, rmdir)
- Create a file file1.txt
- Rename the file to file2.txt
- Delete the file file2.txt
- Create and remove directories: myfolder
- Edit file file1.txt using Vim
- View file contents with cat, head, and tail.


