From owner-freebsd-emulation Sun Feb 14 02:31:06 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10881 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 02:31:06 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from storage.delta.odessa.ua (korona.TM.Odessa.UA [195.66.192.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10867 for ; Sun, 14 Feb 1999 02:30:55 -0800 (PST) (envelope-from vns@delta.odessa.ua) Received: (from vns@localhost) by storage.delta.odessa.ua (8.9.2/8.8.8) id MAA00613 for freebsd-emulation@freebsd.org; Sun, 14 Feb 1999 12:30:23 +0200 (EET) (envelope-from vns) Date: Sun, 14 Feb 1999 12:30:23 +0200 (EET) From: "Vladimir N.Silyaev" Message-Id: <199902141030.MAA00613@storage.delta.odessa.ua> To: freebsd-emulation@FreeBSD.ORG Subject: Linux async I/O Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Anybody can explain status of native Linux async I/O? Some pieces code frome linux 2.0.33 kernel. -------------- cut here ---------------------- case FIOSETOWN: case SIOCSPGRP: err=verify_area(VERIFY_READ,(int *)arg,sizeof(long)); if(err) return err; pid = get_user((int *) arg); /* see inet_fcntl */ if (current->pid != pid && current->pgrp != -pid && !suser()) return -EPERM; sk->proc = pid; return(0); -------------- cut here ---------------------- Linux kernel don't make difference on FIOSETOWN and SIOCSPGRP! But FreeBSD kernel code and Linux emulation subsystem, work sligthly differently (I mean FreeBSD do it with accordance to POSIX standarts). There are in FIOSETOWN call positive value mean the process id, negative is the process group id and SIOCSPGRP vice versa positive is the process group id, and negative is the process id. Our comments? With best regards, V.Silyaev. P.S. It's a main reason why SYBASE SQL SERVER don't working on the current. It's call SIOCSPGRP with value from getpid, without creating process group. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 09:05:27 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14196 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 09:05:27 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14190 for ; Sun, 14 Feb 1999 09:05:26 -0800 (PST) (envelope-from jfieber@fallout.campusview.indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.9.1/8.9.1) with ESMTP id MAA23825; Sun, 14 Feb 1999 12:05:13 -0500 (EST) Date: Sun, 14 Feb 1999 12:05:13 -0500 (EST) From: John Fieber To: "Vladimir N.Silyaev" cc: freebsd-emulation@FreeBSD.ORG Subject: Re: Linux async I/O In-Reply-To: <199902141030.MAA00613@storage.delta.odessa.ua> 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 Sun, 14 Feb 1999, Vladimir N.Silyaev wrote: > Anybody can explain status of native Linux async I/O? It was broken until I started working on sybase. I fixed it (it was a problem in the emulator code) but a post-3.0 change to the native implementation broke it . I haven't had time to investigate. Have a look at what has changed between 3.0 and now for the native implementation. -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 09:51:11 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18523 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 09:51:11 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from storage.delta.odessa.ua (maxa01.TM.Odessa.UA [195.66.192.61]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18510 for ; Sun, 14 Feb 1999 09:51:02 -0800 (PST) (envelope-from vns@delta.odessa.ua) Received: (from vns@localhost) by storage.delta.odessa.ua (8.9.2/8.8.8) id TAA04066; Sun, 14 Feb 1999 19:50:17 +0200 (EET) (envelope-from vns) Date: Sun, 14 Feb 1999 19:50:17 +0200 (EET) From: "Vladimir N.Silyaev" Message-Id: <199902141750.TAA04066@storage.delta.odessa.ua> To: jfieber@indiana.edu, vns@delta.odessa.ua Subject: Re: Linux async I/O Cc: freebsd-emulation@FreeBSD.ORG In-Reply-To: Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > Anybody can explain status of native Linux async I/O? > > It was broken until I started working on sybase. I fixed it (it > was a problem in the emulator code) but a post-3.0 change to the > native implementation broke it . I haven't had time to > investigate. Have a look at what has changed between 3.0 and now > for the native implementation. The changes may be very simple - the unification handling LINUX_SIOCSPGRP as LINUX_FIOSETOWN, how the Linux does. But it broke the POSIX semantic for the linux app's. And I have initial question, what is a same handling FIOSETOWN and SIOSPGRP in linux kernel, the bug, the feature or some also? With best regards, V.Silyaev. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 16:02:25 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28512 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 16:02:25 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA28506 for ; Sun, 14 Feb 1999 16:02:23 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id PAA17586 for ; Sun, 14 Feb 1999 15:54:08 -0800 (PST) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpdd17575; Sun Feb 14 23:54:07 1999 Date: Sun, 14 Feb 1999 15:54:00 -0800 (PST) From: Julian Elischer To: emulation@FreeBSD.ORG Subject: linux emulation can't find ld-linux.so 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 I've seen this mentionned but can't find the reference. Here's a partial log of me trying to run a Linux ELF called xess4. Other linux progs "Just worked " (e.g. the bash in the linux-libs package) julian [phaser.whistle.com] 582 ./xess4 ELF interpreter /compat/linux/lib/ld-linux.so.1 not found Abort [phaser.whistle.com] 583[phaser.whistle.com] 583 ls -la /compat/linux/lib total 8120 drwxr-xr-x 2 root wheel 1024 Feb 14 15:10 ./ drwxr-xr-x 8 root wheel 512 Feb 14 15:13 ../ -rwxr-xr-x 2 root wheel 21367 Oct 25 1996 ld-linux.so.1* -rwxr-xr-x 2 root wheel 21367 Oct 25 1996 ld-linux.so.1.7.14* -rwxr-xr-x 1 root wheel 158747 Oct 24 02:59 ld-linux.so.2* -rwxr-xr-x 2 root wheel 24580 Oct 25 1996 ld.so* -rwxr-xr-x 2 root wheel 24580 Oct 25 1996 ld.so.1.7.14* -rwxr-xr-x 1 root wheel 12927 Oct 24 02:59 libBrokenLocale.so.1* lrwxr-xr-x 1 root wheel 14 Feb 14 15:10 libc.so.5@ -> libc.so.5.4.23 -rwxr-xr-x 1 root wheel 705995 Oct 25 1996 libc.so.5.3.12* -rwxr-xr-x 1 root wheel 1861963 Apr 10 1997 libc.so.5.4.23* -rwxr-xr-x 1 root wheel 3061550 Oct 24 02:59 libc.so.6* -rwxr-xr-x 1 root wheel 181993 Oct 24 02:59 libcrypt.so.1* -rwxr-xr-x 1 root wheel 257548 Oct 24 02:59 libdb.so.2* lrwxr-xr-x 1 root wheel 15 Feb 14 15:10 libdl.so@ -> libdl.so.1.7.14 lrwxr-xr-x 1 root wheel 15 Feb 14 15:10 libdl.so.1@ -> libdl.so.1.7.14 -rwxr-xr-x 1 root wheel 6983 Oct 25 1996 libdl.so.1.7.14* -rwxr-xr-x 1 root wheel 37146 Oct 24 02:59 libdl.so.2* lrwxr-xr-x 1 root wheel 15 Feb 14 15:10 libfbm.so@ -> libfbm.so.1.0.0 lrwxr-xr-x 1 root wheel 15 Feb 14 15:10 libfbm.so.1@ -> libfbm.so.1.0.0 -rwxr-xr-x 1 root wheel 72053 Oct 25 1996 libfbm.so.1.0.0* lrwxr-xr-x 1 root wheel 13 Feb 14 15:10 libm.so.5@ -> libm.so.5.0.8 -rwxr-xr-x 1 root wheel 36084 Oct 25 1996 libm.so.5.0.6* -rwxr-xr-x 1 root wheel 76697 Apr 10 1997 libm.so.5.0.8* -rwxr-xr-x 1 root wheel 413550 Oct 24 02:59 libm.so.6* -rwxr-xr-x 1 root wheel 81462 Oct 24 02:59 libnsl.so.1* -rwxr-xr-x 1 root wheel 111285 Oct 24 02:59 libnss_compat.so.1* -rwxr-xr-x 1 root wheel 141242 Oct 24 02:59 libnss_db.so.1* -rwxr-xr-x 1 root wheel 37261 Oct 24 02:59 libnss_dns.so.1* -rwxr-xr-x 1 root wheel 176059 Oct 24 02:59 libnss_files.so.1* -rwxr-xr-x 1 root wheel 227959 Oct 24 02:59 libnss_nis.so.1* -rwxr-xr-x 1 root wheel 195735 Oct 24 02:59 libpthread.so.0* -rwxr-xr-x 1 root wheel 149537 Oct 24 02:59 libresolv.so.2* lrwxr-xr-x 1 root wheel 19 Feb 14 15:10 libtermcap.so.2@ -> libtermcap.so.2.0.8 -rwxr-xr-x 1 root wheel 11925 Oct 25 1996 libtermcap.so.2.0.8* -rwxr-xr-x 1 root wheel 34782 Oct 24 02:59 libutil.so.1* [phaser.whistle.com] 584 truss ./xess4 ELF interpreter /compat/linux/lib/ld-linux.so.1 not found process exited before exec'ing [phaser.whistle.com] 591 cd /compat/linux/bin [...] [phaser.whistle.com] 605 strings bash|grep ld /lib/ld-linux.so.1 %0dm%0ld.%02ds child setpgid (%d to %d) error %d: %s wait: pid %d is not a child of this shell cannot make a child for process substitution: %s Can't make a child for command substitution: %s set [--abefhknotuvxldHCP] [-o option] [arg ...] The -l flag specifies that `dirs' should not print shorthand versions have a visible scope restricted to that function and its children. which should be separated from it by white space. be signal numbers for which names should be listed. Kill is a shell FILE1 -ot FILE2 True if file1 is older than file2. that would be exec'ed, or nothing if -type wouldn't return `file'. For each NAME, indicate how it would be interpreted if used as a N is not given, all currently active child processes are waited for, could not get current directory: %s set [--abefhknotuvxldHCP] [-o option] [arg ...] %ld%s vi-tilde-expand tilde-expand expand-tilde [phaser.whistle.com] 606 ./bash bash# file ./bash ./bash: ELF 32-bit LSB executable, Intel 80386, version 1, dynamically linked, stripped bash# ls bash# file * bash: ELF 32-bit LSB executable, Intel 80386, version 1, dynamically linked, stripped sh: symbolic link to bash bash# cd ../usr/local/xess bash# ls Connections.xs4 example2.c loancalc.xs4 Examples.xs4 example33 lsexample.xs4 README example33.c mexican.xs4 Xess4 example5 pie.xs4 anova.xs4 example5.c probrpt.xs4 bars.xs4 feedback.xs4 sens_demo.xs4 datafeed.xs4 full_adder.xs4 singraph.xs4 ecg.xs4 goalseek.xs4 spline.xs4 ecgdft.xs4 gunzip xess4 enhreq.xs4 hi-lo.xs4 xess4-help.html example2 histogram.xs4 xess4-messages.txt bash# ./xess4 ELF interpreter /compat/linux/lib/ld-linux.so.1 not found IOT trap/Abort bash# ls -l /compat/linux/lib/ld-linux.so.1 -rwxr-xr-x 2 root wheel 21367 Oct 25 1996 /compat/linux/lib/ld-linux.so.1 bash# file !$ file /compat/linux/lib/ld-linux.so.1 /compat/linux/lib/ld-linux.so.1: ELF 32-bit LSB shared object, Intel 80386, version 1 (Linux), not stripped bash# ldd xess4 /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found not a dynamic executable bash# ls /compat/linux/lib/ld-linux.so.2 /compat/linux/lib/ld-linux.so.2 bash# ls -l !$ ls -l /compat/linux/lib/ld-linux.so.2 -rwxr-xr-x 1 root wheel 158747 Oct 24 02:59 /compat/linux/lib/ld-linux.so.2 bash# (???) bash# ls -la /compat lrwxr-xr-x 1 root wheel 11 Feb 14 15:09 /compat -> /usr/compat bash# bash# ls -l /compat/linux total 14 -rw-r--r-- 1 root wheel 4 Oct 24 02:58 .linux_lib-version -rw-r--r-- 1 200 15 6159 Nov 18 1997 README drwxr-xr-x 2 root wheel 512 Feb 14 15:10 bin drwxr-xr-x 2 root wheel 512 Feb 14 15:10 etc drwxr-xr-x 2 root wheel 1024 Feb 14 15:40 lib drwxr-xr-x 2 root wheel 512 Feb 14 15:10 sbin drwxr-xr-x 10 root wheel 512 Feb 14 15:15 usr drwxr-xr-x 3 root wheel 512 Feb 14 15:11 var bash# Can anyone explain to me what is going on...?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 18:07:49 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA13534 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 18:07:49 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from dingo.cdrom.com (castles146.castles.com [208.214.165.146]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA13528 for ; Sun, 14 Feb 1999 18:07:45 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id SAA07015; Sun, 14 Feb 1999 18:03:18 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902150203.SAA07015@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Julian Elischer cc: emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-reply-to: Your message of "Sun, 14 Feb 1999 15:54:00 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 14 Feb 1999 18:03:17 -0800 From: Mike Smith Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I've seen this mentionned but can't find the reference. > > Here's a partial log of me trying to run a Linux ELF called xess4. > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > julian > > [phaser.whistle.com] 582 ./xess4 > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found ... > bash# ldd xess4 > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > not a dynamic executable ... > Can anyone explain to me what is going on...?? The error message is misleading. You don't have glibc support installed. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 20:32:34 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA28664 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 20:32:34 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA28659 for ; Sun, 14 Feb 1999 20:32:32 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id UAA21638; Sun, 14 Feb 1999 20:22:43 -0800 (PST) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpdS21636; Mon Feb 15 04:22:36 1999 Date: Sun, 14 Feb 1999 20:22:33 -0800 (PST) From: Julian Elischer To: Mike Smith cc: emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-Reply-To: <199902150203.SAA07015@dingo.cdrom.com> 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 and I get if from??? (why isn't it part of the linux package?) On Sun, 14 Feb 1999, Mike Smith wrote: > > > > I've seen this mentionned but can't find the reference. > > > > Here's a partial log of me trying to run a Linux ELF called xess4. > > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > > > julian > > > > [phaser.whistle.com] 582 ./xess4 > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > ... > > bash# ldd xess4 > > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > > not a dynamic executable > ... > > Can anyone explain to me what is going on...?? > > The error message is misleading. You don't have glibc support > installed. > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Feb 14 20:47:11 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA29999 for freebsd-emulation-outgoing; Sun, 14 Feb 1999 20:47:11 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from dingo.cdrom.com (castles146.castles.com [208.214.165.146]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA29994 for ; Sun, 14 Feb 1999 20:47:09 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id UAA07864; Sun, 14 Feb 1999 20:42:36 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902150442.UAA07864@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Julian Elischer cc: Mike Smith , emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-reply-to: Your message of "Sun, 14 Feb 1999 20:22:33 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 14 Feb 1999 20:42:36 -0800 From: Mike Smith Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > and I get if from??? (why isn't it part of the linux package?) It is. You should update. > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > > > > I've seen this mentionned but can't find the reference. > > > > > > Here's a partial log of me trying to run a Linux ELF called xess4. > > > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > > > > > julian > > > > > > [phaser.whistle.com] 582 ./xess4 > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > ... > > > bash# ldd xess4 > > > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > > > not a dynamic executable > > ... > > > Can anyone explain to me what is going on...?? > > > > The error message is misleading. You don't have glibc support > > installed. > > -- > > \\ Sometimes you're ahead, \\ Mike Smith > > \\ sometimes you're behind. \\ mike@smith.net.au > > \\ The race is long, and in the \\ msmith@freebsd.org > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Feb 15 00:32:32 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24632 for freebsd-emulation-outgoing; Mon, 15 Feb 1999 00:32:32 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA24626 for ; Mon, 15 Feb 1999 00:32:30 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id AAA25076; Mon, 15 Feb 1999 00:24:18 -0800 (PST) Received: from s204m82.isp.whistle.com(207.76.204.82) via SMTP by alpo.whistle.com, id smtpdE25073; Mon Feb 15 08:24:09 1999 Date: Mon, 15 Feb 1999 00:23:48 -0800 (PST) From: Julian Elischer X-Sender: julian@s204m82.isp.whistle.com To: Mike Smith cc: emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-Reply-To: <199902150442.UAA07864@dingo.cdrom.com> 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 I did, I only uploaded it today..... On Sun, 14 Feb 1999, Mike Smith wrote: > > and I get if from??? (why isn't it part of the linux package?) > > It is. You should update. > > > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > > > > > > > I've seen this mentionned but can't find the reference. > > > > > > > > Here's a partial log of me trying to run a Linux ELF called xess4. > > > > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > > > > > > > julian > > > > > > > > [phaser.whistle.com] 582 ./xess4 > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > ... > > > > bash# ldd xess4 > > > > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > > > > not a dynamic executable > > > ... > > > > Can anyone explain to me what is going on...?? > > > > > > The error message is misleading. You don't have glibc support > > > installed. > > > -- > > > \\ Sometimes you're ahead, \\ Mike Smith > > > \\ sometimes you're behind. \\ mike@smith.net.au > > > \\ The race is long, and in the \\ msmith@freebsd.org > > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > > > > > > > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Feb 15 00:44:00 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27935 for freebsd-emulation-outgoing; Mon, 15 Feb 1999 00:44:00 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from dingo.cdrom.com (castles343.castles.com [208.214.167.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA27924 for ; Mon, 15 Feb 1999 00:43:56 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id AAA09010; Mon, 15 Feb 1999 00:39:20 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902150839.AAA09010@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Julian Elischer cc: Mike Smith , emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-reply-to: Your message of "Mon, 15 Feb 1999 00:23:48 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 Feb 1999 00:39:19 -0800 From: Mike Smith Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I did, I only uploaded it today..... Then you should have /compat/linux/lib/ld-linux.so.2, but you don't, so you're not up to date. Also make sure that your Linux LKM is up to date, as it needs to recognise the other loader. > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > and I get if from??? (why isn't it part of the linux package?) > > > > It is. You should update. > > > > > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > > > > > > > > > > I've seen this mentionned but can't find the reference. > > > > > > > > > > Here's a partial log of me trying to run a Linux ELF called xess4. > > > > > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > > > > > > > > > julian > > > > > > > > > > [phaser.whistle.com] 582 ./xess4 > > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > > ... > > > > > bash# ldd xess4 > > > > > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > > > > > not a dynamic executable > > > > ... > > > > > Can anyone explain to me what is going on...?? > > > > > > > > The error message is misleading. You don't have glibc support > > > > installed. > > > > -- > > > > \\ Sometimes you're ahead, \\ Mike Smith > > > > \\ sometimes you're behind. \\ mike@smith.net.au > > > > \\ The race is long, and in the \\ msmith@freebsd.org > > > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > > > > > > > > > > > > > -- > > \\ Sometimes you're ahead, \\ Mike Smith > > \\ sometimes you're behind. \\ mike@smith.net.au > > \\ The race is long, and in the \\ msmith@freebsd.org > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Feb 15 01:02:25 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00536 for freebsd-emulation-outgoing; Mon, 15 Feb 1999 01:02:25 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00527 for ; Mon, 15 Feb 1999 01:02:23 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id AAA25610; Mon, 15 Feb 1999 00:58:21 -0800 (PST) Received: from s204m82.isp.whistle.com(207.76.204.82) via SMTP by alpo.whistle.com, id smtpdR25608; Mon Feb 15 08:58:09 1999 Date: Mon, 15 Feb 1999 00:57:48 -0800 (PST) From: Julian Elischer X-Sender: julian@s204m82.isp.whistle.com To: Mike Smith cc: emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-Reply-To: <199902150839.AAA09010@dingo.cdrom.com> 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 If you look at the example I geve, it SHOWS that file existing and the system refusing to look at it. That's the whole point of the question... everything it wants to look at is there.. it just can't see it.. Some programs run, some don't . /compat/linux/lib/ld-linux.so.2 exists. but that message still happens. that is why I was asking... in case it was a known problem.. (e.g. configuration) julian On Mon, 15 Feb 1999, Mike Smith wrote: > > I did, I only uploaded it today..... > > Then you should have /compat/linux/lib/ld-linux.so.2, but you don't, so > you're not up to date. Also make sure that your Linux LKM is up to > date, as it needs to recognise the other loader. The whole system was made yesterday (including kernel and modules) and the linux-libs package loaded this morning. This is NOT a case of being out of date.. I've since heard that xess doesn't run anyhow due to the use of /proc, so the immediate reason for trying has gone away. > > > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > > > and I get if from??? (why isn't it part of the linux package?) > > > > > > It is. You should update. > > > > > > > On Sun, 14 Feb 1999, Mike Smith wrote: > > > > > > > > > > > > > > > > I've seen this mentionned but can't find the reference. > > > > > > > > > > > > Here's a partial log of me trying to run a Linux ELF called xess4. > > > > > > Other linux progs "Just worked " (e.g. the bash in the linux-libs package) > > > > > > > > > > > > julian > > > > > > > > > > > > [phaser.whistle.com] 582 ./xess4 > > > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > > > ... > > > > > > bash# ldd xess4 > > > > > > /compat/linux/usr/bin/ldd: /lib/ld-linux.so.2: not found > > > > > > not a dynamic executable > > > > > ... > > > > > > Can anyone explain to me what is going on...?? > > > > > > > > > > The error message is misleading. You don't have glibc support > > > > > installed. > > > > > -- > > > > > \\ Sometimes you're ahead, \\ Mike Smith > > > > > \\ sometimes you're behind. \\ mike@smith.net.au > > > > > \\ The race is long, and in the \\ msmith@freebsd.org > > > > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > \\ Sometimes you're ahead, \\ Mike Smith > > > \\ sometimes you're behind. \\ mike@smith.net.au > > > \\ The race is long, and in the \\ msmith@freebsd.org > > > \\ end it's only with yourself. \\ msmith@cdrom.com > > > > > > > > > > > > > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Feb 15 07:51:49 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21036 for freebsd-emulation-outgoing; Mon, 15 Feb 1999 07:51:49 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from dingo.cdrom.com (castles332.castles.com [208.214.167.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA21030 for ; Mon, 15 Feb 1999 07:51:47 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id HAA10967; Mon, 15 Feb 1999 07:47:10 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902151547.HAA10967@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Julian Elischer cc: Mike Smith , emulation@FreeBSD.ORG Subject: Re: linux emulation can't find ld-linux.so In-reply-to: Your message of "Mon, 15 Feb 1999 00:57:48 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 Feb 1999 07:47:10 -0800 From: Mike Smith Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > If you look at the example I geve, it SHOWS that file existing > and the system refusing to look at it. That's the whole point of the > question... > everything it wants to look at is there.. it just can't see it.. Sorry; I only saw ld-linux.so.1. > Some programs run, some don't . > /compat/linux/lib/ld-linux.so.2 exists. but that message still happens. > that is why I was asking... in case it was a known problem.. > (e.g. configuration) It's typically caused by your Linux-compatability LKM being sufficiently old that it doesn't recognise ld-linux.so.2 as a valid interpreter. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Tue Feb 16 9:47:34 1999 Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14999 for ; Tue, 16 Feb 1999 09:47:30 -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 SAA16140 for ; Tue, 16 Feb 1999 18:47:20 +0100 (MET) Date: Tue, 16 Feb 1999 18:47:19 +0100 (MET) From: Gerald Pfeifer To: emulation@freebsd.org Subject: Re: Linux collections In-Reply-To: <36B8DAA6.B5BF232E@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 Thu, 4 Feb 1999, Marcel Moolenaar wrote: > True. I've already build a port to test things. It can almost be committed > :-) What happened to this new Linux emulation library package(s)? At least on this list I haven't seen anything about that lately... Gerald -- Gerald Pfeifer (Jerry) Vienna University of Technology 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 Tue Feb 16 12:13:11 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id BA6F9117B1 for ; Tue, 16 Feb 1999 12:13:10 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id MAA03412 for ; Tue, 16 Feb 1999 12:10:43 -0800 (PST) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpdiL3395; Tue Feb 16 20:10:37 1999 Date: Tue, 16 Feb 1999 12:10:19 -0800 (PST) From: Julian Elischer To: emulation@freebsd.org Subject: Re: linux ELF emulation is kinda broken (fwd) 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 Does anyone on this list know what is going wrong.. this is 3 people with this problem now (including me) ---------- Forwarded message ---------- Date: Tue, 16 Feb 1999 20:50:03 +0100 From: Andre Albsmeier To: Julian Elischer Cc: Dima Ruban , committers@FreeBSD.ORG, tmb@rcru.rl.ac.uk Subject: Re: linux ELF emulation is kinda broken On Mon, 15-Feb-1999 at 16:05:32 -0800, Julian Elischer wrote: > AHA I'm not the only one then... me too I have the same experiences under 3.1-RELEASE with the linux matlab lmgrd and the lm_matlab. However, I was told that it works under 3.0 from january, iirc. -Andre > > On Mon, 15 Feb 1999, Dima Ruban wrote: > > > Hey guys! > > > > After I've updated srcs on my local machine, some linux programs stopped > > working. > > > > sivka# ./lmgrd > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > Abort trap > > sivka# strings -a lmgrd | head -5 > > Linux > > /lib/ld-linux.so.1 > > libc.so.5 > > strcpy > > asctime > > sivka# ls -la /compat/linux/lib/ld-linux.so.1 > > -rwxr-xr-x 2 root wheel 21367 Oct 25 1996 /compat/linux/lib/ld-linux.so.1 > > sivka# file lmgrd > > lmgrd: ELF 32-bit LSB executable, Intel 80386, version 1 (Linux), dynamically > > linked, stripped > > sivka# > > > > Am I missing something? > > > > -- dima > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Tue Feb 16 18:22:57 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id DF45A111F5 for ; Tue, 16 Feb 1999 18:22:47 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id SAA18934 for ; Tue, 16 Feb 1999 18:14:08 -0800 (PST) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpdf18930; Wed Feb 17 02:14:04 1999 Date: Tue, 16 Feb 1999 18:13:59 -0800 (PST) From: Julian Elischer To: emulation@freebsd.org Subject: Staroffice 5.0 under 4.0-current (fwd) 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 yet another sounds like the package is severely broken in some way.. julian ---------- Forwarded message ---------- Date: Tue, 16 Feb 1999 16:54:54 -0500 From: Adhir@worldbank.org To: current@FreeBSD.ORG Subject: Staroffice 5.0 under 4.0-current I'm running 4.0-current as of late last week, elf kernel. Everything works great - no problems. I understand that the Linux kernel threads stuff is now in my system by default, so I should be able to download and install StarOffice 5.0. Others on the list have confirmed that it works. I, however, am unable to get it running. The setup program continually complains about not finding the glibc2 libraries, even after I extracted them into /compat/linux/lib and reran /compat/linux/sbin/ldconfig. Any help would be greatly appreciated. FWIW - Linux Wp7, and several others work just fine.... Al To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Tue Feb 16 19:44:34 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 642B410FEC for ; Tue, 16 Feb 1999 19:44:19 -0800 (PST) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id OAA12915; Wed, 17 Feb 1999 14:14:01 +1030 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id OAA10478; Wed, 17 Feb 1999 14:14:00 +1030 (CST) Message-ID: <19990217141400.E515@lemis.com> Date: Wed, 17 Feb 1999 14:14:00 +1030 From: Greg Lehey To: Julian Elischer , emulation@FreeBSD.ORG Cc: "Daniel O'Connor" Subject: Re: Staroffice 5.0 under 4.0-current (fwd) References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Julian Elischer on Tue, Feb 16, 1999 at 06:13:59PM -0800 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tuesday, 16 February 1999 at 18:13:59 -0800, Julian Elischer wrote: > On Tue, 16 Feb 1999 16:54:54 -0500, Adhir@worldbank.org wrote: >> I'm running 4.0-current as of late last week, elf kernel. Everything works >> great - no problems. I understand that the Linux kernel threads stuff is now in >> my system by default, so I should be able to download and install StarOffice >> 5.0. Others on the list have confirmed that it works. >> >> I, however, am unable to get it running. The setup program continually >> complains about not finding the glibc2 libraries, even after I extracted them >> into /compat/linux/lib and reran /compat/linux/sbin/ldconfig. >> >> Any help would be greatly appreciated. >> >> FWIW - Linux Wp7, and several others work just fine.... > > yet another > > sounds like the package is severely broken in some way.. Daniel O'Connor just sent a message to -hackers on this. To quote: > The install was a pain tho, as I had to unpack the setup program > (its a self extracting zip) and rename the libs in it to lower case > and then add an LD_LIBRARY_PATH to point to them, but apart from > that it was OK. Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 1:30:56 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from herring.nlsystems.com (nlsys.demon.co.uk [158.152.125.33]) by hub.freebsd.org (Postfix) with ESMTP id 90E3C10EED for ; Wed, 17 Feb 1999 01:30:53 -0800 (PST) (envelope-from dfr@nlsystems.com) Received: from localhost (dfr@localhost) by herring.nlsystems.com (8.9.2/8.8.8) with ESMTP id JAA61100; Wed, 17 Feb 1999 09:30:35 GMT (envelope-from dfr@nlsystems.com) Date: Wed, 17 Feb 1999 09:30:35 +0000 (GMT) From: Doug Rabson To: Greg Lehey Cc: Julian Elischer , emulation@freebsd.org, "Daniel O'Connor" Subject: Re: Staroffice 5.0 under 4.0-current (fwd) In-Reply-To: <19990217141400.E515@lemis.com> 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 Feb 1999, Greg Lehey wrote: > On Tuesday, 16 February 1999 at 18:13:59 -0800, Julian Elischer wrote: > > On Tue, 16 Feb 1999 16:54:54 -0500, Adhir@worldbank.org wrote: > >> I'm running 4.0-current as of late last week, elf kernel. Everything works > >> great - no problems. I understand that the Linux kernel threads stuff is now in > >> my system by default, so I should be able to download and install StarOffice > >> 5.0. Others on the list have confirmed that it works. > >> > >> I, however, am unable to get it running. The setup program continually > >> complains about not finding the glibc2 libraries, even after I extracted them > >> into /compat/linux/lib and reran /compat/linux/sbin/ldconfig. > >> > >> Any help would be greatly appreciated. > >> > >> FWIW - Linux Wp7, and several others work just fine.... > > > > yet another > > > > sounds like the package is severely broken in some way.. > > Daniel O'Connor just sent a message to -hackers on this. To quote: > > > The install was a pain tho, as I had to unpack the setup program > > (its a self extracting zip) and rename the libs in it to lower case > > and then add an LD_LIBRARY_PATH to point to them, but apart from > > that it was OK. I had to do that too (it expected /tmp to have vast quantities of free space which I didn't have). I used 'unzip -L' to lowercase the filenames. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 442 9037 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 1:56:30 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id C2FF110F03 for ; Wed, 17 Feb 1999 01:56:27 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i429.ztm.euronet.nl [194.134.67.150]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id KAA05717 from for ; Wed, 17 Feb 1999 10:56:26 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id KAA39704 for emulation@FreeBSD.ORG; Wed, 17 Feb 1999 10:34:38 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Wed, 17 Feb 1999 10:34:35 +0100 From: Marcel Moolenaar Message-ID: <36CA8D2B.96DD7B32@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: Subject: Re: linux ELF emulation is kinda broken (fwd) Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Julian Elischer wrote: > > Does anyone on this list know what is going wrong.. > this is 3 people with this problem now (including me) > > > > sivka# ./lmgrd > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > Abort trap Do you have libc5 compatibility installed? If I'm not mistaken, this means that you should have a "/compat/linux/usr/i486-linux-libc5" directory. marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 1:56:31 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 8F59510FA2 for ; Wed, 17 Feb 1999 01:56:28 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i429.ztm.euronet.nl [194.134.67.150]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id KAA05731 from for ; Wed, 17 Feb 1999 10:56:27 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id KAA39384 for emulation@FreeBSD.ORG; Wed, 17 Feb 1999 10:29:48 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Wed, 17 Feb 1999 10:29:45 +0100 From: Marcel Moolenaar Message-ID: <36CA8C08.26B974FF@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <36B8DAA6.B5BF232E@scc.nl>, Subject: Re: Linux collections Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > > On Thu, 4 Feb 1999, Marcel Moolenaar wrote: > > True. I've already build a port to test things. It can almost be committed > > :-) > > What happened to this new Linux emulation library package(s)? > > At least on this list I haven't seen anything about that lately... I'm still working on it. I've decided to not rush things to get them in 3.1-RELEASE. I have a port that installs all packages that also get installed by the Red Hat installer in a minimal installation. I'm now bringing the number of packages down to a minimum. For example, we don't need lilo stuff. Another thing, /compat/linux/etc should not contain "conflicting" files, like services or group. It's just a matter of time... marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 1:56:35 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id A2E0810E94 for ; Wed, 17 Feb 1999 01:56:26 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i429.ztm.euronet.nl [194.134.67.150]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id KAA05708 from for ; Wed, 17 Feb 1999 10:56:25 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id KAA39738 for emulation@FreeBSD.ORG; Wed, 17 Feb 1999 10:37:44 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Wed, 17 Feb 1999 10:37:43 +0100 From: Marcel Moolenaar Message-ID: <36CA8DE7.74EEA333@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: Subject: Re: Staroffice 5.0 under 4.0-current (fwd) Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Julian Elischer wrote: > > yet another > > sounds like the package is severely broken in some way.. > julian > > I, however, am unable to get it running. The setup program continually > complains about not finding the glibc2 libraries, even after I extracted them > into /compat/linux/lib and reran /compat/linux/sbin/ldconfig. Yes. It is incomplete. New ports are being worked on... marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 2: 7: 5 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 6016D10E94 for ; Wed, 17 Feb 1999 02:06:33 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from salomon.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id LAA03689 for ; Wed, 17 Feb 1999 11:06:28 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [146.180.31.23]) by salomon.siemens.de (8.9.3/8.9.3) with ESMTP id LAA21039 for ; Wed, 17 Feb 1999 11:06:30 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.8/8.8.8) id LAA24584 for ; Wed, 17 Feb 1999 11:06:31 +0100 (CET) Date: Wed, 17 Feb 1999 11:06:29 +0100 From: Andre Albsmeier To: Marcel Moolenaar Cc: emulation@FreeBSD.ORG Subject: Re: linux ELF emulation is kinda broken (fwd) Message-ID: <19990217110629.B1780@internal> References: <36CA8D2B.96DD7B32@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <36CA8D2B.96DD7B32@scc.nl>; from Marcel Moolenaar on Wed, Feb 17, 1999 at 10:34:35AM +0100 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17-Feb-1999 at 10:34:35 +0100, Marcel Moolenaar wrote: > Julian Elischer wrote: > > > > Does anyone on this list know what is going wrong.. > > this is 3 people with this problem now (including me) > > > > > > sivka# ./lmgrd > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > > Abort trap > > Do you have libc5 compatibility installed? > If I'm not mistaken, this means that you should have a > "/compat/linux/usr/i486-linux-libc5" directory. I haven't. I have got only the stuff from linux_lib-2.6. If you tell me how to install i486-linux-libc5, I will give it a try... > > marcel > -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 2:16:23 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from midget.dons.net.au (daniel.lnk.telstra.net [139.130.137.70]) by hub.freebsd.org (Postfix) with ESMTP id 26D7E10FAE for ; Wed, 17 Feb 1999 02:16:14 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from guppy.dons.net.au (guppy.dons.net.au [203.31.81.9]) by midget.dons.net.au (8.9.2/8.9.1) with ESMTP id UAA00948; Wed, 17 Feb 1999 20:45:51 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 17 Feb 1999 20:45:48 +1030 (CST) From: "Daniel J. O'Connor" To: Doug Rabson Subject: Re: Staroffice 5.0 under 4.0-current (fwd) Cc: emulation@freebsd.org, Julian Elischer , Greg Lehey Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 17-Feb-99 Doug Rabson wrote: > > > The install was a pain tho, as I had to unpack the setup program > > > (its a self extracting zip) and rename the libs in it to lower case > > > and then add an LD_LIBRARY_PATH to point to them, but apart from > > > that it was OK. > I had to do that too (it expected /tmp to have vast quantities of free > space which I didn't have). I used 'unzip -L' to lowercase the filenames. Hey, the things you learn :) My /tmp has 3Gb free tho :-/ --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 2:46:49 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 9DAA310E5C for ; Wed, 17 Feb 1999 02:46:46 -0800 (PST) (envelope-from marcel@scc.nl) Received: from scones.sup.scc.nl (i338.ztm.euronet.nl [194.134.67.99]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id LAA04597; Wed, 17 Feb 1999 11:46:45 +0100 (MET) Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.2/8.9.1) with ESMTP id LAA42198; Wed, 17 Feb 1999 11:46:43 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <36CA9E12.B10B2F15@scc.nl> Date: Wed, 17 Feb 1999 11:46:42 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Andre Albsmeier Cc: emulation@FreeBSD.ORG Subject: Re: linux ELF emulation is kinda broken (fwd) References: <36CA8D2B.96DD7B32@scc.nl> <19990217110629.B1780@internal> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Albsmeier wrote: > > On Wed, 17-Feb-1999 at 10:34:35 +0100, Marcel Moolenaar wrote: > > Julian Elischer wrote: > > > > > > Does anyone on this list know what is going wrong.. > > > this is 3 people with this problem now (including me) > > > > > > > > sivka# ./lmgrd > > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > > > Abort trap > > > > Do you have libc5 compatibility installed? > > If I'm not mistaken, this means that you should have a > > "/compat/linux/usr/i486-linux-libc5" directory. > > I haven't. I have got only the stuff from linux_lib-2.6. > If you tell me how to install i486-linux-libc5, I will > give it a try... You'll need libc-5.3.12-27.i386.rpm. You can download it from any Red Hat mirror (go to developer information on www.redhat.com). To install the package, build and install the rpm port (/usr/ports/misc/rpm). Use to following commands: mkdir -p /compat/linux/var/local/lib/rpm rpm --root /compat/linux --initdb rpm -i --ignoreos --root /compat/linux --nodeps --noscripts libc-5.3.12-27.i386.rpm If that doesn't solve your problems, try installing ld.so-1.9.5-8.i386.rpm. This last package contains ld-linux.so.1. marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 4:26:39 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 0C12E10E6B for ; Wed, 17 Feb 1999 04:26:35 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i029.ztm.euronet.nl [194.134.112.30]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id NAA01524 from for ; Wed, 17 Feb 1999 13:26:33 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id NAA00784 for emulation@FreeBSD.ORG; Wed, 17 Feb 1999 13:06:24 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Wed, 17 Feb 1999 13:06:23 +0100 From: Marcel Moolenaar Message-ID: <36CAB0BF.4B5B75F6@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: , <36CA8DE7.74EEA333@scc.nl> Subject: Re: Staroffice 5.0 under 4.0-current (fwd) Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > > Julian Elischer wrote: > > > > yet another > > > > sounds like the package is severely broken in some way.. > > julian > > > > I, however, am unable to get it running. The setup program continually > > complains about not finding the glibc2 libraries, even after I extracted them > > into /compat/linux/lib and reran /compat/linux/sbin/ldconfig. > > Yes. It is incomplete. New ports are being worked on... > > marcel Sorry. Ignore my reply (you probably did :-) marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 6:26:54 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id E151910E8A for ; Wed, 17 Feb 1999 06:26:49 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from salomon.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id PAA17765 for ; Wed, 17 Feb 1999 15:26:44 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [146.180.31.23]) by salomon.siemens.de (8.9.3/8.9.3) with ESMTP id PAA03145 for ; Wed, 17 Feb 1999 15:26:47 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.8/8.8.8) id PAA27860 for ; Wed, 17 Feb 1999 15:26:47 +0100 (CET) Date: Wed, 17 Feb 1999 15:26:45 +0100 From: Andre Albsmeier To: Marcel Moolenaar Cc: Andre Albsmeier , emulation@FreeBSD.ORG Subject: Re: linux ELF emulation is kinda broken (fwd) Message-ID: <19990217152645.A1080@internal> References: <36CA8D2B.96DD7B32@scc.nl> <19990217110629.B1780@internal> <36CA9E12.B10B2F15@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <36CA9E12.B10B2F15@scc.nl>; from Marcel Moolenaar on Wed, Feb 17, 1999 at 11:46:42AM +0100 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17-Feb-1999 at 11:46:42 +0100, Marcel Moolenaar wrote: > Andre Albsmeier wrote: > > > > On Wed, 17-Feb-1999 at 10:34:35 +0100, Marcel Moolenaar wrote: > > > Julian Elischer wrote: > > > > > > > > Does anyone on this list know what is going wrong.. > > > > this is 3 people with this problem now (including me) > > > > > > > > > > sivka# ./lmgrd > > > > > > ELF interpreter /compat/linux/lib/ld-linux.so.1 not found > > > > > > Abort trap > > > > > > Do you have libc5 compatibility installed? > > > If I'm not mistaken, this means that you should have a > > > "/compat/linux/usr/i486-linux-libc5" directory. > > > > I haven't. I have got only the stuff from linux_lib-2.6. > > If you tell me how to install i486-linux-libc5, I will > > give it a try... > > You'll need libc-5.3.12-27.i386.rpm. You can download it from any Red Hat > mirror (go to developer information on www.redhat.com). To install the > package, build and install the rpm port (/usr/ports/misc/rpm). Use to > following commands: > > mkdir -p /compat/linux/var/local/lib/rpm > rpm --root /compat/linux --initdb > rpm -i --ignoreos --root /compat/linux --nodeps --noscripts > libc-5.3.12-27.i386.rpm > > If that doesn't solve your problems, try installing ld.so-1.9.5-8.i386.rpm. > This last package contains ld-linux.so.1. Tried libc-5.3.12-27.i386.rpm first and than ld.so-1.9.5-8.i386.rpm as well. Unfortunately, nothing has changed. I had later 113 libs reported by ldconfig; before there had been 91 only... Thanks anyway, -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 6:53:22 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 3DF411103A for ; Wed, 17 Feb 1999 06:53:14 -0800 (PST) (envelope-from marcel@scc.nl) Received: from scones.sup.scc.nl (i034.ztm.euronet.nl [194.134.112.35]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id PAA07382; Wed, 17 Feb 1999 15:53:13 +0100 (MET) Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.2/8.9.1) with ESMTP id PAA07109; Wed, 17 Feb 1999 15:53:09 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <36CAD7D4.B1BE89B7@scc.nl> Date: Wed, 17 Feb 1999 15:53:08 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Andre Albsmeier Cc: emulation@FreeBSD.ORG Subject: Re: linux ELF emulation is kinda broken (fwd) References: <36CA8D2B.96DD7B32@scc.nl> <19990217110629.B1780@internal> <36CA9E12.B10B2F15@scc.nl> <19990217152645.A1080@internal> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Albsmeier wrote: > Tried libc-5.3.12-27.i386.rpm first and than ld.so-1.9.5-8.i386.rpm as well. > Unfortunately, nothing has changed. I had later 113 libs reported by ldconfig; > before there had been 91 only... Hmmm... Can I download the binary (lmgrd), or the distribution containing it, somewhere? Any other application with the same behaviour would probably do as well. I'd like to experiment with it and hope to reproduce the error. That way I can figure out what *precisely* needs to be done. > Thanks anyway, You're not gonna get rid of me that easy :-) marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 7:37:15 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id A792C110C1 for ; Wed, 17 Feb 1999 07:37:12 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from salomon.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id QAA24348 for ; Wed, 17 Feb 1999 16:37:04 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [146.180.31.23]) by salomon.siemens.de (8.9.3/8.9.3) with ESMTP id QAA08907 for ; Wed, 17 Feb 1999 16:37:07 +0100 (MET) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.8/8.8.8) id QAA28567 for ; Wed, 17 Feb 1999 16:37:07 +0100 (CET) Date: Wed, 17 Feb 1999 16:37:03 +0100 From: Andre Albsmeier To: Marcel Moolenaar Cc: Andre Albsmeier , emulation@FreeBSD.ORG Subject: Re: linux ELF emulation is kinda broken (fwd) Message-ID: <19990217163703.C2507@internal> References: <36CA8D2B.96DD7B32@scc.nl> <19990217110629.B1780@internal> <36CA9E12.B10B2F15@scc.nl> <19990217152645.A1080@internal> <36CAD7D4.B1BE89B7@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <36CAD7D4.B1BE89B7@scc.nl>; from Marcel Moolenaar on Wed, Feb 17, 1999 at 03:53:08PM +0100 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17-Feb-1999 at 15:53:08 +0100, Marcel Moolenaar wrote: > Andre Albsmeier wrote: > > > Tried libc-5.3.12-27.i386.rpm first and than ld.so-1.9.5-8.i386.rpm as well. > > Unfortunately, nothing has changed. I had later 113 libs reported by ldconfig; > > before there had been 91 only... > > Hmmm... Can I download the binary (lmgrd), or the distribution containing it, > somewhere? Hmm, it is packed with the matlab for Linux, I don't think we can distribute it as we want. > Any other application with the same behaviour would probably do as well. I'd > like to experiment with it and hope to reproduce the error. That way I can > figure out what *precisely* needs to be done. Someone on -emulation noted that netscape also is affected. I can try this and tell you if I get the same problems. > > > Thanks anyway, > > You're not gonna get rid of me that easy :-) Good :-) > > marcel -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 11: 2:52 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from hotmail.com (law-f116.hotmail.com [209.185.131.179]) by hub.freebsd.org (Postfix) with SMTP id 2842C114C1 for ; Wed, 17 Feb 1999 11:02:51 -0800 (PST) (envelope-from frix_bsd@hotmail.com) Received: (qmail 25080 invoked by uid 0); 17 Feb 1999 19:02:50 -0000 Message-ID: <19990217190250.25079.qmail@hotmail.com> Received: from 155.232.252.15 by www.hotmail.com with HTTP; Wed, 17 Feb 1999 11:02:49 PST X-Originating-IP: [155.232.252.15] From: "Frikkie Thirion" To: freebsd-emulation@freebsd.org Subject: wine with linux emulation Date: Wed, 17 Feb 1999 11:02:49 PST Mime-Version: 1.0 Content-type: text/plain Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all I've just wondered if it would work to compile wine under emulation mode with the linux libc's installed, since wine reports that the native libc of FreeBSD (4.0 current) still doesn't support reentring points the way linux does it. Maybe the autoconfig of wine should just be changed to check differently for thread capable libc's... The need for this spreads forth out of the need to get wine to use FreeBSD threading, as most of the win applications requires this to run successfully. Kind regards Frikkie Thirion ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 12: 9:57 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 5ADA1111C3 for ; Wed, 17 Feb 1999 12:09:49 -0800 (PST) (envelope-from marcel@scc.nl) Received: from scones.sup.scc.nl (i430.ztm.euronet.nl [194.134.67.151]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id VAA19481; Wed, 17 Feb 1999 21:09:47 +0100 (MET) Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.2/8.9.1) with ESMTP id VAA01321; Wed, 17 Feb 1999 21:09:42 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <36CB2206.4F559F87@scc.nl> Date: Wed, 17 Feb 1999 21:09:42 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Andre Albsmeier , emulation@freebsd.org Subject: ELF/VM problem [was: Re: linux ELF emulation is kinda broken (fwd)] References: <19990217163703.C2507@internal> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Albsmeier wrote: > > > Tried libc-5.3.12-27.i386.rpm first and than ld.so-1.9.5-8.i386.rpm as well. > > > Unfortunately, nothing has changed. I had later 113 libs reported by ldconfig; > > > before there had been 91 only... I did some kernel debugging and found out that there is something funny going on when ld-linux.so.1 is about to get loaded. Function elf_load_section() in file /sys/kern/imgact_elf.c fails to load the first program header. More specifically, The very first vm_map_insert() in that function fails with error 22 (EINVAL). objdump gives the following information for ld-linux.so.1: ld-linux.so.1: file format elf32-i386 ld-linux.so.1 architecture: i386, flags 0x00000150: HAS_SYMS, DYNAMIC, D_PAGED start address 0x000009f8 Program Header: LOAD off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**12 filesz 0x00004e76 memsz 0x00004e76 flags r-x LOAD off 0x00004e78 vaddr 0x00005e78 paddr 0x00005e78 align 2**12 filesz 0x00000170 memsz 0x00000190 flags rw- DYNAMIC off 0x00004f78 vaddr 0x00005f78 paddr 0x00005f78 align 2**2 filesz 0x00000070 memsz 0x00000070 flags rw- [snip] I don't think I'm the one that's going to solve this in the near future, so if someone with enough knowledge about ELF and the VM subsystem can help out, lot's of people are going to be very happy :-) marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 13:32:50 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 2D6A1111DC for ; Wed, 17 Feb 1999 13:32:39 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i408.ztm.euronet.nl [194.134.67.129]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id WAA24223 from for ; Wed, 17 Feb 1999 22:32:35 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id WAA00727 for emulation@FreeBSD.ORG; Wed, 17 Feb 1999 22:25:22 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Wed, 17 Feb 1999 22:25:21 +0100 From: Marcel Moolenaar Message-ID: <36CB33C1.F5A4D530@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: , <36CB2206.4F559F87@scc.nl> Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken (fwd)] Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > I did some kernel debugging and found out that there is something funny going > on when ld-linux.so.1 is about to get loaded. Function elf_load_section() in > file /sys/kern/imgact_elf.c fails to load the first program header. More > specifically, The very first vm_map_insert() in that function fails with > error 22 (EINVAL). Correction: vm_map_insert() fails with error code 3 (KERN_NO_SPACE). elf_load_section() fails with error code 22 (EINVAL). marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Feb 17 15:25:53 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 1034A112B8 for ; Wed, 17 Feb 1999 15:25:45 -0800 (PST) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id AAA21980 for emulation@FreeBSD.ORG; Thu, 18 Feb 1999 00:25:43 +0100 (CET) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 2E60A1516; Wed, 17 Feb 1999 23:54:50 +0100 (CET) Date: Wed, 17 Feb 1999 23:54:50 +0100 From: Ollivier Robert To: emulation@FreeBSD.ORG Subject: Re: Staroffice 5.0 under 4.0-current (fwd) Message-ID: <19990217235450.A6887@keltia.freenix.fr> Mail-Followup-To: emulation@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Daniel J. O'Connor on Wed, Feb 17, 1999 at 08:45:48PM +1030 X-Operating-System: FreeBSD 3.0-CURRENT/ELF ctm#5026 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Daniel J. O'Connor: > My /tmp has 3Gb free tho :-/ That's 1 GB too much. I found that when I tried to install one version of StarOffice from a 3.5 GB FS, it told I didn't had enough space so I had to copy it first on a smaller FS... That was with SO4sp3. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #69: Mon Jan 18 02:02:12 CET 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 2:32:54 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id BC82E10E63 for ; Thu, 18 Feb 1999 02:32:39 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i054.ztm.euronet.nl [194.134.112.55]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id LAA08367 from for ; Thu, 18 Feb 1999 11:32:35 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id LAA60363 for emulation@FreeBSD.ORG; Thu, 18 Feb 1999 11:31:22 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Thu, 18 Feb 1999 11:31:22 +0100 From: Marcel Moolenaar Message-ID: <36CBEBFA.AE53E0A5@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: New RPM port Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I've submitted a PR for a new port of RPM version 2.5.5 (PR 10137). The point is that I'm not quite happy about it and I want your opinion (relax, you don't have to *do* anything :-) Background: When you want to install packages under /compat/linux with the current RPM port in such a way that the Red Hat RPM version (native Linux) can work with it, you'll need the following options when running RPM: --ignoreos The package is for Linux, RPM runs on FreeBSD; don't complain, --root /compat/linux Tell RPM that we want any processing cdroot'ed here, --dbpath /var/lib/rpm The RPM port uses /var/local/lib/rpm for its database. The new port uses /var/lib/rpm by default and, obviously, differs from the current port. I think it's an incomplete or an "you-almost-made-it" solution. I'll give you 3 options and hope you want to give me your opinions (btw, there isn't anything you can win :-) 1. Keep the new port as it is and stop whining, 2. Make the new port behave as the current port, ie, make dbpath default to /var/local/lib/rpm, 3. Patch up RPM so that the above mentioned options (--ignoreos, --root and --dbpath) don't need to be specified. In other words make the new RPM port behave as the Linux version. marcel ps: Yes, this has something to do with the new linux port :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 9:30: 8 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 256A711825 for ; Thu, 18 Feb 1999 09:29:49 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i217.ztm.euronet.nl [194.134.67.18]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id SAA13791 from for ; Thu, 18 Feb 1999 18:29:48 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id SAA02196 for emulation@FreeBSD.ORG; Thu, 18 Feb 1999 18:15:24 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Thu, 18 Feb 1999 18:15:20 +0100 From: Marcel Moolenaar Message-ID: <36CC4AA8.F7488014@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: , <36CB33C1.F5A4D530@scc.nl> Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken (fwd)] Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > > Marcel Moolenaar wrote: > > I did some kernel debugging and found out that there is something funny going > > on when ld-linux.so.1 is about to get loaded. Function elf_load_section() in > > file /sys/kern/imgact_elf.c fails to load the first program header. More > > specifically, The very first vm_map_insert() in that function fails with > > error 22 (EINVAL). > > Correction: > vm_map_insert() fails with error code 3 (KERN_NO_SPACE). > elf_load_section() fails with error code 22 (EINVAL). It seems that the interpreter is loaded at address 0x08000000. The VM map already has an entry with start address 0x08000000 (see objdump). As a result vm_map_insert() returns KERN_NO_SPACE. Recent changes in the ELF image code hardwired the loading of the interpreter to that address (for i386 that is). objdump: lmgrd: file format elf32-i386 lmgrd architecture: i386, flags 0x00000112: EXEC_P, HAS_SYMS, D_PAGED start address 0x08001ac0 Program Header: PHDR off 0x00000034 vaddr 0x08000034 paddr 0x00000000 align 2**2 filesz 0x000000a0 memsz 0x000000a0 flags r-x INTERP off 0x000000d4 vaddr 0x080000d4 paddr 0x00000000 align 2**0 filesz 0x00000013 memsz 0x00000013 flags r-- LOAD off 0x00000000 vaddr 0x08000000 paddr 0x00000000 align 2**12 filesz 0x000343c2 memsz 0x000343c2 flags r-x LOAD off 0x000343c8 vaddr 0x080353c8 paddr 0x00000000 align 2**12 filesz 0x00000f8c memsz 0x000080b8 flags rw- DYNAMIC off 0x000352c4 vaddr 0x080362c4 paddr 0x00000000 align 2**2 filesz 0x00000090 memsz 0x00000090 flags rw- marcel cc: jdp@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 Feb 18 10:50: 1 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id A1722117D4 for ; Thu, 18 Feb 1999 10:49:58 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.1/8.9.1) with ESMTP id KAA18712; Thu, 18 Feb 1999 10:49:57 -0800 (PST) (envelope-from jdp@polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.9.2/8.9.1) id KAA73170; Thu, 18 Feb 1999 10:49:57 -0800 (PST) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <36CC4AA8.F7488014@scc.nl> Date: Thu, 18 Feb 1999 10:49:57 -0800 (PST) Organization: Polstra & Co., Inc. From: John Polstra To: Marcel Moolenaar Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken Cc: emulation@freebsd.org Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > > It seems that the interpreter is loaded at address 0x08000000. The VM map > already has an entry with start address 0x08000000 (see objdump). As a result > vm_map_insert() returns KERN_NO_SPACE. Recent changes in the ELF image code > hardwired the loading of the interpreter to that address (for i386 that is). Augh! Major bummer. It's already in 3.1. :-( I can't fix it until tonight at the earliest, because of work pressures. If you'll replace the definition of ELF_RTLD_ADDR in "src/sys/i386/include/elf.h" with the definition from "src/sys/alpha/include/elf.h", that should fix it. If anybody gets a chance to try this, please let me know whether it works. Thanks, John --- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Nobody ever went broke underestimating the taste of the American public." -- H. L. Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 11:45:54 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 0FED41193A for ; Thu, 18 Feb 1999 11:45:47 -0800 (PST) (envelope-from marcel@scc.nl) Received: from scones.sup.scc.nl (i115.ztm.euronet.nl [194.134.112.76]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id UAA08739; Thu, 18 Feb 1999 20:45:45 +0100 (MET) Received: from scc.nl (scones.sup.scc.nl [192.168.2.4]) by scones.sup.scc.nl (8.9.2/8.9.1) with ESMTP id UAA00722; Thu, 18 Feb 1999 20:45:43 +0100 (CET) (envelope-from marcel@scc.nl) Message-ID: <36CC6DE7.D49C3F5B@scc.nl> Date: Thu, 18 Feb 1999 20:45:43 +0100 From: Marcel Moolenaar Organization: SCC vof X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: John Polstra Cc: emulation@freebsd.org Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Polstra wrote: > > I can't fix it until tonight at the earliest, because of work > pressures. If you'll replace the definition of ELF_RTLD_ADDR > in "src/sys/i386/include/elf.h" with the definition from > "src/sys/alpha/include/elf.h", that should fix it. > > If anybody gets a chance to try this, please let me know whether it > works. It solves the problem. Thanks. marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 12: 3:23 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from nebraska.utcorp.com (unknown [146.145.135.14]) by hub.freebsd.org (Postfix) with ESMTP id A45E911A79 for ; Thu, 18 Feb 1999 12:02:46 -0800 (PST) (envelope-from kseel@utcorp.com) Received: from utcorp.com (x-kspc.utcorp.com [146.145.135.17]) by nebraska.utcorp.com (8.8.5/8.8.5) with ESMTP id TAA07091; Thu, 18 Feb 1999 19:43:15 -0500 (EST) Message-ID: <36CC7204.A152046C@utcorp.com> Date: Thu, 18 Feb 1999 15:03:16 -0500 From: User Kseel X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: emulation@FreeBSD.ORG Cc: linda@scriptics.com Subject: glibc2? Content-Type: multipart/alternative; boundary="------------12C9FDF99F33D058967C43E7" Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------12C9FDF99F33D058967C43E7 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I am trying to run scriptics tclpro for linux under the linux emulator and I get core dumps. The marketing literature on their web site says : Supported platforms for TclPro Windows 95, NT 4.0 (Intel) Solaris 2.5, 2.6 (SPARC) HP-UX 10.20 Linux (Intel/glibc2, e.g., Red Hat 5.0+, SuSE 5.3+) SGI IRIX 6.2 to 6.5 Do I need to do something special for glibc2? Is this possible? -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -- Benjamin Franklin, 1759 --------------12C9FDF99F33D058967C43E7 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit  
 I am trying to run scriptics tclpro for linux under the linux emulator and I get core
dumps.  The marketing literature on their web site says :

Supported platforms for TclPro
                         Windows 95, NT 4.0 (Intel)
                         Solaris 2.5, 2.6 (SPARC)
                         HP-UX 10.20
                         Linux (Intel/glibc2, e.g., Red Hat 5.0+, SuSE 5.3+)
                         SGI IRIX 6.2 to 6.5

 Do I need to do something special for glibc2? Is this possible?

-- 
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
                -- Benjamin Franklin, 1759
  --------------12C9FDF99F33D058967C43E7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 12:27:50 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 3D70410E7A for ; Thu, 18 Feb 1999 12:27:46 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.1/8.9.1) with ESMTP id MAA19146; Thu, 18 Feb 1999 12:27:46 -0800 (PST) (envelope-from jdp@polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.9.2/8.9.1) id MAA79960; Thu, 18 Feb 1999 12:27:45 -0800 (PST) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <36CC6DE7.D49C3F5B@scc.nl> Date: Thu, 18 Feb 1999 12:27:45 -0800 (PST) Organization: Polstra & Co., Inc. From: John Polstra To: Marcel Moolenaar Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken Cc: emulation@freebsd.org Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > It solves the problem. Thanks. Thank you for locating the problem and testing the fix. I should be able to commit it tonight. John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Feb 18 13:38: 4 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id DD85F11AEA for ; Thu, 18 Feb 1999 13:37:41 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i018.ztm.euronet.nl [194.134.112.19]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id WAA26956 from for ; Thu, 18 Feb 1999 22:37:39 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id WAA04075 for emulation@FreeBSD.ORG; Thu, 18 Feb 1999 22:20:31 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Thu, 18 Feb 1999 22:20:28 +0100 From: Marcel Moolenaar Message-ID: <36CC841C.3487D111@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <36CC7204.A152046C@utcorp.com> Subject: Re: glibc2? Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org User Kseel wrote: > I am trying to run scriptics tclpro for linux under the linux emulator and > I get core dumps. You need to be more specific than that. We need to know more about your setup in order to give any helpful hints. marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Feb 19 3:39:51 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mescalero.asd1.rl.ac.uk (mescalero.asd1.rl.ac.uk [130.246.170.11]) by hub.freebsd.org (Postfix) with ESMTP id 0BC771141D for ; Fri, 19 Feb 1999 03:37:59 -0800 (PST) (envelope-from tmb@mescalero.asd1.rl.ac.uk) Received: (from tmb@localhost) by mescalero.asd1.rl.ac.uk (8.9.2/8.9.1) id LAA00999; Fri, 19 Feb 1999 11:37:34 GMT (envelope-from tmb) Date: Fri, 19 Feb 1999 11:37:33 +0000 From: Mark Blackman To: John Polstra Cc: freebsd-emulation@freebsd.org, andre.albsmeier@mchp.siemens.de Subject: Re: ELF/VM problem [was: Re: linux ELF emulation is kinda broken Message-ID: <19990219113733.A963@rcru.rl.ac.uk> References: <36CC6DE7.D49C3F5B@scc.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: ; from John Polstra on Thu, Feb 18, 1999 at 12:27:45PM -0800 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just for the record, I can confirm that a cvsup of Feb-19-99 1100 GMT fixes the problem with the matlab 'lmgrd' that appeared when I upgraded from 3.0-CURRENT to 3.1-STABLE. (i.e. ELF interpreter /compat/linux/lib/ld-linux.so.1 not found) On Thu, Feb 18, 1999 at 12:27:45PM -0800, John Polstra wrote: > Marcel Moolenaar wrote: > > > It solves the problem. Thanks. > > Thank you for locating the problem and testing the fix. I should be > able to commit it tonight. > > John > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-emulation" in the body of the message > -- Mark Blackman Radar Group Radio Communications Research Unit Rutherford Appleton Laboratory Chilton, Didcot Oxon OX11 0QX, United Kingdom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Feb 19 10:37: 7 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from nebraska.utcorp.com (unknown [146.145.135.14]) by hub.freebsd.org (Postfix) with ESMTP id 95843114D1 for ; Fri, 19 Feb 1999 10:37:01 -0800 (PST) (envelope-from kseel@utcorp.com) Received: from utcorp.com (x-kspc.utcorp.com [146.145.135.17]) by nebraska.utcorp.com (8.8.5/8.8.5) with ESMTP id SAA05383 for ; Fri, 19 Feb 1999 18:17:26 -0500 (EST) Message-ID: <36CDAF76.AD7148D0@utcorp.com> Date: Fri, 19 Feb 1999 13:37:43 -0500 From: User Kseel X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: emulation@freebsd.org Subject: Re: glibc2? References: <36CC7204.A152046C@utcorp.com> <36CC841C.3487D111@scc.nl> <36CD7298.ADBDD89C@utcorp.com> <36CD8524.891E3A61@scc.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > User Kseel wrote: > > > > > I am trying to run scriptics tclpro for linux under the linux emulator > > > > and I get core dumps. > > > > > It's a 2.2.7 system with the linux emulation emulation package installed. > > What other details should I get? I really don't understand the particulars > > of the linux emulator, I know there is a redirected file heirarchy > > (/compat/linux). > > I also know that I am running a linux version of wordperfect, flawlessly > > (so far). > > There is one situation I know of that could cause coredumps on 2.2.7 and 3.0 > systems. It has to do with using the setgroups and getgroups system call. You > can ktrace tclpro and see, by using linux_kdump from the ports collection, > whether tclpro uses getgroups/setgroups. > > marcel What might this indicate? 11746 pwlin CALL mprotect(0x28249000,0x8e44,0x7) 11746 pwlin RET mprotect 0 11746 pwlin CALL linux_open(0xefbfd71c,0,0) 11746 pwlin NAMI "/compat/linux/usr/lib/libc.so.6" 11746 pwlin NAMI "/usr/lib/libc.so.6" 11746 pwlin RET linux_open JUSTRETURN 11746 pwlin CALL linux_open(0xefbfd71c,0,0) 11746 pwlin NAMI "/compat/linux/usr/lib/ld-linux.so.2" 11746 pwlin NAMI "/usr/lib/ld-linux.so.2" 11746 pwlin RET linux_open JUSTRETURN 11746 pwlin CALL linux_open(0xefbfd71c,0,0) 11746 pwlin NAMI "/compat/linux/usr/lib/libc.so.6" 11746 pwlin NAMI "/usr/lib/libc.so.6" 11746 pwlin RET linux_open JUSTRETURN 11746 pwlin CALL linux_open(0xefbfd71c,0,0) 11746 pwlin NAMI "/compat/linux/usr/lib/ld-linux.so.2" 11746 pwlin NAMI "/usr/lib/ld-linux.so.2" 11746 pwlin RET linux_open JUSTRETURN 11746 pwlin CALL munmap(0x2810a000,0x1371) 11746 pwlin RET munmap 0 11746 pwlin CALL mprotect(0x8048000,0xc0ecf,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL mprotect(0x2810c000,0x12e8,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL mprotect(0x2810f000,0x1742f,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL mprotect(0x28128000,0x771e5,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL mprotect(0x281a5000,0x9046d,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL mprotect(0x28249000,0x8e44,0x5) 11746 pwlin RET mprotect 0 11746 pwlin CALL getpid 11746 pwlin RET getpid 11746/0x2de2 11746 pwlin PSIG SIGSEGV SIG_DFL 11746 pwlin NAMI "pwlin.core" -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -- Benjamin Franklin, 1759 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Feb 19 14:36:16 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id DE81911804 for ; Fri, 19 Feb 1999 14:36:12 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: from scones.sup.scc.nl (i428.ztm.euronet.nl [194.134.67.149]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id XAA04318 from for ; Fri, 19 Feb 1999 23:36:11 +0100 (MET) Received: (from daemon@localhost) by scones.sup.scc.nl (8.9.2/8.9.1) id XAA48957 for emulation@FreeBSD.ORG; Fri, 19 Feb 1999 23:11:35 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for emulation@FreeBSD.ORG (emulation@FreeBSD.ORG) To: emulation@FreeBSD.ORG Date: Fri, 19 Feb 1999 23:11:34 +0100 From: Marcel Moolenaar Message-ID: <36CDE196.28ABCCF6@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <36CC7204.A152046C@utcorp.com>, <36CDAF76.AD7148D0@utcorp.com> Subject: Re: glibc2? Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org User Kseel wrote: > What might this indicate? > > 11746 pwlin CALL linux_open(0xefbfd71c,0,0) > 11746 pwlin NAMI "/compat/linux/usr/lib/libc.so.6" > 11746 pwlin NAMI "/usr/lib/libc.so.6" > 11746 pwlin RET linux_open JUSTRETURN libc.so.6 resided in [/compat/linux]/lib... > 11746 pwlin CALL linux_open(0xefbfd71c,0,0) > 11746 pwlin NAMI "/compat/linux/usr/lib/ld-linux.so.2" > 11746 pwlin NAMI "/usr/lib/ld-linux.so.2" > 11746 pwlin RET linux_open JUSTRETURN ld-linux.so.2 resides in [/compat/linux]/lib... Why is it looking for those libraries in any other directory than /lib? Did you post the beginning of the ktrace? Are you sure tclpro is properly configured? How did the install go? The ktrace itself didn't show a specific reason for coredumping. marcel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sat Feb 20 22:15: 7 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from roma.coe.ufrj.br (roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (Postfix) with ESMTP id 633511147E for ; Sat, 20 Feb 1999 22:15:00 -0800 (PST) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id AAA15238 for emulation@freebsd.org; Sun, 21 Feb 1999 00:49:45 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199902210349.AAA15238@roma.coe.ufrj.br> Subject: Oracle Emulation status To: emulation@freebsd.org Date: Sun, 21 Feb 1999 00:49:45 -0300 (EST) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi everybody, Sometime ago somebody said Oracle did not work in FreeBSD. I'd like to know its current (er, 3.1-stable) status. If both work, which one would be better to use, Linux or SCO version ? Thanks in advance, Jonny -- Joao Carlos Mendes Luis M.Sc. Student jonny@jonny.eng.br Universidade Federal do Rio de Janeiro "This .sig is not meant to be politically correct." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message