From owner-freebsd-current Thu Jul 25 16:10:24 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA08838 for current-outgoing; Thu, 25 Jul 1996 16:10:24 -0700 (PDT) Received: from central.picker.com (central.picker.com [144.54.31.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id QAA08829 for ; Thu, 25 Jul 1996 16:10:22 -0700 (PDT) Received: from ct.picker.com by central.picker.com with smtp (Smail3.1.28.1 #3) id m0ujZGQ-0004rrC; Thu, 25 Jul 96 18:52 EDT Received: from elmer.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA02836; Thu, 25 Jul 96 18:51:15 EDT Received: by elmer.picker.com (SMI-8.6/SMI-SVR4) id SAA15868; Thu, 25 Jul 1996 18:46:31 -0400 From: rhh@ct.picker.com (Randall Hopper) Message-Id: <199607252246.SAA15868@elmer.picker.com> Subject: Re: Linux Emu. To: wangel@wgrobez1.remote.louisville.edu (Gary Roberts) Date: Thu, 25 Jul 1996 18:46:31 -0400 (EDT) Cc: current@freebsd.org In-Reply-To: from "Gary Roberts" at Jul 21, 96 06:21:05 am Reply-To: rhh@ct.picker.com Organization: Picker International, CT Division X-Mailer: ELM [version 2.4 PL24 PGP3 *ALPHA*] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Gary Roberts: >Well, I'll try that I suppose .... I was looking forward to getting Quake >.91 or 1.01 to work. It starts to load but then core dumps ... I was I'd be interested in where to get this. >wondering if I need to do some kernel tweeking or what not ? ... Also, if >it helps, Doom doesn't work either -- it loads, then bombs out with a >broken pipe and when trying to reload, it yells about shared mem or >something. Yes, when it dumps it leaves shared memory allocated. I hit the broken pipe problem too but did something to get around it. If it helps, here's my /opt/bin/doom script: #!/bin/sh # # Launch doom, and clean up shared memory when it's done (RHH - 6/1/96) # DOOMDIR=/opt/pkg/doom-1.8 musserver_pid=99999 DOOMWADDIR=$DOOMDIR PATH=$DOOMDIR:/usr/bin:$PATH export DOOMWADDIR PATH cd $DOOMDIR /opt/pkg/doom-1.8/musserver.fbsd -f -u 0 & musserver_pid=$! joystick4doom /dev/joy0 Control Space -strafe & #trap "kill -9 $musserver_pid; ipcrm -m `ipcs | grep ^m | cut -f2 -d" "` > /dev/null 2>&1; trap 0; exit" 0 1 2 3 4 5 6 7 8 10 12 13 14 15 trap "ipcrm -m `ipcs | grep ^m | cut -f2 -d" "` > /dev/null 2>&1; trap 0; exit" 0 1 2 3 4 5 6 7 8 10 12 13 14 15 xdoom-mus joystick4doom -k Should give you doom with sound effects and a joystick. With Amancio's musserver port, I get the intro music, but the musserver core dumps after that, while the rest of the game and sound effects go on. I'm running a Sound Blaster 32 (16) with stock 2.2-960612-SNAP sound drivers, so you might get better music results with other combinations. By the way, the URL with the joystick and music server: ftp://rah.star-gate.com/pub Randall Hopper rhh@ct.picker.com