Skip to content

Commit d60ea0e

Browse files
author
박성모
committed
docs: add 'pull + reinstall on another computer' recipe
Document the standard workflow for syncing a second machine that already ran ./openclaw install once: git pull (or self-update), reset the failed step marker, re-run install, verify with doctor. Added to README under '🔄 업데이트 흐름' and to TROUBLESHOOTING under './openclaw install 단계별 실패 가이드'.
1 parent 19edd0f commit d60ea0e

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,18 @@ sed -i '' '/^docker_start=done$/d' ~/.openclaw-mgr/state
301301

302302
launchd 스케줄이 안 돌 때의 진단은 [TROUBLESHOOTING — 자동 업데이트 스케줄](docs/TROUBLESHOOTING.md#자동-업데이트-스케줄) 참조.
303303

304+
### 다른 컴퓨터에서 최신 받고 재설치 (이미 한 번 설치한 머신)
305+
306+
```bash
307+
cd ~/DEV/openclawAgent/openclaw-workspace # 첫 설치 시 사용한 경로
308+
git pull origin main # 또는 ./openclaw-mgr/openclaw self-update
309+
sed -i '' '/^compose_up=done$/d' ~/.openclaw-mgr/state # 막힌 단계 마커만 리셋
310+
cd openclaw-mgr && ./openclaw install # 끝난 단계는 자동 스킵
311+
./openclaw doctor # 정상 동작 확인
312+
```
313+
314+
처음부터 다시 깨끗이 하려면 `rm ~/.openclaw-mgr/state``./openclaw install`. 단계별 실패 가이드는 [TROUBLESHOOTING — 다른 컴퓨터에서 최신 받고 재설치](docs/TROUBLESHOOTING.md#다른-컴퓨터에서-최신-받고-재설치-한-번에) 참조.
315+
304316
---
305317

306318
## 🤖 모델 관리 — 내 로컬 Ollama 모델 그대로 쓰기

docs/TROUBLESHOOTING.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,40 @@ sed -i '' '/^docker_start=done$/d' ~/.openclaw-mgr/state
375375
./openclaw install
376376
```
377377

378+
### 다른 컴퓨터에서 최신 받고 재설치 (한 번에)
379+
380+
집/회사 컴퓨터 등 **이미 한 번 설치된 머신** 에서 워크스페이스 코드를 최신화한 뒤 재설치하는 표준 절차:
381+
382+
```bash
383+
# 1) 워크스페이스로 이동 (이전 설치 시 사용한 경로 그대로)
384+
cd ~/DEV/openclawAgent/openclaw-workspace
385+
386+
# 2) 최신 코드 받기 (둘 중 하나)
387+
git pull origin main
388+
# 또는
389+
./openclaw-mgr/openclaw self-update
390+
391+
# 3) 실패한 단계만 다시 돌리도록 마커 리셋
392+
# (예: compose_up 에서 죽었으면 compose_up 만 지움)
393+
sed -i '' '/^compose_up=done$/d' ~/.openclaw-mgr/state
394+
395+
# 4) 재설치 — 끝난 단계는 자동 스킵, 실패 단계부터 재개
396+
cd openclaw-mgr
397+
./openclaw install
398+
399+
# 5) 정상 동작 확인
400+
./openclaw doctor
401+
```
402+
403+
처음부터 다시 깨끗이 하려면 마커 전체를 지워도 안전합니다 (각 단계가 자체적으로 "이미 됨" 을 감지):
404+
405+
```bash
406+
rm ~/.openclaw-mgr/state
407+
./openclaw install
408+
```
409+
410+
저장소 자체를 처음 받는 새 컴퓨터의 경우는 [docs/QUICKSTART-ko.md](QUICKSTART-ko.md) 참조.
411+
378412
각 단계 실패의 일반적 원인은 [README — 설치 중 멈춘 시](../README.md#설치-중-멈춘-시--단계별-장애-가이드) 표 참조. 아래는 **자동 해결이 안 되는 단계**를 자세히 다룹니다.
379413

380414
### compose 보안 경고 — `/var/run/docker.sock`

0 commit comments

Comments
 (0)