You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 단계별 실패 가이드'.
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -301,6 +301,18 @@ sed -i '' '/^docker_start=done$/d' ~/.openclaw-mgr/state
301
301
302
302
launchd 스케줄이 안 돌 때의 진단은 [TROUBLESHOOTING — 자동 업데이트 스케줄](docs/TROUBLESHOOTING.md#자동-업데이트-스케줄) 참조.
303
303
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#다른-컴퓨터에서-최신-받고-재설치-한-번에) 참조.
0 commit comments