{"id":24864188,"url":"https://github.com/carlosrabelo/ttdaiu","last_synced_at":"2026-05-20T10:02:25.549Z","repository":{"id":40589706,"uuid":"182343185","full_name":"carlosrabelo/ttdaiu","owner":"carlosrabelo","description":"Things to do after installing Ubuntu","archived":false,"fork":false,"pushed_at":"2025-03-16T17:39:34.000Z","size":152,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-16T07:08:13.934Z","etag":null,"topics":["ansible","automation","things-to-do","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/carlosrabelo.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}},"created_at":"2019-04-20T01:00:33.000Z","updated_at":"2025-03-16T17:39:37.000Z","dependencies_parsed_at":"2024-04-19T01:40:45.200Z","dependency_job_id":"6aa047c0-d3c2-42bc-8bd2-bbd1c5a9e8cd","html_url":"https://github.com/carlosrabelo/ttdaiu","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/carlosrabelo/ttdaiu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carlosrabelo%2Fttdaiu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carlosrabelo%2Fttdaiu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carlosrabelo%2Fttdaiu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carlosrabelo%2Fttdaiu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carlosrabelo","download_url":"https://codeload.github.com/carlosrabelo/ttdaiu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carlosrabelo%2Fttdaiu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264536031,"owners_count":23624405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ansible","automation","things-to-do","ubuntu"],"created_at":"2025-01-31T23:50:02.656Z","updated_at":"2026-05-20T10:02:25.544Z","avatar_url":"https://github.com/carlosrabelo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TTDAIU - Things to Do After Installing Ubuntu\n\n**TTDAIU** is a shell script automation tool that configures Ubuntu systems after installation. It supports Ubuntu 22.04 (Jammy) and 24.04 (Noble) with two execution profiles — `base` for essential setup and `full` for a complete development workstation.\n\n## What TTDAIU Installs\n\n### Base Profile (`ENV=base`)\n- **System packages**: Build tools, network utilities, development libraries\n- **Shell configuration**: Enhanced bash with aliases and profile settings\n- **Backup system**: Dotfile backup and restore script\n\n### Full Profile (`ENV=full`)\nIncludes all base components plus:\n\n#### Development Tools\n- **Docker**: Container platform via APT (with GPG key and official repository)\n- **Go**: Go language via Snap\n- **Node.js**: Runtime from NodeSource with Corepack, pnpm, and yarn\n- **GitHub CLI**: `gh` via official APT repository\n\n#### Editors \u0026 IDEs\n- **Visual Studio Code**: Via Snap\n- **VSCodium**: Open-source VS Code alternative via Snap\n- **Neovim**: Terminal editor via APT\n\n#### Productivity\n- **Chromium**: Browser via Snap\n- **LibreOffice**: Office suite via Snap\n- **GIMP**, **Inkscape**, **Audacity**, **VLC**: Via APT\n\n#### AI / CLI Tools\n- **Claude Code**: Via native installer (`claude.ai/install.sh`)\n- **OpenCode**: Via native installer (`opencode.ai/install`)\n- **Codex**: `@openai/codex` via npm\n- **Gemini**: `@google/gemini-cli` via npm\n\n#### Specialized Tools\n- **Nginx**, **QEMU**, **libvirt**, **Z80** toolchain: Via APT\n\n#### System Packages (100+)\nDevelopment libraries, LaTeX, networking tools, graphics, productivity apps, system monitors.\n\n## Quick Start\n\n```bash\n# Install dependencies (curl, rsync)\nmake install-deps\n\n# Run full setup on the local machine (Noble/24.04)\nmake install\n\n# Run only specific scripts\nmake install SCRIPT=node\nmake install SCRIPT=docker,golang,github\n\n# Base profile only (packages + bash + backup)\nmake install ENV=base\n\n# Preview without making changes\nmake dry-install\nmake dry-install SCRIPT=node\n\n# Run on a remote machine via SSH\nmake install HOST=root@server\nmake install HOST=root@server UBUNTU_VERSION=jammy SCRIPT=z80\n```\n\n## Project Structure\n\n```\nttdaiu/\n├── ubuntu/noble/                  # Ubuntu 24.04 (Noble)\n│   ├── setup.sh                   # Orchestrator\n│   ├── files/bash/                # Dotfiles (.bashrc, .bash_aliases, .bash_extras, .profile)\n│   └── scripts/\n│       ├── lib.sh                 # Shared functions (log, retry, apt_install, snap_install…)\n│       ├── install-backup.sh\n│       ├── install-bash.sh\n│       ├── install-packages.sh\n│       ├── install-docker.sh\n│       ├── install-node.sh\n│       └── …                      # One script per component (19 total)\n├── ubuntu/jammy/                  # Ubuntu 22.04 (Jammy) — same structure\n├── make/\n│   ├── run-shell.sh               # Local and remote execution logic\n│   ├── install-deps.sh            # Installs curl and rsync\n│   └── cleanup.sh\n├── docs/                          # GUIDE.md, GUIDE-PT.md\n├── Makefile\n└── LICENSE\n```\n\n## Documentation\n\n- **English guide**: [docs/GUIDE.md](docs/GUIDE.md)\n- **Guia em português**: [docs/GUIDE-PT.md](docs/GUIDE-PT.md)\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarlosrabelo%2Fttdaiu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarlosrabelo%2Fttdaiu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarlosrabelo%2Fttdaiu/lists"}