diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-18 16:53:36 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-18 17:00:13 +0100 |
commit | 7c1199828b149746a555f78df47c552dd0aca885 (patch) | |
tree | 64d8b86c4022ab556badfaafc06091dbcf649131 /gnu | |
parent | 573f47a2b06a76d1a74a370ad443178a7041ae34 (diff) | |
download | guix-7c1199828b149746a555f78df47c552dd0aca885.tar.gz guix-7c1199828b149746a555f78df47c552dd0aca885.zip |
system: examples: Update instructions in {bare,devel}-hurd64.tmpl.
* gnu/system/examples/bare-hurd64.tmpl: Remove --machine q35, there seems to
be no longer any need for this. Mention that there is no login prompt.
* gnu/system/examples/devel-hurd64.tmpl: Likewise.
Change-Id: Ib918cff3ca96f2a199869e876b6a75fedb09c983
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/examples/bare-hurd64.tmpl | 3 | ||||
-rw-r--r-- | gnu/system/examples/devel-hurd64.tmpl | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gnu/system/examples/bare-hurd64.tmpl b/gnu/system/examples/bare-hurd64.tmpl index ac17540955..44e2959466 100644 --- a/gnu/system/examples/bare-hurd64.tmpl +++ b/gnu/system/examples/bare-hurd64.tmpl @@ -11,13 +11,14 @@ ;; You may run it like so: ;; ;; guix shell qemu -- qemu-system-x86_64 -m 2048 \ -;; --machine q35 \ ;; --enable-kvm \ ;; --device e1000,netdev=net0 \ ;; --netdev user,id=net0,hostfwd=tcp:127.0.0.1:10022-:2222 \ ;; --snapshot \ ;; --hda /gnu/store/...-disk-image ;; +;; (note that the 64bit Hurd does not seem to show a login prompt) +;; ;; and use it like: ;; ;; ssh -p 10022 root@localhost diff --git a/gnu/system/examples/devel-hurd64.tmpl b/gnu/system/examples/devel-hurd64.tmpl index 337ce77a7c..e40c3eba15 100644 --- a/gnu/system/examples/devel-hurd64.tmpl +++ b/gnu/system/examples/devel-hurd64.tmpl @@ -12,12 +12,13 @@ ;; ;; cp /gnu/store/.../disk-image devel-hurd.img ;; guix shell qemu -- qemu-system-x86_64 -m 4096 \ -;; --machine q35 \ ;; --enable-kvm \ ;; --device e1000,netdev=net0 \ ;; --netdev user,id=net0,hostfwd=tcp:127.0.0.1:10022-:2222 \ ;; --hda devel-hurd.img ;; +;; (note that the 64bit Hurd does not seem to show a login prompt) +;; ;; and use it like: ;; ;; ssh -p 10022 root@localhost |