From 6763336b2f12c1f6bbd65da82aea5100f4a57267 Mon Sep 17 00:00:00 2001 From: syui Date: Sun, 9 Nov 2025 17:41:19 +0900 Subject: [PATCH] fix --- my-blog/content/posts/2025-11-08-aishell.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/my-blog/content/posts/2025-11-08-aishell.md b/my-blog/content/posts/2025-11-08-aishell.md index f3922fc..d148e85 100644 --- a/my-blog/content/posts/2025-11-08-aishell.md +++ b/my-blog/content/posts/2025-11-08-aishell.md @@ -30,13 +30,18 @@ $ claude --dangerously-skip-permissions しかし、このようなプロセスではdockerやsystemd-nspawnでテストできません。また、aiosは、dockerなどでも使うことも想定しているため、containerの自動起動などは難しい。したがって、現時点では、user:aiを本番環境のcontainer内として、テストしてみます。 -machinectlを使って、aios-imgを作成し、実行します。 +aios-imgを作成し、machinectlで実行します。 ```sh $ ./build.zsh $ cp -rf ./root.x86_64 /var/lib/machines/aios $ machinectl start aios $ machinectl shell aios + +# リカバリ +$ machinectl stop aios +$ machinectl remove aios +$ cp -rf ./root.x86_64 /var/lib/machines/aios ``` ```sh