From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 03:02:38 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1EF9106564A for ; Sun, 7 Dec 2008 03:02:38 +0000 (UTC) (envelope-from anthony@codemonkey.ws) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.31]) by mx1.freebsd.org (Postfix) with ESMTP id 7138F8FC0A for ; Sun, 7 Dec 2008 03:02:38 +0000 (UTC) (envelope-from anthony@codemonkey.ws) Received: by yw-out-2324.google.com with SMTP id 9so267881ywe.13 for ; Sat, 06 Dec 2008 19:02:37 -0800 (PST) Received: by 10.100.31.10 with SMTP id e10mr840733ane.12.1228617135303; Sat, 06 Dec 2008 18:32:15 -0800 (PST) Received: from ?192.168.0.103? (cpe-24-28-0-183.austin.res.rr.com [24.28.0.183]) by mx.google.com with ESMTPS id d38sm1660844and.23.2008.12.06.18.32.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 06 Dec 2008 18:32:14 -0800 (PST) Message-ID: <493B35AB.1050301@codemonkey.ws> Date: Sat, 06 Dec 2008 20:32:11 -0600 From: Anthony Liguori User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: qemu-devel@nongnu.org, freebsd-emulation@FreeBSD.org References: <20081206220906.GA34210@saturn.kn-bremen.de> In-Reply-To: <20081206220906.GA34210@saturn.kn-bremen.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: [Qemu-devel] testing qemu svn r5890 on FreeBSD - virtio, and a patch enabling -clock dynticks X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 03:02:38 -0000 Juergen Lock wrote: > Hi! > > Jung-uk Kim sent me a patch to enable -clock dynticks on FreeBSD hosts > (the configure check is mine, only FreeBSD >= 7.x has posix timers that > this uses), I'll append it below. > > This is the experimental qemu-devel port update I used: > http://people.freebsd.org/~nox/qemu/qemu-devel-20081206.patch > As already mentioned I had to add a missing `#include ' > (files/patch-qemu-common.h), as also posted here: > http://lists.gnu.org/archive/html/qemu-devel/2008-12/msg00216.html > > I only had one (type of) guest that actually had virtio drivers (three > versions of sidux isos), and the speed difference between virtio-blk and > scsi was small. (I tested dd bs=64k count=500 /dev/null and > similar with a raw image, both scsi and virtio were always faster than ide.) > I noted tho that even virtio there was not half as fast as ide (and scsi) > on KNOPPIX_V5.3.1DVD-2008-03-26-EN.iso, so either overhead has increased > greatly from 2.6.24.4 to 2.6.26, or this has something to do with > the sidux kernel using CONFIG_NO_HZ and the Knoppix one (apparently) not > and qemu (possibly, I also suspected that with the usb slowness) not > handling CONFIG_NO_HZ guests too well. scsi on a FreeBSD > 7.1-BETA-i386-livefs.iso guest btw was even yet (noticeably) faster than > on the Knoppix iso. It will be interesting how virtio-net will fare once > that gets committed... > I don't have much experience with perf benchmarking and TCG. TCG may has interesting side effects. For instance, it's more expensive to do things in the guest instead of the host so the emulation overhead of IDE/SCSI shouldn't matter much. A straight dd test is not the best test BTW. If you want to measure performance, you should use O_DIRECT in the guest (iflag=direct) and probably O_DIRECT in the host (cache=none). Regards, Anthony Liguori > Here comes the dynticks patch (files/patch-dynticks), it assumes that > NetBSD either always has posix timers, or -lrt is not needed otherwise > there. (FreeBSD before 7.x doesn't have -lrt.) > > --- qemu/Makefile.target.orig 2008-11-21 11:49:37.000000000 -0500 > +++ qemu/Makefile.target 2008-12-03 15:46:24.000000000 -0500 > @@ -598,7 +598,7 @@ > OBJS+=block-raw-posix.o > endif > > -LIBS+=-lz > +LIBS += $(RTLIBS) -lz > ifdef CONFIG_ALSA > LIBS += -lasound > endif > Index: qemu/configure > @@ -99,6 +99,7 @@ > fmod_lib="" > fmod_inc="" > oss_lib="" > +rt_lib="" > vnc_tls="yes" > bsd="no" > linux="no" > @@ -157,13 +158,15 @@ > if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then > kqemu="yes" > fi > +rt_lib="-lrt" > ;; > NetBSD) > bsd="yes" > audio_drv_list="oss" > audio_possible_drivers="oss sdl esd" > oss_lib="-lossaudio" > -aio_lib="-lrt -lpthread" > +aio_lib="-lpthread" > +rt_lib="-lrt" > ;; > OpenBSD) > bsd="yes" > @@ -231,6 +234,7 @@ > kqemu="yes" > audio_possible_drivers="$audio_possible_drivers fmod" > fi > +rt_lib="-lrt" > ;; > esac > > @@ -1053,6 +1057,20 @@ > iovec=yes > fi > > +########################################## > +# posix timer probe > +cat > $TMPC < +#include > +int main(void) { timer_create(CLOCK_REALTIME, (struct sigevent *)NULL, (timer_t *)NULL); return 0; } > +EOF > +posixtimer=no > +if $cc $ARCH_CFLAGS -o $TMPE $TMPC $rt_lib 2> /dev/null ; then > + posixtimer=yes > +else > + rt_lib="" > +fi > +RTLIBS="$rt_lib" > + > # Check if tools are available to build documentation. > if [ "x$NOPORTDOCS" != "x" -o -x "`which texi2html 2>/dev/null`" ] && \ > [ -x "`which pod2man 2>/dev/null`" ]; then > @@ -1174,6 +1192,7 @@ > echo "LDFLAGS=$LDFLAGS" >> $config_mak > echo "EXESUF=$EXESUF" >> $config_mak > echo "AIOLIBS=$AIOLIBS" >> $config_mak > +echo "RTLIBS=$RTLIBS" >> $config_mak > case "$cpu" in > i386) > echo "ARCH=i386" >> $config_mak > @@ -1425,6 +1444,9 @@ > if test "$iovec" = "yes" ; then > echo "#define HAVE_IOVEC 1" >> $config_h > fi > +if test "$posixtimer" = "yes" ; then > + echo "#define HAVE_POSIX_TIMER 1" >> $config_h > +fi > > # XXX: suppress that > if [ "$bsd" = "yes" ] ; then > Index: qemu/vl.c > @@ -918,12 +918,16 @@ > static int unix_start_timer(struct qemu_alarm_timer *t); > static void unix_stop_timer(struct qemu_alarm_timer *t); > > -#ifdef __linux__ > +#ifdef HAVE_POSIX_TIMER > > static int dynticks_start_timer(struct qemu_alarm_timer *t); > static void dynticks_stop_timer(struct qemu_alarm_timer *t); > static void dynticks_rearm_timer(struct qemu_alarm_timer *t); > > +#endif > + > +#ifdef __linux__ > + > static int hpet_start_timer(struct qemu_alarm_timer *t); > static void hpet_stop_timer(struct qemu_alarm_timer *t); > > @@ -1001,9 +1005,11 @@ > > static struct qemu_alarm_timer alarm_timers[] = { > #ifndef _WIN32 > -#ifdef __linux__ > +#ifdef HAVE_POSIX_TIMER > {"dynticks", ALARM_FLAG_DYNTICKS, dynticks_start_timer, > dynticks_stop_timer, dynticks_rearm_timer, NULL}, > +#endif > +#ifdef __linux__ > /* HPET - if available - is preferred */ > {"hpet", 0, hpet_start_timer, hpet_stop_timer, NULL, NULL}, > /* ...otherwise try RTC */ > @@ -1361,7 +1367,7 @@ > return delta; > } > > -#if defined(__linux__) || defined(_WIN32) > +#if defined(HAVE_POSIX_TIMER) || defined(_WIN32) > static uint64_t qemu_next_deadline_dyntick(void) > { > int64_t delta; > @@ -1506,6 +1512,10 @@ > close(rtc_fd); > } > > +#endif /* defined(__linux__) */ > + > +#ifdef HAVE_POSIX_TIMER > + > static int dynticks_start_timer(struct qemu_alarm_timer *t) > { > struct sigevent ev; > @@ -1577,7 +1587,7 @@ > } > } > > -#endif /* defined(__linux__) */ > +#endif /* defined(HAVE_POSIX_TIMER) */ > > static int unix_start_timer(struct qemu_alarm_timer *t) > { > > > From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 11:49:59 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EC7A1065688 for ; Sun, 7 Dec 2008 11:49:59 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id F0FDF8FC18 for ; Sun, 7 Dec 2008 11:49:58 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgUFADxHO0lR9SdO/2dsb2JhbACBbMo8gwU Received: from 78.39-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.39.78]) by relay.skynet.be with ESMTP; 07 Dec 2008 12:49:57 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mB7BnotL001297; Sun, 7 Dec 2008 12:49:50 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-emulation@freebsd.org, regisr Date: Sun, 7 Dec 2008 12:49:48 +0100 User-Agent: KMail/1.9.10 References: <20081206001351.218fa05c.regisr@pobox.com> In-Reply-To: <20081206001351.218fa05c.regisr@pobox.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812071249.49807.tijl@ulyssis.org> Cc: Subject: Re: wine-1.1.8 regression -- wine: could not load L"...": Invalid address X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 11:49:59 -0000 On Saturday 06 December 2008 00:13:51 regisr wrote: > (I apologize, I don't have the previous message to follow the thread) > > With the patch of dlls/ntdll/virtual.c and 1.1.9.1,1 version of wine I > can launch a program named "international.exe" which lauch > "C:\\windows\\temp\\mvu87c.tmp\\pxplay.exe" : I have the sound but not > the display. > (previously without the patch the error 'could not load L"Z:\\...": > Invalid address ' was displayed) > > Messages on xterm are: > ------------------------------------------ > %wine international.exe > fixme:win:EnumDisplayDevicesW ((null),0,0x34f15c,0x00000000), stub! > fixme:d3d:IWineD3DDeviceImpl_Release (0x1e65c48) Device released with > resources still bound, acceptable but unexpected > fixme:d3d:dumpResources Leftover resource 0x1e69968 with type > 1,WINED3DRTYPE_SURFACE > ----------------------------------------- > It is a FreeBSD port trouble, it is OK with Ubuntu. > > > Another program which had the same problem run, I have the display but > I can't use the mouse, is this a wine configuration problem? > I made some tries and ... the X server closed and return to xdm :-( > I don't yet tried it with Linux. > > ... and a good new: without the patch a program which was OK with > previous releases crashed with a memory error, now with the patch it is > Ok. > > All programs use the full screen to display slideshows. Do FreeBSD and Ubuntu run on the same machine? What graphics drivers are you using? From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 14:41:25 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD9FD1065673 for ; Sun, 7 Dec 2008 14:41:25 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (unknown [IPv6:2001:7a8:313c::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2254C8FC08 for ; Sun, 7 Dec 2008 14:41:24 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.14.3/8.14.2) with SMTP id mB7EfNgT002242; Sun, 7 Dec 2008 15:41:23 +0100 (CET) (envelope-from regisr@pobox.com) Date: Sun, 7 Dec 2008 15:41:23 +0100 From: regisr To: Tijl Coosemans Message-Id: <20081207154123.d6f6e640.regisr@pobox.com> In-Reply-To: <200812071249.49807.tijl@ulyssis.org> References: <20081206001351.218fa05c.regisr@pobox.com> <200812071249.49807.tijl@ulyssis.org> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation@freebsd.org Subject: Re: wine-1.1.8 regression -- wine: could not load L"...": Invalid address X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 14:41:25 -0000 Le Sun, 7 Dec 2008 12:49:48 +0100 Tijl Coosemans a =E9crit: > > All programs use the full screen to display slideshows. To resume: One is running fine and the two others which had previously the 'could not load L"Z:\\ ... " ' error don't run correctly. For one there sound but no display and the mouse don't work on the second. > Do FreeBSD and Ubuntu run on the same machine? Not the same machine. And I have no space to install ubuntu on the same machine. I can check if there is wine on a Linux live CD to test it. > What graphics drivers are you using? (II) LoadModule: "radeon" (II) Loading /usr/local/lib/xorg/modules/drivers//radeon_drv.so (II) Module radeon: vendor=3D"X.Org Foundation" compiled for 1.4.2, module version =3D 4.3.0 --=20 regis From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 15:16:37 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7435A1065672 for ; Sun, 7 Dec 2008 15:16:37 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (unknown [IPv6:2001:7a8:313c::1]) by mx1.freebsd.org (Postfix) with ESMTP id E89308FC12 for ; Sun, 7 Dec 2008 15:16:36 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.14.3/8.14.2) with SMTP id mB7FGZOq002634; Sun, 7 Dec 2008 16:16:35 +0100 (CET) (envelope-from regisr@pobox.com) Date: Sun, 7 Dec 2008 16:16:35 +0100 From: regisr To: Tijl Coosemans Message-Id: <20081207161635.492aa7b7.regisr@pobox.com> In-Reply-To: <200812071249.49807.tijl@ulyssis.org> References: <20081206001351.218fa05c.regisr@pobox.com> <200812071249.49807.tijl@ulyssis.org> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation@freebsd.org Subject: Re: wine-1.1.8 regression -- wine: could not load L"...": Invalid address X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 15:16:37 -0000 I find why the mouse seems to not work! Le Sun, 7 Dec 2008 12:49:48 +0100 Tijl Coosemans a =E9crit: > > All programs use the full screen to display slideshows. When I press the mouse button a programm is launched but in the background and it is masked by the main screen (full scree size and it is only a menu written in flash! :-( The sound is not fine but it is not important in this case. For information I have errors: fixme:ddraw:IDirectDrawImpl_WaitForVerticalBlank (0x1e9198)->(1,0x0): Stub --=20 regis From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 16:06:41 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA35F1065670 for ; Sun, 7 Dec 2008 16:06:41 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id 7EE458FC14 for ; Sun, 7 Dec 2008 16:06:41 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aq8EAM6BO0lR9SdO/2dsb2JhbACBbMoLgwU Received: from 78.39-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.39.78]) by relay.skynet.be with ESMTP; 07 Dec 2008 17:06:40 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mB7G6a1Q055741; Sun, 7 Dec 2008 17:06:36 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: regisr , freebsd-emulation@freebsd.org Date: Sun, 7 Dec 2008 17:06:34 +0100 User-Agent: KMail/1.9.10 References: <20081206001351.218fa05c.regisr@pobox.com> <200812071249.49807.tijl@ulyssis.org> <20081207161635.492aa7b7.regisr@pobox.com> In-Reply-To: <20081207161635.492aa7b7.regisr@pobox.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200812071706.35856.tijl@ulyssis.org> Cc: Subject: Re: wine-1.1.8 regression -- wine: could not load L"...": Invalid address X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 16:06:42 -0000 On Sunday 07 December 2008 16:16:35 regisr wrote: > I find why the mouse seems to not work! >=20 > Le Sun, 7 Dec 2008 12:49:48 +0100 Tijl Coosemans a > =E9crit: >=20 >>> All programs use the full screen to display slideshows. >=20 > When I press the mouse button a programm is launched but in the > background and it is masked by the main screen (full scree size and > it is only a menu written in flash! :-( Is this a FreeBSD only problem? If it happens on Linux as well you should file a bug report at http://bugs.winehq.org/ From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 16:39:41 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECCFD1065678 for ; Sun, 7 Dec 2008 16:39:41 +0000 (UTC) (envelope-from sfourman@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.250]) by mx1.freebsd.org (Postfix) with ESMTP id A17F18FC16 for ; Sun, 7 Dec 2008 16:39:41 +0000 (UTC) (envelope-from sfourman@gmail.com) Received: by an-out-0708.google.com with SMTP id b6so328564ana.13 for ; Sun, 07 Dec 2008 08:39:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=0l3peKrZBl7+IX3UdL4ak6RIsDPp5UcJSqwRV60V/EE=; b=TvnynUngdofqTIvqOvnJk9QWrlBD1Ce3bP8bGMulrttP1pa8ar4kJygGl3LCdv/F/c FVreyeEfyzFVExMef0ror/tC1DGuyPHhbXkLFbAN1AtxdFDwq8+jmBIgkXmDPQAy4ANK LY/1T0Hv/rs7LjiNK8PPv80UoonW9Jr7pOY7M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Jphc7ATE7Io8HTWLgyqVs9DtSto+0EowC2go4/ReIvekbyb7kTWKD6dYlwKzUxp1VR OrsyjNm6E269NHHQEoAQxEfNcnNtfq+oqjvsRH8zGqz0tBzKZzERRy5HCSKmbhXvzJ6H Vmc0QV/LuLYHhXcGRt0AXYkWqiRdgT+YJwDKk= Received: by 10.65.158.19 with SMTP id k19mr1999570qbo.14.1228667980498; Sun, 07 Dec 2008 08:39:40 -0800 (PST) Received: by 10.64.184.9 with HTTP; Sun, 7 Dec 2008 08:39:40 -0800 (PST) Message-ID: <11167f520812070839s3aef1502veee28cfccbc9d2ed@mail.gmail.com> Date: Sun, 7 Dec 2008 10:39:40 -0600 From: "Sam Fourman Jr." To: "Tijl Coosemans" In-Reply-To: <200812071706.35856.tijl@ulyssis.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081206001351.218fa05c.regisr@pobox.com> <200812071249.49807.tijl@ulyssis.org> <20081207161635.492aa7b7.regisr@pobox.com> <200812071706.35856.tijl@ulyssis.org> Cc: freebsd-emulation@freebsd.org Subject: Re: wine-1.1.8 regression -- wine: could not load L"...": Invalid address X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 16:39:42 -0000 > Is this a FreeBSD only problem? If it happens on Linux as well you > should file a bug report at http://bugs.winehq.org/ > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org" I thought someone wrote a patch about a week ago to fix the invalid address problem I don't think it is committed yet, because the maintainer is on vacation. I assume he will get to applying the patch when wine 1.1.10 is in the ports tree. From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 17:48:41 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0EEE1065670 for ; Sun, 7 Dec 2008 17:48:41 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (unknown [IPv6:2001:7a8:313c::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4F9458FC14 for ; Sun, 7 Dec 2008 17:48:41 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.14.3/8.14.2) with SMTP id mB7HmdwX044829; Sun, 7 Dec 2008 18:48:39 +0100 (CET) (envelope-from regisr@pobox.com) Date: Sun, 7 Dec 2008 18:48:39 +0100 From: regisr To: freebsd-emulation@freebsd.org Message-Id: <20081207184839.001ba311.regisr@pobox.com> In-Reply-To: <200812071706.35856.tijl@ulyssis.org> References: <20081206001351.218fa05c.regisr@pobox.com> <200812071249.49807.tijl@ulyssis.org> <20081207161635.492aa7b7.regisr@pobox.com> <200812071706.35856.tijl@ulyssis.org> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: wine 1.1.9,1 Display problem X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 17:48:42 -0000 Le Sun, 7 Dec 2008 17:06:34 +0100 Tijl Coosemans a =E9crit: > Is this a FreeBSD only problem? If it happens on Linux as well you > should file a bug report at http://bugs.winehq.org/ I can test this tomorrow. (this is for the program index.exe). Now, for it, I have a workaround. > I thought someone wrote a patch about a week ago to fix the invalid > address problem I have apply the patch by Alex Kozlov, Doest I need to revert it to apply the patch modified by Tijl? About he trouble which is pending from my wine use: The program name is international.exe. A 538M file... It is running fine under Ubuntu, and I don't have display with FreeBSD, only sound. The error messages: fixme:win:EnumDisplayDevicesW ((null),0,0x34f15c,0x00000000), stub! fixme:d3d:IWineD3DDeviceImpl_Release (0x1e65c48) Device released with resources still bound, acceptable but unexpected fixme:d3d:dumpResources Leftover resource 0x1e69968 with type 1,WINED3DRTYPE_SURFACE The wine threads: 44617 ?? Rs 0:26,07 /usr/local/lib/../bin/wineserver 44620 ?? I 0:00,02 c:\\windows\\system32\\services.exe 44621 ?? I 0:00,02 c:\\windows\\system32\\winedevice.exe 44623 ?? Ss 0:00,10 c:\\windows\\system32\\explorer.exe 44615 p2 S+ 0:01,06 international.exe 44637 p2 S+ 0:52,68 C:\\windows\\temp\\mvu899.tmp\\pxplay.exe --=20 regis From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 18:21:50 2008 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5C7D1065670 for ; Sun, 7 Dec 2008 18:21:50 +0000 (UTC) (envelope-from nox@saturn.kn-bremen.de) Received: from gwyn.kn-bremen.de (gwyn.kn-bremen.de [212.63.36.242]) by mx1.freebsd.org (Postfix) with ESMTP id 325F18FC0C for ; Sun, 7 Dec 2008 18:21:50 +0000 (UTC) (envelope-from nox@saturn.kn-bremen.de) Received: by gwyn.kn-bremen.de (Postfix, from userid 10) id 18EE5191A2A; Sun, 7 Dec 2008 19:21:48 +0100 (CET) Received: from saturn.kn-bremen.de (noident@localhost [127.0.0.1]) by saturn.kn-bremen.de (8.14.2/8.13.8) with ESMTP id mB7IJRe7062179; Sun, 7 Dec 2008 19:19:27 +0100 (CET) (envelope-from nox@saturn.kn-bremen.de) Received: (from nox@localhost) by saturn.kn-bremen.de (8.14.2/8.13.6/Submit) id mB7IJQOT062178; Sun, 7 Dec 2008 19:19:26 +0100 (CET) (envelope-from nox) Date: Sun, 7 Dec 2008 19:19:26 +0100 (CET) From: Juergen Lock Message-Id: <200812071819.mB7IJQOT062178@saturn.kn-bremen.de> To: anthony@codemonkey.ws X-Newsgroups: local.list.qemu In-Reply-To: <493B35AB.1050301@codemonkey.ws> References: <20081206220906.GA34210@saturn.kn-bremen.de> Organization: home Cc: freebsd-emulation@FreeBSD.org, qemu-devel@nongnu.org Subject: Re: [Qemu-devel] testing qemu svn r5890 on FreeBSD - virtio, and a patch enabling -clock dynticks X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 18:21:50 -0000 In article <493B35AB.1050301@codemonkey.ws> you write: >Juergen Lock wrote: >> Hi! >> >> Jung-uk Kim sent me a patch to enable -clock dynticks on FreeBSD hosts >> (the configure check is mine, only FreeBSD >= 7.x has posix timers that >> this uses), I'll append it below. >> >> This is the experimental qemu-devel port update I used: >> http://people.freebsd.org/~nox/qemu/qemu-devel-20081206.patch >> As already mentioned I had to add a missing `#include ' >> (files/patch-qemu-common.h), as also posted here: >> http://lists.gnu.org/archive/html/qemu-devel/2008-12/msg00216.html >> >> I only had one (type of) guest that actually had virtio drivers (three >> versions of sidux isos), and the speed difference between virtio-blk and >> scsi was small. (I tested dd bs=64k count=500 /dev/null and >> similar with a raw image, both scsi and virtio were always faster than ide.) >> I noted tho that even virtio there was not half as fast as ide (and scsi) >> on KNOPPIX_V5.3.1DVD-2008-03-26-EN.iso, so either overhead has increased >> greatly from 2.6.24.4 to 2.6.26, or this has something to do with >> the sidux kernel using CONFIG_NO_HZ and the Knoppix one (apparently) not >> and qemu (possibly, I also suspected that with the usb slowness) not >> handling CONFIG_NO_HZ guests too well. scsi on a FreeBSD >> 7.1-BETA-i386-livefs.iso guest btw was even yet (noticeably) faster than >> on the Knoppix iso. It will be interesting how virtio-net will fare once >> that gets committed... >> > >I don't have much experience with perf benchmarking and TCG. TCG may >has interesting side effects. For instance, it's more expensive to do >things in the guest instead of the host so the emulation overhead of >IDE/SCSI shouldn't matter much. > Actually most of those tests were with -kernel-kqemu sice that is what I usually run linux guests with. >A straight dd test is not the best test BTW. If you want to measure >performance, you should use O_DIRECT in the guest (iflag=direct) Hmm, how many guest processes will use that? Or is that what fses end up doing when the guest does things like, say, cp'ing files around? > and >probably O_DIRECT in the host (cache=none). Ok, will do next time... Thanx, Juergen From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 18:44:33 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D82651065673 for ; Sun, 7 Dec 2008 18:44:33 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id 74AF28FC0C for ; Sun, 7 Dec 2008 18:44:33 +0000 (UTC) (envelope-from tijl@ulyssis.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aq8EAE+nO0lR9SdO/2dsb2JhbACBbMo+gwU Received: from 78.39-245-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.245.39.78]) by relay.skynet.be with ESMTP; 07 Dec 2008 19:44:31 +0100 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id mB7IiUse091269; Sun, 7 Dec 2008 19:44:31 +0100 (CET) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: regisr , freebsd-emulation@freebsd.org Date: Sun, 7 Dec 2008 19:44:28 +0100 User-Agent: KMail/1.9.10 References: <20081206001351.218fa05c.regisr@pobox.com> <200812071706.35856.tijl@ulyssis.org> <20081207184839.001ba311.regisr@pobox.com> In-Reply-To: <20081207184839.001ba311.regisr@pobox.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812071944.30328.tijl@ulyssis.org> Cc: Subject: Re: wine 1.1.9,1 Display problem X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 18:44:33 -0000 On Sunday 07 December 2008 18:48:39 regisr wrote: > I have apply the patch by Alex Kozlov, Doest I need to revert it to > apply the patch modified by Tijl? > > About he trouble which is pending from my wine use: > The program name is international.exe. A 538M file... > It is running fine under Ubuntu, and I don't have display with > FreeBSD, only sound. > > The error messages: > fixme:win:EnumDisplayDevicesW ((null),0,0x34f15c,0x00000000), stub! > fixme:d3d:IWineD3DDeviceImpl_Release (0x1e65c48) Device released with > resources still bound, acceptable but unexpected > fixme:d3d:dumpResources Leftover resource 0x1e69968 with type > 1,WINED3DRTYPE_SURFACE > > The wine threads: > 44617 ?? Rs 0:26,07 /usr/local/lib/../bin/wineserver > 44620 ?? I 0:00,02 c:\\windows\\system32\\services.exe > 44621 ?? I 0:00,02 c:\\windows\\system32\\winedevice.exe > 44623 ?? Ss 0:00,10 c:\\windows\\system32\\explorer.exe > 44615 p2 S+ 0:01,06 international.exe > 44637 p2 S+ 0:52,68 C:\\windows\\temp\\mvu899.tmp\\pxplay.exe pxplay.exe is Photodex Presenter which is a plugin like Flash. In a browser window it seems to work, not perfectly, but it works. Switching to full screen however doesn't. There's only sound and no display. So I can confirm the problem, but I have no idea what could be causing this. From owner-freebsd-emulation@FreeBSD.ORG Sun Dec 7 20:26:04 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30B931065677 for ; Sun, 7 Dec 2008 20:26:04 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (unknown [IPv6:2001:7a8:313c::1]) by mx1.freebsd.org (Postfix) with ESMTP id 94CE88FC1D for ; Sun, 7 Dec 2008 20:26:03 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.14.3/8.14.2) with SMTP id mB7KQ1b0045805; Sun, 7 Dec 2008 21:26:02 +0100 (CET) (envelope-from regisr@pobox.com) Date: Sun, 7 Dec 2008 21:26:01 +0100 From: regisr To: Tijl Coosemans Message-Id: <20081207212601.9d4da40d.regisr@pobox.com> In-Reply-To: <200812071944.30328.tijl@ulyssis.org> References: <20081206001351.218fa05c.regisr@pobox.com> <200812071706.35856.tijl@ulyssis.org> <20081207184839.001ba311.regisr@pobox.com> <200812071944.30328.tijl@ulyssis.org> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation@freebsd.org Subject: Re: wine 1.1.9,1 Display problem X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2008 20:26:04 -0000 Le Sun, 7 Dec 2008 19:44:28 +0100 Tijl Coosemans a =E9crit: > pxplay.exe is Photodex Presenter which is a plugin like Flash. > In a browser window it seems to work, not perfectly, but it works. > Switching to full screen however doesn't. There's only sound and no > display. So I can confirm the problem, but I have no idea what could > be causing this. The others programs that I run with wine are also Photodesk Presenter. ( I have suggested to the company to comppatible viewer, at least for mac and linux!). For index.exe, which is a flash executable, it launch windows with Photodex Presenter but masked by this menu! I can launch each slideshow separately, not in full screen. But for international.exe I have only one big binary. I don't know how it is made. It can be an archive file: running it create some files in the drive C:=20 On Ubuntu it use a full screen mode. It is not my main request: I want to see the slideshow, in windows at least ;-) Photodex seems be the more used software for slideshow and AV in international photography exhibitions (replacing Scala IMHO).=20 --=20 regis From owner-freebsd-emulation@FreeBSD.ORG Mon Dec 8 11:06:54 2008 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C0FC106567E for ; Mon, 8 Dec 2008 11:06:54 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 693868FC23 for ; Mon, 8 Dec 2008 11:06:54 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id mB8B6siO014229 for ; Mon, 8 Dec 2008 11:06:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id mB8B6r70014225 for freebsd-emulation@FreeBSD.org; Mon, 8 Dec 2008 11:06:53 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 8 Dec 2008 11:06:53 GMT Message-Id: <200812081106.mB8B6r70014225@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-emulation@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2008 11:06:54 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n f ports/127018 emulation Linuxulator incapable of using FreeBSD's LDAP environm o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o ports/121800 emulation x11-toolkits/linux-openmotif - OpenMotif upgrade to 2. o kern/97326 emulation [linux] file descriptor leakage in linux emulation o ports/91318 emulation [fix] graphics/linux_dri: works on amd64 too o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 14 problems total. From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 05:56:34 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1942A1065750 for ; Thu, 11 Dec 2008 05:56:34 +0000 (UTC) (envelope-from beech@alaskaparadise.com) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id E60738FC14 for ; Thu, 11 Dec 2008 05:56:33 +0000 (UTC) (envelope-from beech@alaskaparadise.com) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id 6843F28E1B94 for ; Thu, 11 Dec 2008 05:40:30 +0000 (UTC) From: Beech Rintoul Organization: FreeBSD To: freebsd-emulation@freebsd.org Date: Wed, 10 Dec 2008 20:40:29 -0900 User-Agent: KMail/1.10.3 (FreeBSD/8.0-CURRENT; KDE/4.1.3; i386; ; ) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812102040.29488.beech@alaskaparadise.com> Subject: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: beech@alaskaparadise.com List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 05:56:34 -0000 I'm having a problem with f8 and skype. Since I switched from f7 to f8 linux apps are reading my time as GMT instead of localtime. Is there something I need to setup to get the proper time? Suggestions would be appreciated, Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 08:56:27 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 796211065672 for ; Thu, 11 Dec 2008 08:56:27 +0000 (UTC) (envelope-from kama@pvp.se) Received: from ms1.as.pvp.se (dns.pvp.se [213.64.187.226]) by mx1.freebsd.org (Postfix) with ESMTP id 41A9F8FC14 for ; Thu, 11 Dec 2008 08:56:27 +0000 (UTC) (envelope-from kama@pvp.se) Received: by ms1.as.pvp.se (Postfix, from userid 1001) id BE093A9; Thu, 11 Dec 2008 09:25:38 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ms1.as.pvp.se (Postfix) with ESMTP id BC9FCA7; Thu, 11 Dec 2008 09:25:38 +0100 (CET) Date: Thu, 11 Dec 2008 09:25:38 +0100 (CET) From: kama X-X-Sender: kama@ns1.as.pvp.se To: Beech Rintoul In-Reply-To: <200812102040.29488.beech@alaskaparadise.com> Message-ID: <20081211090543.E11937@ns1.as.pvp.se> References: <200812102040.29488.beech@alaskaparadise.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-emulation@freebsd.org Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 08:56:27 -0000 On Wed, 10 Dec 2008, Beech Rintoul wrote: > I'm having a problem with f8 and skype. Since I switched from f7 to f8 linux > apps are reading my time as GMT instead of localtime. Is there something I > need to setup to get the proper time? You need to set the timezone within the linuxulator. In gentoo, which I use, you can just copy /etc/localtime to /compat/linux/etc. But if I recall correctly f8 uses a different version and need todo it in the same way as f8 does. I believe the zonefiles are located under /usr/share/zoneinfo so... cp /compat/linux/usr/share/zoneinfo/CET /compat/linux/etc/localtime ... should to the trick if the zonefiles even are installed, otherwise you need to add that rpm package. tzdata-2008h-1.fc8.noarch.rpm should probably be used, it apperently have some changes when DST is used on a couple of zones. (http://n2.nabble.com/change-timezone--td1400491.html) /Bjorn From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 09:38:54 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4E0E1065672 for ; Thu, 11 Dec 2008 09:38:54 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 777A48FC21 for ; Thu, 11 Dec 2008 09:38:54 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (pD9E2DE31.dip.t-dialin.net [217.226.222.49]) by redbull.bpaserver.net (Postfix) with ESMTP id 6469A2E0FD; Thu, 11 Dec 2008 10:38:45 +0100 (CET) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id DE65618D579; Thu, 11 Dec 2008 10:38:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1228988322; bh=NTjxmC8UbGRhlskW08ux7NbF5Henv/aoc Dx4xL5ngGQ=; h=Message-ID:Date:From:To:Cc:Subject:References: In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=lnn9sMySAyzS110yhcbdokp1aBlN0SptmGDz9T2vfUbAxXVxUp/nKYFtofxk9AszH IqPQ6PVyiy+/tX9+QZhwnDJNF51fkBgm3/hyMRJJ/k18vNLwhmLDkJLeVUP39ya2oME fd2Y7K8d9U/glGjhwSjd/xsTjXcQUglTWvevYJR48io2hrQnltaDj+q0cMxjyup+BAg GaBIYC2ldWDCRSNyIcEuY6dI9k+lMgVw3vFE1+Em7SDoJA0L65cyd8g1rRuR0ZbkdFj Bx6RLlLmyB+XBWym33Ui6SanJzpsHUXDAPnY0HZTwwcuN0q9S+ldZq8QC0WLGkujWyL +ByPqherw== Received: (from www@localhost) by webmail.leidinger.net (8.14.3/8.13.8/Submit) id mBB9cfZt083798; Thu, 11 Dec 2008 10:38:41 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Thu, 11 Dec 2008 10:38:40 +0100 Message-ID: <20081211103840.18715so8q06f72ko@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Thu, 11 Dec 2008 10:38:40 +0100 From: Alexander Leidinger To: kama References: <200812102040.29488.beech@alaskaparadise.com> <20081211090543.E11937@ns1.as.pvp.se> In-Reply-To: <20081211090543.E11937@ns1.as.pvp.se> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.3) / FreeBSD-8.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-MailScanner-ID: 6469A2E0FD.EA728 X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, ORDB-RBL, SpamAssassin (not cached, score=-12.005, required 6, BAYES_00 -15.00, DKIM_SIGNED 0.00, DKIM_VERIFIED -0.00, MIME_QP_LONG_LINE 1.40, RDNS_DYNAMIC 0.10, WHOIS_MYPRIVREG 1.50) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-emulation@freebsd.org, Beech Rintoul Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 09:38:55 -0000 Quoting kama (from Thu, 11 Dec 2008 09:25:38 +0100 (CET)): > > On Wed, 10 Dec 2008, Beech Rintoul wrote: > >> I'm having a problem with f8 and skype. Since I switched from f7 to f8 li= nux >> apps are reading my time as GMT instead of localtime. Is there something = I >> need to setup to get the proper time? > > You need to set the timezone within the linuxulator. > > In gentoo, which I use, you can just copy /etc/localtime to > /compat/linux/etc. But if I recall correctly f8 uses a different version > and need todo it in the same way as f8 does. > > I believe the zonefiles are located under /usr/share/zoneinfo so... > > cp /compat/linux/usr/share/zoneinfo/CET /compat/linux/etc/localtime > > ... should to the trick if the zonefiles even are installed, otherwise you > need to add that rpm package. tzdata-2008h-1.fc8.noarch.rpm should > probably be used, it apperently have some changes when DST is used on a > couple of zones. (http://n2.nabble.com/change-timezone--td1400491.html) It's a known issue. Search the archives. Maybe Boris has a fix for f8 =20 (wait for the ports tree to be unfrozen). We hope that the import a =20 the new tzcode into FreeBSD solves the issue (by using the same new =20 format for /etc/localtime). I don't know when this will be imported. Bye, Alexander. --=20 If you laid all of our laws end to end, there would be no end. =09=09-- Mark Twain http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 09:43:14 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5303F1065670 for ; Thu, 11 Dec 2008 09:43:14 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 0F5688FC08 for ; Thu, 11 Dec 2008 09:43:14 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1LAi4e-000Dk2-HV; Thu, 11 Dec 2008 12:43:12 +0300 To: beech@alaskaparadise.com References: <200812102040.29488.beech@alaskaparadise.com> From: Boris Samorodov Date: Thu, 11 Dec 2008 12:43:12 +0300 In-Reply-To: <200812102040.29488.beech@alaskaparadise.com> (Beech Rintoul's message of "Wed\, 10 Dec 2008 20\:40\:29 -0900") Message-ID: <14239263@bb.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 09:43:14 -0000 Beech Rintoul writes: > I'm having a problem with f8 and skype. Since I switched from f7 to f8 linux > apps are reading my time as GMT instead of localtime. Is there something I > need to setup to get the proper time? > > Suggestions would be appreciated, > > Beech It was discussed at October. Jeremy Messenger found a workaround. Please, look archives for thread "Linux compat 2.6.16 reports time incorrect". WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 09:44:33 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9714C106564A for ; Thu, 11 Dec 2008 09:44:33 +0000 (UTC) (envelope-from beech@alaskaparadise.com) Received: from bsdevel.alaskaparadise.com (bsdevel.alaskaparadise.com [208.86.224.193]) by mx1.freebsd.org (Postfix) with ESMTP id 732748FC1F for ; Thu, 11 Dec 2008 09:44:33 +0000 (UTC) (envelope-from beech@alaskaparadise.com) Received: from stargate.alaskaparadise.com (172-67-237-24.gci.net [24.237.67.172]) by bsdevel.alaskaparadise.com (Postfix) with ESMTP id C447B28E2EA5; Thu, 11 Dec 2008 09:44:32 +0000 (UTC) From: Beech Rintoul Organization: FreeBSD To: Alexander Leidinger Date: Thu, 11 Dec 2008 00:44:31 -0900 User-Agent: KMail/1.10.3 (FreeBSD/8.0-CURRENT; KDE/4.1.3; i386; ; ) References: <200812102040.29488.beech@alaskaparadise.com> <20081211090543.E11937@ns1.as.pvp.se> <20081211103840.18715so8q06f72ko@webmail.leidinger.net> In-Reply-To: <20081211103840.18715so8q06f72ko@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812110044.32148.beech@alaskaparadise.com> Cc: freebsd-emulation@freebsd.org Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: beech@alaskaparadise.com List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 09:44:33 -0000 On Thursday 11 December 2008 00:38:40 Alexander Leidinger wrote: > Quoting kama (from Thu, 11 Dec 2008 09:25:38 +0100 (CET)): > > On Wed, 10 Dec 2008, Beech Rintoul wrote: > >> I'm having a problem with f8 and skype. Since I switched from f7 to f8 > >> linux apps are reading my time as GMT instead of localtime. Is there > >> something I need to setup to get the proper time? > > > > You need to set the timezone within the linuxulator. > > > > In gentoo, which I use, you can just copy /etc/localtime to > > /compat/linux/etc. But if I recall correctly f8 uses a different version > > and need todo it in the same way as f8 does. > > > > I believe the zonefiles are located under /usr/share/zoneinfo so... > > > > cp /compat/linux/usr/share/zoneinfo/CET /compat/linux/etc/localtime > > > > ... should to the trick if the zonefiles even are installed, otherwise > > you need to add that rpm package. tzdata-2008h-1.fc8.noarch.rpm should > > probably be used, it apperently have some changes when DST is used on a > > couple of zones. (http://n2.nabble.com/change-timezone--td1400491.html) > > It's a known issue. Search the archives. Maybe Boris has a fix for f8 > (wait for the ports tree to be unfrozen). We hope that the import a > the new tzcode into FreeBSD solves the issue (by using the same new > format for /etc/localtime). I don't know when this will be imported. > > Bye, > Alexander. Thanks, I just downloaded the latest rpm extracted it with rpm2cpio and installed by hand. Seems to work :-) Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 09:46:45 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFB701065670 for ; Thu, 11 Dec 2008 09:46:45 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 69D4F8FC24 for ; Thu, 11 Dec 2008 09:46:45 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1LAi84-000Dmo-8x; Thu, 11 Dec 2008 12:46:44 +0300 To: Alexander Leidinger References: <200812102040.29488.beech@alaskaparadise.com> <20081211090543.E11937@ns1.as.pvp.se> <20081211103840.18715so8q06f72ko@webmail.leidinger.net> From: Boris Samorodov Date: Thu, 11 Dec 2008 12:46:43 +0300 In-Reply-To: <20081211103840.18715so8q06f72ko@webmail.leidinger.net> (Alexander Leidinger's message of "Thu\, 11 Dec 2008 10\:38\:40 +0100") Message-ID: <48159052@bb.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org, Beech Rintoul Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 09:46:45 -0000 Alexander Leidinger writes: >> On Wed, 10 Dec 2008, Beech Rintoul wrote: >> >>> I'm having a problem with f8 and skype. Since I switched from f7 to f8 linux >>> apps are reading my time as GMT instead of localtime. Is there something I >>> need to setup to get the proper time? > > It's a known issue. Search the archives. Maybe Boris has a fix for f8 > (wait for the ports tree to be unfrozen). Sorry, didn't have time so far. :-( > We hope that the import a > the new tzcode into FreeBSD solves the issue (by using the same new > format for /etc/localtime). Yes, it should. >I don't know when this will be imported. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 09:52:10 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86A141065670 for ; Thu, 11 Dec 2008 09:52:10 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 404B78FC19 for ; Thu, 11 Dec 2008 09:52:10 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1LAiDJ-000Dr6-9g; Thu, 11 Dec 2008 12:52:09 +0300 To: beech@alaskaparadise.com References: <200812102040.29488.beech@alaskaparadise.com> <20081211090543.E11937@ns1.as.pvp.se> <20081211103840.18715so8q06f72ko@webmail.leidinger.net> <200812110044.32148.beech@alaskaparadise.com> From: Boris Samorodov Date: Thu, 11 Dec 2008 12:52:08 +0300 In-Reply-To: <200812110044.32148.beech@alaskaparadise.com> (Beech Rintoul's message of "Thu\, 11 Dec 2008 00\:44\:31 -0900") Message-ID: <82078727@bb.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Alexander Leidinger , freebsd-emulation@freebsd.org Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 09:52:10 -0000 Beech Rintoul writes: > On Thursday 11 December 2008 00:38:40 Alexander Leidinger wrote: >> It's a known issue. Search the archives. Maybe Boris has a fix for f8 >> (wait for the ports tree to be unfrozen). We hope that the import a >> the new tzcode into FreeBSD solves the issue (by using the same new >> format for /etc/localtime). I don't know when this will be imported. > > Thanks, I just downloaded the latest rpm extracted it with rpm2cpio and > installed by hand. Seems to work :-) Openning a PR will be The Right Thing. :-) WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 11 10:03:21 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8ADB21065676 for ; Thu, 11 Dec 2008 10:03:21 +0000 (UTC) (envelope-from jhein@timing.com) Received: from Daffy.timing.com (w.timing.com [206.168.13.218]) by mx1.freebsd.org (Postfix) with ESMTP id 598C28FC21 for ; Thu, 11 Dec 2008 10:03:21 +0000 (UTC) (envelope-from jhein@timing.com) Received: from gromit.timing.com (gromit.timing.com [206.168.13.209]) by Daffy.timing.com (8.13.1/8.13.1) with ESMTP id mBB9fRZR006425 for ; Thu, 11 Dec 2008 02:41:27 -0700 (MST) (envelope-from jhein@timing.com) Received: from gromit.timing.com (localhost [127.0.0.1]) by gromit.timing.com (8.14.3/8.14.3) with ESMTP id mBB8qSj8007929; Thu, 11 Dec 2008 01:52:28 -0700 (MST) (envelope-from jhein@gromit.timing.com) Received: (from jhein@localhost) by gromit.timing.com (8.14.3/8.14.3/Submit) id mBB8qShb007925; Thu, 11 Dec 2008 01:52:28 -0700 (MST) (envelope-from jhein) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18752.54476.213252.934478@gromit.timing.com> Date: Thu, 11 Dec 2008 01:52:28 -0700 From: John Hein To: beech@alaskaparadise.com In-Reply-To: <200812102040.29488.beech@alaskaparadise.com> References: <200812102040.29488.beech@alaskaparadise.com> X-Mailer: VM 7.19 under Emacs 22.3.1 X-Virus-Scanned: ClamAV version 0.91.2, clamav-milter version 0.91.2 on Daffy.timing.com X-Virus-Status: Clean Cc: freebsd-emulation@freebsd.org Subject: Re: Time wrong with f8 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 10:03:21 -0000 Beech Rintoul wrote at 20:40 -0900 on Dec 10, 2008: > I'm having a problem with f8 and skype. Since I switched from f7 to f8 linux > apps are reading my time as GMT instead of localtime. Is there something I > need to setup to get the proper time? This was discussed in Oct in these threads... http://thread.gmane.org/gmane.os.freebsd.devel.emulation/5885 and http://thread.gmane.org/gmane.os.freebsd.devel.emulation/5893 From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 12 13:07:56 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C27B21065678; Fri, 12 Dec 2008 13:07:56 +0000 (UTC) (envelope-from bengta@P142.sics.se) Received: from sink.sics.se (sink.sics.se [193.10.64.88]) by mx1.freebsd.org (Postfix) with ESMTP id 548C48FC0C; Fri, 12 Dec 2008 13:07:56 +0000 (UTC) (envelope-from bengta@P142.sics.se) Received: from P142.sics.se (P142.sics.se [193.10.66.253]) by sink.sics.se (8.14.2/8.14.2) with ESMTP id mBCCZurn012523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 12 Dec 2008 13:35:57 +0100 (CET) (envelope-from bengta@P142.sics.se) Received: from P142.sics.se (localhost [127.0.0.1]) by P142.sics.se (8.14.2/8.14.2) with ESMTP id mBCCbQ7C002899; Fri, 12 Dec 2008 13:37:26 +0100 (CET) (envelope-from bengta@P142.sics.se) Received: (from bengta@localhost) by P142.sics.se (8.14.2/8.14.2/Submit) id mBCCbPuA002898; Fri, 12 Dec 2008 13:37:25 +0100 (CET) (envelope-from bengta@P142.sics.se) To: freebsd-stable@freebsd.org From: Bengt Ahlgren User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (berkeley-unix) Date: Fri, 12 Dec 2008 13:37:25 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Proper use of LD_LIBRARY_PATH for Linux progs? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Dec 2008 13:07:56 -0000 Hi! I ran into a problem with programs exec:ed by print/acroread8 picking up Linux libraries and thus failed to run. This includes the print program in the print dialogue and the browser configured in edit/preferences/internet. The reason is that the acroread launch script sets LD_LIBRARY_PATH which is propagated to its childs. See this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/129553 Question 1: anybody else that sees this problem? Question 2: what is the "proper" way to fix this problem? (specifically for acroread8, but also in general.) Bengt Ps. Sorry for cross-posting - don't know which list to use for this issue. From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 12 16:16:43 2008 Return-Path: Delivered-To: FreeBSD-Emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9A07106567E for ; Fri, 12 Dec 2008 16:16:43 +0000 (UTC) (envelope-from dokpm0@Phideaux.RawFedDogs.net) Received: from Phideaux.RawFedDogs.net (Phideaux.RawFedDogs.net [64.251.15.37]) by mx1.freebsd.org (Postfix) with ESMTP id 5E7728FC18 for ; Fri, 12 Dec 2008 16:16:43 +0000 (UTC) (envelope-from dokpm0@Phideaux.RawFedDogs.net) Received: from cpe-24-167-59-175.hot.res.rr.com ([24.167.59.175] helo=[192.168.93.2]) by Phideaux.RawFedDogs.net with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1LBA10-000LSk-5m for FreeBSD-Emulation@FreeBSD.org; Fri, 12 Dec 2008 09:33:19 -0600 Date: Fri, 12 Dec 2008 09:33:07 -0600 (CST) From: Kevin Monceaux X-X-Sender: dokpm0@Blaidd-Drwg.RawFedDogs.net To: FreeBSD-Emulation@FreeBSD.org In-Reply-To: <49086F1A.2090500@comcast.net> Message-ID: References: <200810280859.24048@aldan> <20081028181731.GA30591@saturn.kn-bremen.de> <49086F1A.2090500@comcast.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Sender: dokpm0@Phideaux.RawFedDogs.net Cc: Subject: Re: flash9 checklist X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Dec 2008 16:16:43 -0000 On Wed, 29 Oct 2008, Steve Polyack wrote: > Thanks for this. I was able to get linux-flashplugin9 working in native > Firefox 3.0.3 on FreeBSD 7-STABLE i386. The only additional thing I had > to do was copy > /usr/X11R6/lib/browser_plugins/npwrapper.libflashplayer.so into > ~/.mozilla/plugins/ for Firefox to recognize the plugin. I'll second that motion. Many thanks for making a usable flash plugin a reality. I also had to perform the above copy, so the above info helped me. I don't necessarily like sites that try to force flash upon people, but at the same time it's a pain to be among the flash impaired. I ended up switching from FreeBSD back to Linux for a while due to the lack of a stable flash plugin. Anyway, for reference this is what I have on my box which appears to be working well so far: FreeBSD: RELENG_7 Firefox: native firefox-3.0.4,1 compat.linux.osrelease=2.6.16 OVERRIDE_LINUX_BASE_PORT=f8 On my previous FreeBSD install I was also having problems with acroread. It would segfault every time I tried to start it. With the above it's also working well. I did have a minor problem with the above setup and one of acroread8's dependencies, linux-nvu. It wanted libgobject-2.0.so.0 from devel/linux-glib2 under ${LINUXBASE}/usr/lib/. emulators/linux_base-f8 installed libgobject-2.0.so.0 at ${LINUXBASE}/lib/. I tried changing the dependency line in the linux-nvu port's Makefile accordingly but it kept trying to pull in linux-glib2 as a dependency. The install of linux-glib2 would fail as it has some file conflicts with linux_base-f8. I finally just removed the dependency line for libgobject-2.0.so.0 from linux-nvu all together, since I knew the library was installed and available, and all appears well. Kevin http://www.RawFedDogs.net http://www.WacoAgilityGroup.org Bruceville, TX Si hoc legere scis nimium eruditionis habes. Longum iter est per praecepta, breve et efficax per exempla!!! From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 13 20:11:26 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70A931065675 for ; Sat, 13 Dec 2008 20:11:26 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 13A8A8FC2F for ; Sat, 13 Dec 2008 20:11:26 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (pD9E2E4FD.dip.t-dialin.net [217.226.228.253]) by redbull.bpaserver.net (Postfix) with ESMTP id 3F1842E0BA; Sat, 13 Dec 2008 21:11:21 +0100 (CET) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 3446118204A; Sat, 13 Dec 2008 21:11:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1229199076; bh=ZBTDQ6tCRSqAITL7vtfjN4wCfyqxpd68E a3Yxg3jpSA=; h=Message-ID:Date:From:To:Cc:Subject:References: In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=vOaSIsR8XPjQG7zXoYgvNYJi606MQAPtvWkb0Z3Cu3KTYWRTHHbMRf80bSpijbZvK XsmSl3l8sWfdcoS2GP8USVtj3bmFVP6UM6dlNtfz2PmgSuYIDX6b6/witWSs/8D+Tmc tVsI0lmvM5HDPFdyJc7TyTuY49JJSI6T4+h6m9VXhBohEc36nFTOT3qwVIW7yqGX/Wy CcgPgji6NY07nhxiwMvpjAorM8emJMDkA6qkseoPjRJGujjuqcG/+xtExvHuWjUa4K1 F4bDEIWAJEJ8ilodFCuH8yokIvozdly8OAsWYvyoX7IvkuxdRnSJnVQi64+o36wyQVN uGvFff/2w== Received: (from www@localhost) by webmail.leidinger.net (8.14.3/8.13.8/Submit) id mBDKBFsA017830; Sat, 13 Dec 2008 21:11:15 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Luna.Leidinger.net (Luna.Leidinger.net [192.168.2.100]) by webmail.leidinger.net (Horde Framework) with HTTP; Sat, 13 Dec 2008 21:11:15 +0100 Message-ID: <20081213211115.1274360bbklovuas@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Sat, 13 Dec 2008 21:11:15 +0100 From: Alexander Leidinger To: Bengt Ahlgren References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.3) / FreeBSD-8.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-MailScanner-ID: 3F1842E0BA.68E6F X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, ORDB-RBL, SpamAssassin (not cached, score=-13.504, required 6, BAYES_00 -15.00, DKIM_SIGNED 0.00, DKIM_VERIFIED -0.00, MIME_QP_LONG_LINE 1.40, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-emulation@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Proper use of LD_LIBRARY_PATH for Linux progs? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Dec 2008 20:11:26 -0000 Quoting Bengt Ahlgren (from Fri, 12 Dec 2008 13:37:25 +0100= ): > The reason is that the acroread launch script sets LD_LIBRARY_PATH > which is propagated to its childs. See this PR: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/129553 > Question 2: what is the "proper" way to fix this problem? > (specifically for acroread8, but also in general.) Search the archive for the ports mailinglist, in the mail =20 "print/acroread8: LD_LIBRARY_PATH breaks helper programs" is a fix for =20 the problem. In general: there's no general fix. It all depends why LD_LIBRARY_PATH =20 is used and what is done. There are multiple ways, some are =20 workarounds ("env LD_LIBRARY_PATH=3D'' lpr ..." ), some (like the one =20 for acroread in the mail) are good fixes. Bye, Alexander. --=20 Disclose classified information only when a NEED TO KNOW exists. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 13 20:18:04 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6F0C1065680 for ; Sat, 13 Dec 2008 20:18:04 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 8B5FE8FC17 for ; Sat, 13 Dec 2008 20:18:04 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (pD9E2E4FD.dip.t-dialin.net [217.226.228.253]) by redbull.bpaserver.net (Postfix) with ESMTP id 871A32E0BA; Sat, 13 Dec 2008 21:17:57 +0100 (CET) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id C85E2182335; Sat, 13 Dec 2008 21:17:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1229199473; bh=6DhWy6eQWcGAcOsNpclDv6w/eI4PfMfRi CYroEatgBA=; h=Message-ID:Date:From:To:Cc:Subject:References: In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=o+D1NsClh6psftwK2xC6eKbyUk5X22WddRoLQXHIVy82zjKTmrs4evxQJk2RNOz1l ThXOUzppypN8sTDNfD5cXFcsARbcwe/uS2oAEVlnfVRA0fF61UWHB9AAIqSo4qsYrmI u3K5MIJa/h/TAf7XisvfsCAAqHBBSq/+O8MeM/bNMSdb7PsZprbTNWRiJIaXfNs1dmG wyES4G1ewjUciQsCiHZT9rabW/64yF5UYVFvGJwnATL0AZwIBoO8robOxfvD1tkHlo9 3TLPJPd952SuewZr6cGEgEQX7kTe+v7c6M8cAiJv9FlHISy8mbKPdeJaemX0oOTn4ys A70Thzizw== Received: (from www@localhost) by webmail.leidinger.net (8.14.3/8.13.8/Submit) id mBDKHr3r018988; Sat, 13 Dec 2008 21:17:53 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Luna.Leidinger.net (Luna.Leidinger.net [192.168.2.100]) by webmail.leidinger.net (Horde Framework) with HTTP; Sat, 13 Dec 2008 21:17:53 +0100 Message-ID: <20081213211753.172124oke0p9oqdc@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Sat, 13 Dec 2008 21:17:53 +0100 From: Alexander Leidinger To: Bengt Ahlgren References: <20081213211115.1274360bbklovuas@webmail.leidinger.net> In-Reply-To: <20081213211115.1274360bbklovuas@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.3) / FreeBSD-8.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-MailScanner-ID: 871A32E0BA.4E8A0 X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, ORDB-RBL, SpamAssassin (not cached, score=-15.4, required 6, autolearn=not spam, BAYES_00 -15.00, DKIM_SIGNED 0.00, DKIM_VERIFIED -0.00, RDNS_DYNAMIC 0.10, SMILEY -0.50) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-emulation@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Proper use of LD_LIBRARY_PATH for Linux progs? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Dec 2008 20:18:05 -0000 Quoting Alexander Leidinger (from Sat, 13 =20 Dec 2008 21:11:15 +0100): > Quoting Bengt Ahlgren (from Fri, 12 Dec 2008 =20 > 13:37:25 +0100): > >> The reason is that the acroread launch script sets LD_LIBRARY_PATH >> which is propagated to its childs. See this PR: >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/129553 > >> Question 2: what is the "proper" way to fix this problem? >> (specifically for acroread8, but also in general.) > > Search the archive for the ports mailinglist, in the mail =20 > "print/acroread8: LD_LIBRARY_PATH breaks helper programs" is a fix =20 > for the problem. ROTFL... this mail on ports@ is from you... :-) I suggest to contact the port maintainer with the fix. If he doesn't =20 answer, send a PR. As soon as someone (maintainer / other committer in =20 the PR case) has time and motivation, the fix will get committed. Bye, Alexander (ENOTIME ATM, else I would have taken care about this already). --=20 Gordon's first law: =09If a research project is not worth doing, it is not worth doing =09well. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137