diff options
author | Justus Winter <justus@gnupg.org> | 2017-03-03 13:13:32 +0100 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-03-03 13:13:32 +0100 |
commit | 1c581cbea30bf59f1fc6483b2311ac2a396680ef (patch) | |
tree | fc0ebfa5aaf2eb74b94298bb951f778e8b343b8d /contributing.mdwn | |
parent | 33c67870f1f860b80d76932467a01f2fbb9ee47c (diff) | |
parent | 7a4a1d57599d86519baf71b7e9726ecbcb94bcd8 (diff) | |
download | web-1c581cbea30bf59f1fc6483b2311ac2a396680ef.tar.gz web-1c581cbea30bf59f1fc6483b2311ac2a396680ef.tar.bz2 web-1c581cbea30bf59f1fc6483b2311ac2a396680ef.zip |
Merge branch 'master' of darnassus:~hurd-web/hurd-web
Diffstat (limited to 'contributing.mdwn')
-rw-r--r-- | contributing.mdwn | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contributing.mdwn b/contributing.mdwn index 957dff46..8eb2db90 100644 --- a/contributing.mdwn +++ b/contributing.mdwn @@ -113,6 +113,7 @@ lookups|hurd/interface/dir_lookup]] work. * Fix chmod on fifos: mkfifo foo ; sudo chmod g+w foo * Strengthen httpfs: it should append '/' to URL automatically, it should not fallback index.html itself, etc. probably a lot more small easy issues. * Fix `O_NOATIME`, see <https://buildd.debian.org/status/fetch.php?pkg=borgbackup&arch=hurd-i386&ver=1.0.2-1&stamp=1460838100> +* Add a /dev/rtc device <a name="porting"></a> ## Porting Packages @@ -180,14 +181,16 @@ I'll have to think about it some more. * Install qemu-kvm via your distros packages. * Download the [qemu image](http://people.debian.org/~sthibault/hurd-i386/debian-hurd.img.tar.gz): `wget http://people.debian.org/~sthibault/hurd-i386/debian-hurd.img.tar.gz` * Unpack it: `tar xf debian-hurd.img.tar.gz` -* Run it: `kvm -m 512 -drive cache=writeback,file=debian-hurd.img` # 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). See also: [kvm FAQ](http://www.linux-kvm.org/page/FAQ). +* Run it: `kvm -m 512 -drive cache=writeback,file=debian-hurd.img -redir tcp: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). See also: [kvm FAQ](http://www.linux-kvm.org/page/FAQ). * login as root +* set a root password with `passwd` * `apt-get update` * `apt-get install -y git mercurial emacs vim` * `apt-get build-dep -y hurd gnumach` * `git clone git://git.sv.gnu.org/hurd/hurd.git` * `git clone git://git.sv.gnu.org/hurd/gnumach.git` * `git clone git://git.sv.gnu.org/hurd/incubator.git` +* You can connect through ssh with `ssh root@localhost -p 2222` * Get more from the [repo list](http://git.savannah.gnu.org/cgit/hurd/). * Read the docs on these pages. * Start hacking. |