Skip to content

📂 Linux File Explorer

This document provides direct directory layouts and quick path maps to navigate your active workspace folders on your local Linux system. All active training code, Docker files, and database schemas are stored under a standard modular home structure.


🚀 Workspace Directory Map

Clicking these links or copying these paths will let you navigate to your active folders in your native file manager (e.g. Nautilus, Dolphin) or CLI terminal:

  • 📂 ~/
    Your active Linux user home directory.
  • 📂 ~/AI_BOOTCAMP
    The core active folder containing this documentation and all your active training projects.
  • 📂 ~/AI_BOOTCAMP/labs
    The workspace directory where all lab exercises, python code, and automation scripts are saved.
  • 📂 ~/AI_BOOTCAMP/labs/n8n/data
    Local database and workflow definitions for your isolated n8n workflow engine.
  • 📂 ~/miniconda3/envs
    Quick access to your isolated Conda virtual environments.
  • 📂 ~/.docker
    Local Docker daemon configurations and container runtimes.

⚡ 📟 Dynamic Quick-Reference Cheat Sheets

Access complete command reference guides, code templates, and analytical metrics directly:


💡 Navigating via CLI

To quickly navigate to any folder from your terminal, leverage standard Linux shell aliases or run absolute path navigation:

bash
### Jump to training vault
cd ~/AI_BOOTCAMP

### Check disk space utilization on mounted filesystem
df -h ~

### Check permissions for active folders
ls -la ~/AI_BOOTCAMP