{"id":35324513,"url":"https://github.com/tysker/linux_training_environment_playground","last_synced_at":"2026-04-14T10:31:26.771Z","repository":{"id":325230956,"uuid":"1100366104","full_name":"tysker/linux_training_environment_playground","owner":"tysker","description":"This repository provides a self-contained Linux training environment designed for teaching Linux commands using Docker. It is intended for use with GitHub Classroom, where each student receives a private copy of the repository and completes the exercises inside their own isolated Linux container.","archived":false,"fork":false,"pushed_at":"2025-11-20T09:00:52.000Z","size":451,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-20T09:11:35.880Z","etag":null,"topics":["docker","github","github-actions","github-classroom","linux"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tysker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-20T07:26:56.000Z","updated_at":"2025-11-20T09:02:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tysker/linux_training_environment_playground","commit_stats":null,"previous_names":["tysker/linux_training_environment_playground"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/tysker/linux_training_environment_playground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tysker%2Flinux_training_environment_playground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tysker%2Flinux_training_environment_playground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tysker%2Flinux_training_environment_playground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tysker%2Flinux_training_environment_playground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tysker","download_url":"https://codeload.github.com/tysker/linux_training_environment_playground/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tysker%2Flinux_training_environment_playground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31793212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","github","github-actions","github-classroom","linux"],"created_at":"2025-12-31T01:06:05.582Z","updated_at":"2026-04-14T10:31:26.766Z","avatar_url":"https://github.com/tysker.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🐧 Linux Training Environment – Docker Playground\n\n_A GitHub Classroom–ready Linux learning environment_\n\n![Docker](https://img.shields.io/badge/Docker-2496ED?style=for-the-badge\u0026logo=docker\u0026logoColor=white)\n![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge\u0026logo=linux\u0026logoColor=black)\n![Bash](https://img.shields.io/badge/Bash-4EAA25?style=for-the-badge\u0026logo=gnubash\u0026logoColor=white)\n![GitHub Classroom](https://img.shields.io/badge/GitHub_Classroom-181717?style=for-the-badge\u0026logo=github\u0026logoColor=white)\n\n---\n\n## 📚 Overview\n\nThis repository provides a **self-contained Linux training environment** designed for teaching Linux commands using Docker.\nIt is intended for use with **GitHub Classroom**, where each student receives a private copy of the repository and completes the exercises inside their own isolated Linux container.\n\nStudents on **Windows**, **macOS**, or **Linux** can all run the exact same environment.\n\nAll exercises and student tasks are located in **INSTRUCTIONS.md**.\n\n---\n\n## 🎓 How Instructors Use This Repository\n\nThis repository is configured as a **template** for GitHub Classroom.\n\n1. Create a new Classroom assignment.\n2. Select this repository as the **template repo**.\n3. Distribute the assignment link to students.\n4. Classroom automatically generates a private repo for each student.\n5. Students complete tasks inside the Docker environment and push their work.\n6. Instructors review submissions or use optional autograding.\n\n---\n\n## 🧪 Autograding (Optional)\n\nThis repository includes basic autograding support through:\n\n```\n.github/classroom/autograding.json\ntests/\n```\n\nBy default, the autograder checks:\n\n- Whether the student created `username.txt`\n- Whether the file contains output\n- Assigns points based on test success\n\nAdditional tests can be added in the `tests/` directory and configured via `autograding.json`.\n\n---\n\n## 🚀 Student Quickstart (Short Version)\n\nStudents follow **INSTRUCTIONS.md**, but the essential steps are:\n\n```bash\ndocker build -t linux/env .\ndocker run -it --name mylinuxenv linux/env\n```\n\nExit the container:\n\n```bash\nexit\n```\n\nReturn to it later:\n\n```bash\ndocker start mylinuxenv\ndocker exec -it mylinuxenv bash\n```\n\n---\n\n## 📁 Repository Structure\n\n```\nlinux_training_environment_playground/\n│\n├── Dockerfile\n├── INSTRUCTIONS.md        # Student exercises\n├── README.md              # Instructor guide\n├── VERSION\n│\n├── exercises/             # Optional exercise files\n│     └── myzip.zip\n│\n├── tests/                 # Autograding scripts\n│     └── check_username.sh\n│\n└── .github/\n      └── classroom/\n            └── autograding.json\n```\n\n---\n\n## 🎯 Learning Goals\n\nStudents completing the exercises will be able to:\n\n- Navigate the Linux filesystem\n- Create and manage files and directories\n- Use text editors and content viewers\n- Work with permissions\n- Manage users and groups\n- Use search tools (`grep`, `find`)\n- Understand pipes and redirection\n- Inspect and manage processes\n- Install packages and explore the system\n\n---\n\n## 🔧 Updating the Template Repository\n\nAfter updating:\n\n- `INSTRUCTIONS.md`\n- `Dockerfile`\n- `tests/`\n- `.github/classroom/autograding.json`\n\nNew Classroom assignments will use the updated version automatically.\nAlready-created student repositories will **not** update — they remain snapshots.\n\nFor major updates, increment the version in the `VERSION` file.\n\n---\n\n## 📜 License\n\nMIT License. See `LICENSE` for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftysker%2Flinux_training_environment_playground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftysker%2Flinux_training_environment_playground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftysker%2Flinux_training_environment_playground/lists"}