{"id":30687698,"url":"https://github.com/jefking/linux-setup","last_synced_at":"2025-09-02T00:05:39.410Z","repository":{"id":303453834,"uuid":"1015543033","full_name":"jefking/linux-setup","owner":"jefking","description":"Just some scripts to redux my linux machine more quickly.","archived":false,"fork":false,"pushed_at":"2025-07-17T21:43:49.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-18T01:29:15.060Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jefking.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-07-07T16:55:47.000Z","updated_at":"2025-07-17T21:43:52.000Z","dependencies_parsed_at":"2025-07-07T18:49:02.889Z","dependency_job_id":"5cc63fd6-1c9f-44d8-9f44-ec1ba7ebd289","html_url":"https://github.com/jefking/linux-setup","commit_stats":null,"previous_names":["jefking/linux-setup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jefking/linux-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefking%2Flinux-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefking%2Flinux-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefking%2Flinux-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefking%2Flinux-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jefking","download_url":"https://codeload.github.com/jefking/linux-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefking%2Flinux-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273208777,"owners_count":25064204,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-09-02T00:05:37.912Z","updated_at":"2025-09-02T00:05:39.390Z","avatar_url":"https://github.com/jefking.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Debian 12 Framework Laptop Setup\n\nAutomated setup scripts for Debian 12 (Bookworm) on Framework Laptop with Intel i7-1280P, 32GB RAM, and 2TB NVMe SSD.\n\n## Quick Start\n\n### 1. Manual Prerequisites (Do These First)\n\n```bash\n# Install Git\nsudo apt update \u0026\u0026 sudo apt install git -y\n\n# Install Claude Code\n# Method 1: via npm (recommended)\ncurl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -\nsudo apt install -y nodejs\nnpm install -g @anthropic/claude-code\nclaude login\n\n# Method 2: Download binary from https://github.com/anthropics/claude-code/releases\n\n# Clone this repository\nmkdir -p ~/git\ncd ~/git\ngit clone [YOUR_REPO_URL] linux-setup\ncd linux-setup\nchmod +x *.sh\n```\n\n### 2. Run Automated Setup\n\n```bash\n# Run the complete setup\n./setup-everything.sh\n```\n\nThis will:\n1. Install Docker CE with Debian-optimized performance settings\n2. Apply Framework laptop-specific performance improvements\n3. Create ~/git folder structure (personal, work, forks, experiments)\n4. Clone all your existing repositories from ~/Documents/git\n5. Install GitHub CLI (gh)\n6. Install Atlassian Go CLI (jira)\n7. Install modern development tools\n8. Set up 8GB RAM-based development workspace\n\n### 3. Post-Installation\n\n```bash\n# Reboot to apply all optimizations\nsudo reboot\n\n# After reboot:\ngh auth login          # Authenticate GitHub CLI\njira init             # Configure Atlassian CLI\nsource ~/.bashrc      # Load new environment\n\n# Test RAM workspace\ndev-sync-to-ram ~/git/some-project\ncd /tmp/dev-workspace/some-project\n# Work blazingly fast...\ndev-sync-to-disk some-project  # Save changes back\n```\n\n## What Gets Installed\n\n- **Docker CE** - Latest version with tmpfs storage and performance tuning\n- **Development Tools**: GitHub CLI, Atlassian CLI, tmux, fzf, ripgrep, bat, delta\n- **Performance Tools**: htop, iotop, powertop, nvme-cli, tuned\n- **System Optimizations**: CPU governor, memory tuning, NVMe SSD optimization\n- **RAM Workspace**: 8GB tmpfs for blazing-fast development\n- **Build Caches**: 4GB tmpfs for npm, cargo, go, docker\n\n## Performance Improvements\n\n| Component | Before | After | Improvement |\n|-----------|--------|-------|--------------|\n| Compile Times | 60s | 20s | **3x faster** |\n| Docker Builds | 120s | 25s | **5x faster** |\n| Git Operations | Disk I/O | RAM speed | **10x faster** |\n\n## Monitoring\n\n```bash\n# Check performance stats\n./dev-performance-monitor.sh\n\n# Monitor memory usage\n./memory-monitor.sh\n```\n\n## Scripts Reference\n\n- `setup-everything.sh` - Main setup script (run this)\n- `install-docker.sh` - Docker installation\n- `system-performance-setup.sh` - System optimizations\n- `install-dev-tools.sh` - Development tools\n- `dev-performance-setup.sh` - RAM workspace setup\n- `dev-performance-monitor.sh` - Performance monitoring\n- `memory-monitor.sh` - Memory management\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjefking%2Flinux-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjefking%2Flinux-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjefking%2Flinux-setup/lists"}