aboutsummaryrefslogtreecommitdiff
path: root/content/en/docs/adyxax.org/services/nethack.md
diff options
context:
space:
mode:
authorJulien Dessaux2021-03-11 18:53:14 +0100
committerJulien Dessaux2021-03-11 18:53:14 +0100
commit60d3abc6ecdc21b4ab921d34a55b4af48690f55a (patch)
tree1ee530dd7367d743fb619f341100e41df22e1985 /content/en/docs/adyxax.org/services/nethack.md
parentUpdated docsy theme (diff)
downloadwww-60d3abc6ecdc21b4ab921d34a55b4af48690f55a.tar.gz
www-60d3abc6ecdc21b4ab921d34a55b4af48690f55a.tar.bz2
www-60d3abc6ecdc21b4ab921d34a55b4af48690f55a.zip
Rewrote the whole website to get rid on a heavy theme
Diffstat (limited to 'content/en/docs/adyxax.org/services/nethack.md')
-rw-r--r--content/en/docs/adyxax.org/services/nethack.md56
1 files changed, 0 insertions, 56 deletions
diff --git a/content/en/docs/adyxax.org/services/nethack.md b/content/en/docs/adyxax.org/services/nethack.md
deleted file mode 100644
index e9aa7a7..0000000
--- a/content/en/docs/adyxax.org/services/nethack.md
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: "nethack"
-linkTitle: "nethack"
-weight: 1
-description: >
- nethack
----
-
-## dgamelaunch
-
-TODO
-
-{{< highlight sh >}}
-groupadd -r games
-useradd -r -g games nethack
-git clone
-{{< /highlight >}}
-
-## nethack
-
-TODO
-
-{{< highlight sh >}}
-{{< /highlight >}}
-
-## scores script
-
-TODO
-
-{{< highlight sh >}}
-{{< /highlight >}}
-
-## copying shared libraries
-
-{{< highlight sh >}}
-cd /opt/nethack
-for i in `ls bin`; do for l in `ldd bin/$i | tail -n +1 | cut -d'>' -f2 | awk '{print $1}'`; do if [ -f $l ]; then echo $l; cp $l lib64/; fi; done; done
-for l in `ldd dgamelaunch | tail -n +1 | cut -d'>' -f2 | awk '{print $1}'`; do if [ -f $l ]; then echo $l; cp $l lib64/; fi; done
-for l in `ldd nethack-3.7.0-r1/games/nethack | tail -n +1 | cut -d'>' -f2 | awk '{print $1}'`; do if [ -f $l ]; then echo $l; cp $l lib64/; fi; done
-{{< /highlight >}}
-
-## making device nodes
-
-TODO! For now I mount all of /dev in the chroot :
-{{< highlight sh >}}
-#mknod -m 666 dev/ptmx c 5 2
-mount -R /dev /opt/nethack/dev
-{{< /highlight >}}
-
-## debugging
-
-{{< highlight sh >}}
-gdb chroot
-run --userspec=nethack:games /opt/nethack/ /dgamelaunch
-{{< /highlight >}}
-