diff options
author | MutoShack <MutoShack@web> | 2019-03-20 07:27:50 +0100 |
---|---|---|
committer | GNU Hurd web pages engine <web-hurd@gnu.org> | 2019-03-20 07:27:50 +0100 |
commit | 56e953baa30e48b58fe4b0d0471a2709d344b73c (patch) | |
tree | dfebbf4690e10e6a8dce2256e68d5ab7250861d9 /hurd | |
parent | 6426d6911e4b847a324ea5aea562ef784ef5c99f (diff) |
Fix a missused hash character
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/running/debian/qemu_image.mdwn | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/hurd/running/debian/qemu_image.mdwn b/hurd/running/debian/qemu_image.mdwn index 6748d3d7..6fc4d0c6 100644 --- a/hurd/running/debian/qemu_image.mdwn +++ b/hurd/running/debian/qemu_image.mdwn @@ -14,19 +14,30 @@ as <https://cdimage.debian.org/cdimage/ports/latest/hurd-i386/debian-hurd.img.ta Usage: -* Install qemu-kvm via your distribution's package manager (it might just be named qemu) +Install qemu-kvm via your distribution's package manager (it might just be named qemu) + * Download the debian image: - `$ wget https://cdimage.debian.org/cdimage/ports/latest/hurd-i386/debian-hurd.img.tar.gz` +<!-- Codeblocks nested in lists are garbage in Markdown. The only clean way to do this is by adding a comment after every list entry. Sorry about this!--> + + $ wget https://cdimage.debian.org/cdimage/ports/latest/hurd-i386/debian-hurd.img.tar.gz + * Unpack it: - `$ tar -xz < debian-hurd.img.tar.gz` +<!-- Yes, another comment. I can leave these empty but then again I can fill them. --> + + $ tar -xz < debian-hurd.img.tar.gz + * Run it: - `$ kvm -m 1G -drive cache=writeback,file=$(echo debian-hurd-*.img) -net user,hostfwd=tcp:127.0.0.1:2222-:22` - # Optionally use --curses to keep your keyboard layout. If need be modprobe kvm_amd, kvm intel and kvm to get kvm support (which is much, much faster). -* Login as root (the root password is empty) -* set up a root password with passwd +<!-- A world in which nobody washes their dishes is a dishtopia --> + + $ kvm -m 1G -drive cache=writeback,file=$(echo debian-hurd-*.img) -net user,hostfwd=tcp:127.0.0.1:2222-:22 + #Optionally use --curses to keep your keyboard layout. If need be modprobe kvm_amd, kvm intel and kvm to get kvm support (which is much, much faster). + +Login as root (the root password is empty) + +Set up a root password with passwd Please also read the README file: <https://cdimage.debian.org/cdimage/ports/latest/hurd-i386/README> |