Zurück zu OptAImum
OptAImum Tool · Stand März 2026
VM & Sandbox Setup
Anbietervergleich, Tier-Empfehlung und fertiges Setup-Script für Claude Code.
Welcher Tier passt zu dir?
| Tier | Specs | Ideal für |
|---|---|---|
| Basic | 1 vCPU, 1 GB RAM | Claude Code CLI, einfache Skripte |
| Standard | 2 vCPU, 2–4 GB RAM | Cowork, Browser-Automation, mittlere Projekte |
| Advanced | 4+ vCPU, 8+ GB RAM | Parallele Agents, lokale LLMs, schwere Workloads |
Anbietervergleich
Bestes Free Tier
Kostenlos (Always Free)Oracle Cloud
VM.Standard.A1.Flex – 2 OCPU, 12 GB RAM
Claude Code CLI, einfache Skripte, Einsteiger
Bestes Preis-Leistungs-Verhältnis
ab €4,50/mo (CX22)Hetzner Cloud
CX22 – 2 vCPU, 4 GB RAM / CX32 – 4 vCPU, 8 GB RAM
Cowork, Browser-Automation, mittlere Projekte
Beste Docs & Einsteiger-freundlich
ab ~$12/mo · $200 Guthaben für NeukundenDigitalOcean
2 vCPU, 4 GB RAM Droplet
Parallele Agents, einfache Deployments
Setup-Script für Ubuntu 22.04 LTS
bash
# Ubuntu 22.04 LTS – Setup Script # Als root oder mit sudo ausführen apt update && apt upgrade -y apt install -y curl git nodejs npm # Node.js 20 (LTS) curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt install -y nodejs # Claude Code installieren npm install -g @anthropic-ai/claude-code # API Key setzen export ANTHROPIC_API_KEY="your_api_key_here" echo 'export ANTHROPIC_API_KEY="your_api_key_here"' >> ~/.bashrc # Claude Code starten claude
Nach dem Setup
API Key hinterlegen: export ANTHROPIC_API_KEY="sk-..."Claude Code starten: claudeProfil-MD anlegen: ~/.claude/PROFILE.mdOptional: claude --dangerously-skip-permissions für autonome Workflows
Erstelle danach dein Profil-Markdown – so ist Claude Code von Anfang an auf deinen Stil abgestimmt.