diff options
-rw-r--r-- | hurd/porting/system_api_limitations.mdwn | 2 | ||||
-rw-r--r-- | hurd/running/debian/after_install.mdwn | 33 |
2 files changed, 3 insertions, 32 deletions
diff --git a/hurd/porting/system_api_limitations.mdwn b/hurd/porting/system_api_limitations.mdwn index 2fac456e..82327dde 100644 --- a/hurd/porting/system_api_limitations.mdwn +++ b/hurd/porting/system_api_limitations.mdwn @@ -22,8 +22,6 @@ These are the known system API limits that have porting implications. **_[\#47998](http://bugs.debian.org/47998): `msgget` IPC not implemented_** -**_[\#184565](http://bugs.debian.org/184565): libc0.3: missing shm\* functions (from `<sys/shm.h>`)_**<br />**breaks:** cdrtools<br />**error:** warning: shm\* is not implemented and will always fail - **_[[nice() doesn't work|open_issues/nice_vs_mach_thread_priorities]]_**. **_[\#187391](http://bugs.debian.org/187391): libc0.3-dev: `sockaddr_un.sun_path` can't be assigned a `const char *` when compiling with g++_**<br />**breaks:** fam, gail<br />**status:** maybe this should be in [[PortingIssues]] (see _long_ bug log) diff --git a/hurd/running/debian/after_install.mdwn b/hurd/running/debian/after_install.mdwn index 62fd3574..36c37281 100644 --- a/hurd/running/debian/after_install.mdwn +++ b/hurd/running/debian/after_install.mdwn @@ -42,10 +42,10 @@ you. See [[GRUB]]'s page for this. # Setup `apt-get` Sometimes getting `apt-get` to work is not straightforward. Good mirrors to -put in `/etc/apt/sources.list` are (as of Jan 2007): +put in `/etc/apt/sources.list` are: - deb http://mirrors.kernel.org/debian unstable main contrib - deb-src http://mirrors.kernel.org/debian unstable main contrib + deb http://ftp.debian.org/debian unstable main contrib + deb-src http://ftp.debian.org/debian unstable main contrib deb http://ftp.debian-ports.org/debian unreleased main deb-src http://ftp.debian-ports.org/debian unreleased main @@ -75,38 +75,11 @@ You can also call the Hurd console manually with the proper arguments: console -d vga -d pc_kbd --repeat=kbd -d pc_mouse --repeat=mouse \ -d generic_speaker -c /dev/vcs - cd /dev - ln -s cons/kbd . - ln -s cons/mouse . - # [[Hurd/DebianXorg]] You first must have setup the virtual console. See above. -Assuming you've installed WindowMaker and have tried running `startx` already: - - [/etc/xorg.conf] - - Section "Module" - # Load "dri" - # Load "speedo" - . - . - . - EndSection - - Section "InputDevice" - Identifier "Configured Mouse" - Driver "mouse" - Option "CorePointer" - Option "Device" "/dev/mouse" - Option "Protocol" "osmouse" - EndSection - -Make sure not to have the `Emulate3Buttons` and `ZAxisMapping` settings set, as -they lead to problems with e.g. dragging windows around. - # What about package XYZ? See if you can find a useful tip in [[package_troubleshooting]]. |