Claude 설치 스크립트 서버 ========================== 이 서버는 Claude Desktop / Claude Code / Codex 설정 스크립트를 raw 로 서빙합니다. (공개 주소: get.k-sw.org — 리버스프록시 설정에 맞춰 바꿔도 됨) [ Claude Desktop — GUI 앱 ] macOS: /bin/bash -c "$(curl -fsSL https://get.k-sw.org/claude-desktop/setup-macos.sh)" Windows (PowerShell): irm https://get.k-sw.org/claude-desktop/setup-windows.ps1 | iex [ Claude Code — 터미널 CLI ] (LiteLLM / Bedrock / Vertex) macOS / Linux: /bin/bash -c "$(curl -fsSL https://get.k-sw.org/claude-code-cli/install.sh)" /bin/bash -c "$(curl -fsSL https://get.k-sw.org/claude-code-cli/install.sh)" _ --provider litellm Windows (PowerShell): irm https://get.k-sw.org/claude-code-cli/install-windows.ps1 | iex & ([scriptblock]::Create((irm https://get.k-sw.org/claude-code-cli/install-windows.ps1))) -Provider litellm [ Codex — 앱/IDE/CLI 공용 ] (LiteLLM 등 외부 공급자, ~/.codex/config.toml) macOS / Linux: /bin/bash -c "$(curl -fsSL https://get.k-sw.org/codex-app/setup-macos.sh)" Windows (PowerShell): irm https://get.k-sw.org/codex-app/setup-windows.ps1 | iex $env:LITELLM_API_KEY='sk-xxxx' & ([scriptblock]::Create((irm https://get.k-sw.org/codex-app/setup-windows.ps1))) -Install [ Zabbix Agent 2 — 모니터링 에이전트 ] (Passive+Active+자동등록) Linux 사내망 (root 필요): curl -fsSL https://get.k-sw.org/zabbix-agent-setup/setup.sh | sudo bash -s -- -s # 비대화형 예: curl -fsSL https://get.k-sw.org/zabbix-agent-setup/setup.sh | sudo bash -s -- -s 192.168.1.50 -H web-01 -M linux --non-interactive 외부 서버 (ZeroTier 터널 + ZeroUI 자동승인, -s 는 서버의 ZeroTier IP): curl -fsSL https://get.k-sw.org/zabbix-agent-setup/setup.sh | sudo bash -s -- \ --zerotier --zeroui --zt-network --zt-api-token -s 10.147.20.1 -H edge-01 -M linux --non-interactive 상태 점검 / 제거: curl -fsSL https://get.k-sw.org/zabbix-agent-setup/status.sh | sudo bash curl -fsSL https://get.k-sw.org/zabbix-agent-setup/uninstall.sh | sudo bash 무결성 검증(선택): curl -fsSL https://get.k-sw.org/SHA256SUMS 문서: https://github.com/KETI-IISRC-AX/Tool_Script