summaryrefslogtreecommitdiff
path: root/hurd/running/debian/package_troubleshooting.mdwn
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-01-10 23:11:55 +0100
committerThomas Schwinge <thomas@codesourcery.com>2013-01-10 23:11:55 +0100
commit1153b375b1478560c68071677a45b6b7accd90d0 (patch)
treec99c0664fd2ece637c014f5809c03692e1d038b2 /hurd/running/debian/package_troubleshooting.mdwn
parent74083dc7ace2c4cc14f1034d2673ff8bea34d419 (diff)
Remove some obsolete stuff.
Diffstat (limited to 'hurd/running/debian/package_troubleshooting.mdwn')
-rw-r--r--hurd/running/debian/package_troubleshooting.mdwn30
1 files changed, 0 insertions, 30 deletions
diff --git a/hurd/running/debian/package_troubleshooting.mdwn b/hurd/running/debian/package_troubleshooting.mdwn
index c6236c2f..476039e0 100644
--- a/hurd/running/debian/package_troubleshooting.mdwn
+++ b/hurd/running/debian/package_troubleshooting.mdwn
@@ -1,16 +1,5 @@
This page reports known Hurd-specific bugs, quirks and corresponding solutions and workarounds with Debian GNU/Hurd package installation and working.
-## <a name="Dpkg_wants_external_programs_"> Dpkg wants external programs? </a>
-
-It may be that dpkg wants external GNU/Linux-specific programs that it can't found or that just don't exist on the Hurd. You can trick dpkg by copying and running this script as root:
-
- #!/bin/bash
- ln -s /sbin/ldconfig /bin/ldconfig
- ln -s /bin/true /bin/update-rc.d
- ln -s /bin/true /bin/start-stop-daemon
- ln -s /bin/true /bin/install-info
- ln -s /bin/true /bin/update-alternatives
-
## <a name="SSH_not_working"> </a> SSH not working
You must set up the [[translator/random]] device first.
@@ -28,22 +17,3 @@ This is related to issues in Pango.
* Run as root:
pango-querymodules > /etc/pango/pango.modules
-
-## <a name="Installing_a_package_seems_to_ha"> Installing a package seems to hang forever </a>
-
-There are various reasons for this.
-
-* If interrupting the process with ctrl-c gives a line like that:
-
- File "/usr/lib/python2.4/os.py", line 723, in urandom
- bytes += read(_urandomfd, n - len(bytes))
- KeyboardInterrupt
-
-it is the random device fault. Follow the [[translator/random]] guide. If you already did, try _anyway_ to detach and reattach the translators.
-
-## <a name="Cannot_compile_even_trivial_C_pr"> Cannot compile even trivial C programs </a>
-
-Check to have installed the following:
-
- apt-get install build-essential
- apt-get install libc-dev