From 45243279184b635fe1712810f3bda60c95720b56 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Tue, 23 Mar 2021 17:01:38 +0100 Subject: Reworked the adyxax.org docs articles --- content/docs/adyxax.org/services/nethack.md | 56 ----------------------------- 1 file changed, 56 deletions(-) delete mode 100644 content/docs/adyxax.org/services/nethack.md (limited to 'content/docs/adyxax.org/services/nethack.md') diff --git a/content/docs/adyxax.org/services/nethack.md b/content/docs/adyxax.org/services/nethack.md deleted file mode 100644 index e9aa7a7..0000000 --- a/content/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 >}} - -- cgit v1.2.3