From owner-freebsd-emulation Sun Nov 14 17:53:37 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from europa.dreamscape.com (europa.dreamscape.com [206.64.128.147]) by hub.freebsd.org (Postfix) with ESMTP id 4CFC214BF9 for ; Sun, 14 Nov 1999 17:53:34 -0800 (PST) (envelope-from krentel@dreamscape.com) Received: from dreamscape.com (sA24-p21.dreamscape.com [209.217.202.213]) by europa.dreamscape.com (8.8.5/8.8.4) with ESMTP id UAA26924 for ; Sun, 14 Nov 1999 20:53:22 -0500 (EST) X-Dreamscape-Track-A: sA24-p21.dreamscape.com [209.217.202.213] X-Dreamscape-Track-B: Sun, 14 Nov 1999 20:53:22 -0500 (EST) Received: (from krentel@localhost) by dreamscape.com (8.9.3/8.9.3) id UAA01121 for freebsd-emulation@freebsd.org; Sun, 14 Nov 1999 20:51:45 -0500 (EST) (envelope-from krentel) Date: Sun, 14 Nov 1999 20:51:45 -0500 (EST) From: "Mark W. Krentel" Message-Id: <199911150151.UAA01121@dreamscape.com> To: freebsd-emulation@freebsd.org Subject: unbranded, static linux binaries Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I think the linux emulation has a problem with linux binaries that are unbranded and compiled statically. They run, but only after being branded type Linux. Unbranded, I get "ELF binary type not known." I'm running 3.3-stable as of Nov 7 and the linux_base-6.0 port from www.freebsd.org/~marcel (which works well) and the linux.ko module is installed. a.out is the "hello, world" program compiled statically in Red Hat 6.0. % file a.out a.out: ELF 32-bit LSB executable, Intel 80386, version 1, statically linked, not stripped % ./a.out ELF binary type not known. Use "brandelf" to brand it. Abort trap % brandelf -t Linux a.out % ./a.out Hello, world % Red Hat doesn't use many static binaries, but I've seen the same behavior with ash.static and rpm. Is it difficult to identify the type of a static binary without a brand, or did someone just forget this case? PR? I searched -emulation, -stable and the PR's for "linux", "brand" and "static" but didn't find anything relevant. --Mark Krentel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 15 1:25:54 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id 5337D14F98 for ; Mon, 15 Nov 1999 01:25:51 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id JAA09272 for emulation@FreeBSD.org; Mon, 15 Nov 1999 09:58:21 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Mon, 15 Nov 1999 09:58:10 +0100 From: Marcel Moolenaar Message-ID: <382FCB22.BED6D32E@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <199911150151.UAA01121@dreamscape.com> Subject: Re: unbranded, static linux binaries Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Mark W. Krentel" wrote: > > I think the linux emulation has a problem with linux binaries that are > unbranded and compiled statically. They run, but only after being > branded type Linux. Unbranded, I get "ELF binary type not known." It's actually not the Linuxulator that has the problem. When the kernel loads a binary (say, your a.out "Hello, world" program) it has to figure out what kind of binary it is (eg what ABI). When the binary was linked dynamicly, the kernel uses the information about the dynamic linker to find that out, but static binaries don't have that. There's basicly nothing in a static binary (other than the branding) that tells the kernel if it's FreeBSD, Linux, SCO etc etc. Static FreeBSD binaries have a branding, but static Linux binaries not. So, the kernel (being safe) tells you that. In -current there's a default branding, which means that if a static binary doesn't have a branding, it is assumed to be equal to the default branding. I good feature when used with care! On -stable you simply have to brand the binary first. > % file a.out > a.out: ELF 32-bit LSB executable, Intel 80386, version 1, > statically linked, not stripped [snip] > % brandelf -t Linux a.out Doing ``file a.out'' after branding would give you something like: a.out: ELF 32-bit LSB executable, Intel 80386, version 1 (Linux), statically linked, stripped -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 15 2:55:54 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id 7034515028 for ; Mon, 15 Nov 1999 02:55:51 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id LAA34513 for emulation@FreeBSD.org; Mon, 15 Nov 1999 11:49:36 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Mon, 15 Nov 1999 11:49:29 +0100 From: Marcel Moolenaar Message-ID: <382FE539.8A47B6EF@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <199911150151.UAA01121@dreamscape.com>, <382FCB22.BED6D32E@scc.nl> Subject: Re: unbranded, static linux binaries Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: Errata: > Static FreeBSD binaries have a branding, but static Linux binaries not. All FreeBSD binaries have a branding and not only the static Linux binaries are missing the branding... -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Tue Nov 16 14:23: 0 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from miles.lambdawerks.org (miles.lambdawerks.org [207.115.75.96]) by hub.freebsd.org (Postfix) with ESMTP id BBCEC14E3F for ; Tue, 16 Nov 1999 14:22:53 -0800 (PST) (envelope-from reggie@lambdawerks.org) Received: from localhost (reggie@localhost) by miles.lambdawerks.org (8.9.3/8.9.3) with ESMTP id OAA82752 for ; Tue, 16 Nov 1999 14:22:52 -0800 (PST) (envelope-from reggie@miles.lambdawerks.org) Date: Tue, 16 Nov 1999 14:22:52 -0800 (PST) From: "Reginald S. Perry" To: freebsd-emulation@freebsd.org Subject: RealPlayer G2 for Linux: Initial Report Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi there, I discovered the alpha version of the RealPlayer G2 for Linux. You can download it from this URL:http://www.real.com/products/player/linux.html. There is a version that is NOT an RPM. That version has an automatic installer that seems to work OK. Starting it and pointing it to my favorite local radio station seems to work. The only problem so far is that I get these messages: LINUX: 'ioctl' fd=11, typ=0x44d(M), num=0x76 not implemented LINUX: 'ioctl' fd=9, typ=0x44d(M), num=0x76 not implemented This does not make the app crash and things are still playing. My audio card is an AWE64 Gold and I am using the voxware drivers. Here is the relavent part of the dmesg: sb0 at 0x220 irq 5 drq 1 on isa snd0: sbxvi0 at drq 5 on isa snd0: sbmidi0 at 0x330 on isa snd0: awe0 at 0x620 on isa awe0: opl0 at 0x388 on isa snd0: I sent feedback to the realaudio people suggesting that they make contact with the list. -Reggie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 1:56:11 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id 8499514CFE for ; Wed, 17 Nov 1999 01:56:02 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id KAA79621 for emulation@FreeBSD.org; Wed, 17 Nov 1999 10:48:33 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Wed, 17 Nov 1999 10:48:29 +0100 From: Marcel Moolenaar Message-ID: <383279ED.C4DA4F52@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: Subject: Re: RealPlayer G2 for Linux: Initial Report Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Reginald S. Perry" wrote: > Starting it and pointing it to my favorite local radio station seems to > work. The only problem so far is that I get these messages: > > LINUX: 'ioctl' fd=11, typ=0x44d(M), num=0x76 not implemented > LINUX: 'ioctl' fd=9, typ=0x44d(M), num=0x76 not implemented These are known and already fixed in -current (I assume you run -stable?). > This does not make the app crash and things are still playing. That's one of the reasons why it's not merged to -stable. > I sent feedback to the realaudio people suggesting that they make contact > with the list. That's not needed, because there's nothing wrong with RP G2 in this respect. -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 2: 5:32 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.ftf.dk (mail.ftf.net [129.142.64.2]) by hub.freebsd.org (Postfix) with ESMTP id ED62714C36 for ; Wed, 17 Nov 1999 02:05:27 -0800 (PST) (envelope-from regnauld@ftf.net) Received: from ns.int.ftf.net (fw2.ftf.dk [192.168.1.2] (may be forged)) by mail.ftf.dk (8.9.3/8.9.3/gw-ftf-1.2) with ESMTP id LAA19407; Wed, 17 Nov 1999 11:05:20 +0100 (CET) X-Authentication-Warning: mail.ftf.dk: Host fw2.ftf.dk [192.168.1.2] (may be forged) claimed to be ns.int.ftf.net Received: (from regnauld@localhost) by ns.int.ftf.net (8.9.2/8.9.3) id LAA18770; Wed, 17 Nov 1999 11:18:42 +0100 (CET) Message-ID: <19991117111842.64744@ns.int.ftf.net> Date: Wed, 17 Nov 1999 11:18:42 +0100 From: Phil Regnauld To: Marcel Moolenaar Cc: emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 for Linux: Initial Report References: <383279ED.C4DA4F52@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88e In-Reply-To: <383279ED.C4DA4F52@scc.nl>; from Marcel Moolenaar on Wed, Nov 17, 1999 at 10:48:29AM +0100 X-Operating-System: FreeBSD 3.1-RELEASE i386 Organization: FTFnet Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar writes: > "Reginald S. Perry" wrote: > > > Starting it and pointing it to my favorite local radio station seems to > > work. The only problem so far is that I get these messages: > > > > LINUX: 'ioctl' fd=11, typ=0x44d(M), num=0x76 not implemented > > LINUX: 'ioctl' fd=9, typ=0x44d(M), num=0x76 not implemented > > These are known and already fixed in -current (I assume you run > -stable?). Actually, (on 3.3-R), the frame rate is something like 1 every 4 secs. I unchecked "optimized video display", and it's slightly better, but not much. -- Y et A nother RedHat buys Cygnus L inux T akeover A lliance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 2: 8:40 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id 3E22614C36 for ; Wed, 17 Nov 1999 02:08:37 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id CAA73167; Wed, 17 Nov 1999 02:08:11 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199911171008.CAA73167@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Marcel Moolenaar Cc: emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 for Linux: Initial Report In-reply-to: Your message of "Wed, 17 Nov 1999 10:48:29 +0100." <383279ED.C4DA4F52@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 17 Nov 1999 02:08:10 -0800 From: Amancio Hasty Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > That's not needed, because there's nothing wrong with RP G2 in this > respect. Besides at least one of the FreeBSD multimedia folks went over to Real Networks long time ago : Sujal Patel to head their Server development and Real Audio stuff was first developed on FreeBSD. What we do need is to swamp Real Networks with requests for a FreeBSD player. The Maketing Bean counters just simply add up all the requests or perceived need for a given platform and to decide to support a given platform. -- Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 2:45:23 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 018B114D15 for ; Wed, 17 Nov 1999 02:45:10 -0800 (PST) (envelope-from marcel@scc.nl) Received: from [212.238.132.94] (helo=scones.sup.scc.nl) by post.mail.nl.demon.net with esmtp (Exim 2.12 #1) id 11o2af-0007SR-00; Wed, 17 Nov 1999 10:45:29 +0000 Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.3/8.9.3) with ESMTP id LAA04634; Wed, 17 Nov 1999 11:45:03 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <3832872F.5F47F077@scc.nl> Date: Wed, 17 Nov 1999 11:45:03 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5 i386) X-Accept-Language: en MIME-Version: 1.0 To: Amancio Hasty Cc: emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 for Linux: Initial Report References: <199911171008.CAA73167@rah.star-gate.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Amancio Hasty wrote: > > > > That's not needed, because there's nothing wrong with RP G2 in this > > respect. > > Besides at least one of the FreeBSD multimedia folks went over to > Real Networks long time ago : Sujal Patel to head their Server > development and Real Audio stuff was first developed on FreeBSD. Cool! an infiltrant :-) > What we do need is to swamp Real Networks with requests for > a FreeBSD player. The Maketing Bean counters just simply > add up all the requests or perceived need for a given platform and > to decide to support a given platform. Yes, that would be nice. It certainly helps to make FreeBSD noticed on the desktop playground. Hmm, it makes me wonder what the outcome was of the `design a FreeBSD desktop' contest Jordan organized... Anyway, the more support for Linux, the better our changes eventually. And, emulation is better than nothing :-) -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 3:25: 5 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id CC3E914CAA for ; Wed, 17 Nov 1999 03:25:03 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id DAA73625; Wed, 17 Nov 1999 03:24:37 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199911171124.DAA73625@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Marcel Moolenaar Cc: emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 for Linux: Initial Report In-reply-to: Your message of "Wed, 17 Nov 1999 11:45:03 +0100." <3832872F.5F47F077@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 17 Nov 1999 03:24:37 -0800 From: Amancio Hasty Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Yes, that would be nice. It certainly helps to make FreeBSD noticed on > the desktop playground. Hmm, it makes me wonder what the outcome was of > the `design a FreeBSD desktop' contest Jordan organized... Thats somewhat of a long story . Basically the apps people rather get pay to do apps however since there are no so many kernel positions and it is fun, hackers tend to hack on kernel and related subsystems, linkers, compilers , etc.. everything but apps. Conclusion: By cultural choice the availability of applications on Unix is a joke . Last but not least , your work on emulation is most appreciated!! Best Regards -- Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 4: 5:55 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D18614C3A for ; Wed, 17 Nov 1999 04:05:41 -0800 (PST) (envelope-from marcel@scc.nl) Received: from [212.238.132.94] (helo=scones.sup.scc.nl) by post.mail.nl.demon.net with esmtp (Exim 2.12 #1) id 11o3qS-0008jE-00; Wed, 17 Nov 1999 12:05:52 +0000 Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.3/8.9.3) with ESMTP id NAA07145; Wed, 17 Nov 1999 13:05:30 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <38329A0A.C5124504@scc.nl> Date: Wed, 17 Nov 1999 13:05:30 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5 i386) X-Accept-Language: en MIME-Version: 1.0 To: Amancio Hasty , emulation@freebsd.org Subject: Re: RealPlayer G2 for Linux: Initial Report References: <199911171124.DAA73625@rah.star-gate.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Amancio Hasty wrote: > > > Yes, that would be nice. It certainly helps to make FreeBSD noticed on > > the desktop playground. Hmm, it makes me wonder what the outcome was of > > the `design a FreeBSD desktop' contest Jordan organized... > > Thats somewhat of a long story . Basically the apps people rather get pay to do apps > however since there are no so many kernel positions and it is fun, hackers tend > to hack on kernel and related subsystems, linkers, compilers , etc.. everything > but apps. Ah, the same as with docs :-) It's a pity, because you can write the perfect kernel, but without apps it's basicly useless. The same holds for docs: A piece of software that is properly documented is likely to be used more than one that isn't. > Conclusion: By cultural choice the availability of applications on Unix is a joke . Luckily that's changing. With office-suits and financial packages Unix can be used in the office much more frequent than before. I think that's where the switch-over is going to happen first... > Last but not least , your work on emulation is most appreciated!! Thanks, I'll do my best. I'm sidetracked by the sigset_t change, but I hope to get on with it soon. With luck we may have a Linuxulator on the Alpha before 4.0 gets released... -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 6:55:52 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from thelab.hub.org (nat198.58.mpoweredpc.net [142.177.198.58]) by hub.freebsd.org (Postfix) with ESMTP id C339415261 for ; Wed, 17 Nov 1999 06:55:47 -0800 (PST) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.1) with ESMTP id KAA03012 for ; Wed, 17 Nov 1999 10:56:06 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Wed, 17 Nov 1999 10:56:06 -0400 (AST) From: The Hermit Hacker To: freebsd-emulation@freebsd.org Subject: RealPlayer G2 & Netscape ... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi... I've never tried to use plugins with Netscape before, and am not quite sure where to look...I downloaded the RealPlayer G2 for Linux app today, and it runs perfectly on my computer (FreeBSD 3.3-STABLE), but when I try and connect to http://www.spinner.com and play their Spinner-Lite "software", it says I need a RealPlayer G2 plugin... I looked in my RP-G2 directory, and saw the PlugIns directory there and am at a loss as to how to make use of that. I tried copying it to /usr/local/netscape/plugins, but that doesn't appear to do it... Should I be able to use those Plugin's, and, if so, how? Or do I need to run a Linux version of Netscape in order to accomplish this? Thanks... Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 7: 1:25 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.ftf.dk (mail.ftf.net [129.142.64.2]) by hub.freebsd.org (Postfix) with ESMTP id 8C9D314DEA for ; Wed, 17 Nov 1999 07:01:19 -0800 (PST) (envelope-from regnauld@ftf.net) Received: from ns.int.ftf.net (fw2.ftf.dk [192.168.1.2] (may be forged)) by mail.ftf.dk (8.9.3/8.9.3/gw-ftf-1.2) with ESMTP id QAA16998; Wed, 17 Nov 1999 16:01:06 +0100 (CET) X-Authentication-Warning: mail.ftf.dk: Host fw2.ftf.dk [192.168.1.2] (may be forged) claimed to be ns.int.ftf.net Received: (from regnauld@localhost) by ns.int.ftf.net (8.9.2/8.9.3) id QAA20896; Wed, 17 Nov 1999 16:14:30 +0100 (CET) Message-ID: <19991117161430.32949@ns.int.ftf.net> Date: Wed, 17 Nov 1999 16:14:30 +0100 From: Phil Regnauld To: The Hermit Hacker Cc: freebsd-emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 & Netscape ... References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88e In-Reply-To: ; from The Hermit Hacker on Wed, Nov 17, 1999 at 10:56:06AM -0400 X-Operating-System: FreeBSD 3.1-RELEASE i386 Organization: FTFnet Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Hermit Hacker writes: > > Should I be able to use those Plugin's, and, if so, how? Or do I > need to run a Linux version of Netscape in order to accomplish this? You need the Linux netscape. -- Y et A nother RedHat buys Cygnus L inux T akeover A lliance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 7:17:28 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 5AA0814E09 for ; Wed, 17 Nov 1999 07:17:18 -0800 (PST) (envelope-from pfeifer@dbai.tuwien.ac.at) Received: from markab (markab [128.130.111.33]) by vexpert.dbai.tuwien.ac.at (8.9.1/8.9.1) with ESMTP id QAA21342 for ; Wed, 17 Nov 1999 16:17:17 +0100 (MET) Date: Wed, 17 Nov 1999 16:17:16 +0100 (MET) From: Gerald Pfeifer To: freebsd-emulation@freebsd.org Subject: Acroread 3 and 4 stopped working with 3.3-RELEASE Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We upgraded a couple of boxes from 3.2-RELEASE to 3.3-RELEASE following our proven internal installation guidelines, only to find that both Acroread 3 and 4 die with a Segmentation Fault upon startup. Any ideas? Linux emulation is enabled on these boxes and some simple command-line Linux Tools work just fine. canopus[78]% kldstat Id Refs Address Size Name 1 3 0xc0100000 2775a8 kernel 2 1 0xc0a4b000 e000 linux.ko 3 1 0xc0a5f000 2000 blank_saver.ko canopus[77]:/usr/local/Acrobat4/Reader/intellinux/bin% ldd acroread acroread: libreadcore.so => /usr/local/Acrobat4/Reader/intellinux/lib/libreadcore.so (0x28275000) libAGM.so => /usr/local/Acrobat4/Reader/intellinux/lib/libAGM.so (0x2842f000) libCoolType.so => /usr/local/Acrobat4/Reader/intellinux/lib/libCoolType.so (0x2854f000) libICC.so => /usr/local/Acrobat4/Reader/intellinux/lib/libICC.so (0x28780000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x28827000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x2886a000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28875000) libm.so.5 => /usr/i486-linux-libc5/lib/libm.so.5 (0x2890c000) libdl.so.1 => /lib/libdl.so.1 (0x28914000) libc.so.5 => /usr/i486-linux-libc5/lib/libc.so.5 (0x28917000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x289e0000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x289e8000) libc.so.6 => /lib/libc.so.6 (0x289fc000) ld-linux.so.2 => /lib/ld-linux.so.2 (0x28aa1000) Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 7:28:29 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from thelab.hub.org (nat198.58.mpoweredpc.net [142.177.198.58]) by hub.freebsd.org (Postfix) with ESMTP id EEBAD14DEA for ; Wed, 17 Nov 1999 07:28:24 -0800 (PST) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.1) with ESMTP id LAA03211; Wed, 17 Nov 1999 11:28:18 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Wed, 17 Nov 1999 11:28:17 -0400 (AST) From: The Hermit Hacker To: Phil Regnauld Cc: freebsd-emulation@FreeBSD.ORG Subject: Re: RealPlayer G2 & Netscape ... In-Reply-To: <19991117161430.32949@ns.int.ftf.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a trick to this? Some command that I have to run in order for the plugin's to load? Grab'd the glibc version of 4.7, installed that and it runs. Copied the Plugins/* files from RealPlayer->netscape/plugins and restarted netscape.. Looking at 'help->About Plugins', it still only lists the null plugin and nothing else in that directory. Now, the realplayer does work as a standalone, so I did download the right app there...and the netscape for linux works, so I'm *assuming* that the plugin formats that come with realplayer are compatible with the netscape I'm running... I'm not getting any errors generated by Netscape...so the only thing I'm left with is that there is something I have to do to tell netsape to load those files? :( thanks... On Wed, 17 Nov 1999, Phil Regnauld wrote: > The Hermit Hacker writes: > > > > Should I be able to use those Plugin's, and, if so, how? Or do I > > need to run a Linux version of Netscape in order to accomplish this? > > You need the Linux netscape. > > -- > Y et > A nother > RedHat buys Cygnus L inux > T akeover > A lliance > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-emulation" in the body of the message > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 8:26:19 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id ED5E01527A for ; Wed, 17 Nov 1999 08:26:05 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id QAA63878 for emulation@FreeBSD.org; Wed, 17 Nov 1999 16:56:19 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Wed, 17 Nov 1999 16:56:13 +0100 From: Marcel Moolenaar Message-ID: <3832D01D.3FE30E15@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: Subject: Re: Acroread 3 and 4 stopped working with 3.3-RELEASE Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > > We upgraded a couple of boxes from 3.2-RELEASE to 3.3-RELEASE > following our proven internal installation guidelines, only to > find that both Acroread 3 and 4 die with a Segmentation Fault > upon startup. > > Any ideas? > canopus[77]:/usr/local/Acrobat4/Reader/intellinux/bin% ldd acroread > acroread: [snip] > libc.so.5 => /usr/i486-linux-libc5/lib/libc.so.5 (0x28917000) [snip] > libc.so.6 => /lib/libc.so.6 (0x289fc000) [snip] It's mixing libc5 with glibc2. That can't be good :-) -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 8:56:17 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id D8B2814C30 for ; Wed, 17 Nov 1999 08:56:05 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id RAA71824 for emulation@FreeBSD.org; Wed, 17 Nov 1999 17:31:18 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Wed, 17 Nov 1999 17:31:16 +0100 From: Marcel Moolenaar Message-ID: <3832D854.15A0D7BA@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <19991117161430.32949@ns.int.ftf.net>, Subject: Re: RealPlayer G2 & Netscape ... Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Hermit Hacker wrote: > > Is there a trick to this? Some command that I have to run in order for > the plugin's to load? Grab'd the glibc version of 4.7, installed that and > it runs. Copied the Plugins/* files from RealPlayer->netscape/plugins and > restarted netscape.. That's basicly how plugins are installed. > Looking at 'help->About Plugins', it still only lists the null plugin and > nothing else in that directory. You did copy the files to /usr/local/lib/netscape-linux/plugins, right? > Now, the realplayer does work as a standalone, so I did download the right > app there...and the netscape for linux works, so I'm *assuming* that the > plugin formats that come with realplayer are compatible with the netscape > I'm running... Have you checked their site. Plugin support may be broken for realplayer, because it's still alpha (IIRC). > I'm not getting any errors generated by Netscape...so the only thing I'm > left with is that there is something I have to do to tell netsape to load > those files? :( No, AFAICT you don't need to tell Netscape anything. -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 10:28:18 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 44DC514F1F for ; Wed, 17 Nov 1999 10:28:13 -0800 (PST) (envelope-from pfeifer@dbai.tuwien.ac.at) Received: from markab (markab [128.130.111.33]) by vexpert.dbai.tuwien.ac.at (8.9.1/8.9.1) with ESMTP id TAA26925; Wed, 17 Nov 1999 19:28:13 +0100 (MET) Date: Wed, 17 Nov 1999 19:28:12 +0100 (MET) From: Gerald Pfeifer To: emulation@freebsd.org Cc: Marcel Moolenaar Subject: Re: Acroread 3 and 4 stopped working with 3.3-RELEASE In-Reply-To: <3832D01D.3FE30E15@scc.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17 Nov 1999, Marcel Moolenaar wrote: >> We upgraded a couple of boxes from 3.2-RELEASE to 3.3-RELEASE >> following our proven internal installation guidelines, only to >> find that both Acroread 3 and 4 die with a Segmentation Fault >> canopus[77]:/usr/local/Acrobat4/Reader/intellinux/bin% ldd acroread > [snip] > > libc.so.5 => /usr/i486-linux-libc5/lib/libc.so.5 (0x28917000) > [snip] > > libc.so.6 => /lib/libc.so.6 (0x289fc000) > [snip] > > It's mixing libc5 with glibc2. That can't be good :-) Ouch. :-( What can we do about that? Note that we had no problems with 3.2-RELEASE, apparently something broke? We do have installed linux_base-5.2, is there anything else we'd need? Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 17 10:54:43 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 9DF441530D for ; Wed, 17 Nov 1999 10:54:23 -0800 (PST) (envelope-from marcel@scc.nl) Received: from [212.238.132.94] (helo=scones.sup.scc.nl) by post.mail.nl.demon.net with esmtp (Exim 2.02 #1) id 11oADl-0003rz-00; Wed, 17 Nov 1999 18:54:21 +0000 Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.3/8.9.3) with ESMTP id TAA21791; Wed, 17 Nov 1999 19:54:00 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <3832F9C8.7AFEC4E9@scc.nl> Date: Wed, 17 Nov 1999 19:54:00 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5 i386) X-Accept-Language: en MIME-Version: 1.0 To: Gerald Pfeifer Cc: emulation@freebsd.org Subject: Re: Acroread 3 and 4 stopped working with 3.3-RELEASE References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > > On Wed, 17 Nov 1999, Marcel Moolenaar wrote: > >> We upgraded a couple of boxes from 3.2-RELEASE to 3.3-RELEASE > >> following our proven internal installation guidelines, only to > >> find that both Acroread 3 and 4 die with a Segmentation Fault > >> canopus[77]:/usr/local/Acrobat4/Reader/intellinux/bin% ldd acroread > > [snip] > > > libc.so.5 => /usr/i486-linux-libc5/lib/libc.so.5 (0x28917000) > > [snip] > > > libc.so.6 => /lib/libc.so.6 (0x289fc000) > > [snip] > > > > It's mixing libc5 with glibc2. That can't be good :-) > > Ouch. :-( > > What can we do about that? Note that we had no problems with 3.2-RELEASE, > apparently something broke? I don't quite know. Most of the time such errors are caused by changes that don't seem harmful. Make sure nothing has changed to acroread (even it's directory). Then, make sure you're not mixing FreeBSD libraries with those of Linux (especially X related ones) by checking for a dubious LD_LIBRARY_PATH... > We do have installed linux_base-5.2, is there anything else we'd need? No. If you installed linux_base-5.2 with the upgrade, make sure your /compat/linux was empty before you installed the port. Stale files from linux_lib can mess things up IIRC. -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Nov 18 6:57:45 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 1E6E215426 for ; Thu, 18 Nov 1999 06:57:37 -0800 (PST) (envelope-from pfeifer@dbai.tuwien.ac.at) Received: from markab (markab [128.130.111.33]) by vexpert.dbai.tuwien.ac.at (8.9.1/8.9.1) with ESMTP id PAA12176; Thu, 18 Nov 1999 15:57:34 +0100 (MET) Date: Thu, 18 Nov 1999 15:57:34 +0100 (MET) From: Gerald Pfeifer To: Marcel Moolenaar Cc: emulation@freebsd.org Subject: Re: Acroread 3 and 4 stopped working with 3.3-RELEASE In-Reply-To: <3832F9C8.7AFEC4E9@scc.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17 Nov 1999, Marcel Moolenaar wrote: >>> It's mixing libc5 with glibc2. That can't be good :-) >> What can we do about that? Note that we had no problems with 3.2-RELEASE, >> apparently something broke? > I don't quite know. Most of the time such errors are caused by changes > that don't seem harmful. Make sure nothing has changed to acroread (even > it's directory). Then, make sure you're not mixing FreeBSD libraries > with those of Linux (especially X related ones) by checking for a > dubious LD_LIBRARY_PATH... Bingo! We had a `setenv LD_LIBRARY_PATH /usr/X11R6/lib/` in one of our startup files. Interestingly, this did not matter at all with 2.2.x and 3.1-RELEASE and 3.2-RELEASE, probably a side effect of the new Linux mode? Thanks a lot for your help! BTW, I noticed that http://www.freebsd.org/handbook/linuxemu.html still has lots of information on 2.1-STABLE. Wouldn't it be appropriate to remove that? Do you think it's the case to mention LD_LIBRARY_PATH problems on that page? If so, are you going to submit an update or should I try to come up with something? ;-) Thanks again, Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Nov 18 7:19:57 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 91D26153FE for ; Thu, 18 Nov 1999 07:19:33 -0800 (PST) (envelope-from marcel@scc.nl) Received: from [212.238.132.94] (helo=scones.sup.scc.nl) by post.mail.nl.demon.net with esmtp (Exim 2.12 #1) id 11oTLi-0005Fb-00; Thu, 18 Nov 1999 15:19:50 +0000 Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.3/8.9.3) with ESMTP id QAA78920; Thu, 18 Nov 1999 16:19:29 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <38341901.3C471E20@scc.nl> Date: Thu, 18 Nov 1999 16:19:29 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.2.5 i386) X-Accept-Language: en MIME-Version: 1.0 To: Gerald Pfeifer Cc: emulation@freebsd.org Subject: Re: Acroread 3 and 4 stopped working with 3.3-RELEASE References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > > Bingo! We had a `setenv LD_LIBRARY_PATH /usr/X11R6/lib/` in one of our > startup files. > > Interestingly, this did not matter at all with 2.2.x and 3.1-RELEASE and > 3.2-RELEASE, probably a side effect of the new Linux mode? Yes. It's the correct behaviour, though. If you set LD_LIBRARY_PATH then you always have to keep in mind that it is used by both FreeBSD and Linux mode. Since both the FreeBSD and the Linux mode ldconfig(8) work, you don't need it most of the time. > BTW, I noticed that http://www.freebsd.org/handbook/linuxemu.html still > has lots of information on 2.1-STABLE. Wouldn't it be appropriate to > remove that? I think it would :-) > Do you think it's the case to mention LD_LIBRARY_PATH problems on that > page? If so, are you going to submit an update or should I try to come > up with something? ;-) I think it can be added, since it's quite commonly the cause of breakages. If I wasn't so swamp in other activities, I would have updated the docs myself, but I don't think I have the time for that in the near future. It would be great if you could come up with something. -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sat Nov 20 14:50:51 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from daemon.best.ca (cr262311-a.lngly1.bc.wave.home.com [24.113.173.186]) by hub.freebsd.org (Postfix) with ESMTP id 9F00614C49 for ; Sat, 20 Nov 1999 14:50:48 -0800 (PST) (envelope-from rfurda@best.ca) Received: from winblowz (winblowz [10.254.254.2]) by daemon.best.ca (Postfix) with ESMTP id 47082D721B for ; Sat, 20 Nov 1999 14:50:48 -0800 (PST) Message-Id: <4.2.0.58.19991121144302.00950670@best.ca> X-Sender: riso@best.ca X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Sun, 21 Nov 1999 14:50:50 -0800 To: freebsd-emulation@freebsd.org From: Richard Furda Subject: Linux Real G2 Producer on FreeBSD Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I have a problem running Linux RealProducer 6.0 under FreeBSD. I run FreeBSD 3.3-STABLE (Fri Nov 19 22:59:16 PST 1999) and Linux emulation 5.2 i believe. My sound system consists of ES 1371chip based sound card. Whenever I use Linux G2 RealProducer to just convert .wav => .rm everything is well. When I try to use a sound device (such as /dev/dspX) it core dumps. Below is a command line i run to start a live sound capture. su-2.03# ./realproducer -l 2:1 -o live.rm (IF you're wondering what '-l 2:1' is, this is it: Available devices / formats: (6 total) 0. File format Audio File Reader (extensions *.wav, *.au) 1. File format Quicktime File Reader (extensions *.mov) 2. Linux/OSS audio capture plug-in (/dev/dsp) RealNetworks, Inc. Port 0: Microphone (2:0) Port 1: Line In (2:1) Port 2: CD (2:2) Here is the output: SIGSEGV 11* segmentation violation stackbase=0xbfbfd8d8, stackpointer=0xbfbfd6e0 Full thread dump: "Finalizer thread" (TID:0x2877e210, sys_thread_t:0x294c2e0c, state:CW) prio=1 "Async Garbage Collector" (TID:0x2877e258, sys_thread_t:0x294a1e0c, state:CW) prio=1 "Idle thread" (TID:0x2877e2a0, sys_thread_t:0x29480e0c, state:R) prio=0 "Clock" (TID:0x2877e088, sys_thread_t:0x2945fe0c, state:CW) prio=12 "main" (TID:0x2877e0b0, sys_thread_t:0x81bb900, state:R) prio=5 *current thread* BatchMediaConverter.Encode(BatchMediaConverter.java:1232) CLEncoder.DoEncoding(CLEncoder.java:537) CLEncoder.(CLEncoder.java:122) CLEncoder.main(CLEncoder.java:605) Monitor Cache Dump: BatchMediaConverter@678961736/679342784: owner "main" (0x81bb900, 1 entry) (0x0x294a1e0c): Waiting to be notified: "Async Garbage Collector" (0x294a1e0c) Registered Monitor Dump: Thread queue lock: Name and type hash table lock: String intern lock: JNI pinning lock: JNI global reference lock: BinClass lock: Class loading lock: Java stack lock: Code rewrite lock: Heap lock: Has finalization queue lock: Finalize me queue lock: Waiting to be notified: "Finalizer thread" (0x294c2e0c) Dynamic loading lock: Monitor IO lock: Child death monitor: Event monitor: I/O monitor: Alarm monitor: Waiting to be notified: "Clock" (0x2945fe0c) Monitor registry: owner "main" (0x81bb900, 1 entry) Thread Alarm Q: sys_thread_t 0x294a1e0c [Timeout in 969 ms] Abort trap (core dumped) I'm willing to give an account on my machine to futher pinpoint, possibly fix this problem. I have tested my sound system by playing/recording au's on the system, it all works fine. Thanks, Rich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message