9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] 9vx and ubuntu 10.04LTS
@ 2010-05-01 17:05 Charles Forsyth
  2010-05-01 20:46 ` ron minnich
  2010-05-01 21:19 ` Iruata Souza
  0 siblings, 2 replies; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 17:05 UTC (permalink / raw)
  To: 9fans

having upgraded a machine to ubunut 10.04LTS yesterday,
9vx now crashes with a segmentation violation shortly after
saying it is starting /bin/rc. has anyone else a similar
problem on that or another linux system? 9vx itself was unchanged,
but i also tried recompiling it (in case a linux include file had
changed subtly) but it made no difference.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 17:05 [9fans] 9vx and ubuntu 10.04LTS Charles Forsyth
@ 2010-05-01 20:46 ` ron minnich
  2010-05-01 20:53   ` Charles Forsyth
  2010-05-01 21:19 ` Iruata Souza
  1 sibling, 1 reply; 18+ messages in thread
From: ron minnich @ 2010-05-01 20:46 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

what kernel version is it nowadays?

ron



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 20:46 ` ron minnich
@ 2010-05-01 20:53   ` Charles Forsyth
  2010-05-01 21:00     ` ron minnich
  2010-05-01 21:01     ` Charles Forsyth
  0 siblings, 2 replies; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 20:53 UTC (permalink / raw)
  To: 9fans

2.6.32-21-generic according to uname -a



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 20:53   ` Charles Forsyth
@ 2010-05-01 21:00     ` ron minnich
  2010-05-01 21:22       ` Charles Forsyth
  2010-05-01 21:01     ` Charles Forsyth
  1 sibling, 1 reply; 18+ messages in thread
From: ron minnich @ 2010-05-01 21:00 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sat, May 1, 2010 at 1:53 PM, Charles Forsyth <forsyth@terzarima.net> wrote:
> 2.6.32-21-generic according to uname -a
>
>

hmm. I'm running 9vx just fine on 2.6.33 -- a non-ubongo version. I
wonder if some ubuntu patch to the kernel has broken something?

Blast. if you do an ldd on it what libc etc. is it depending on? Could
this be another one of those weird libc problems that crops up with
specialized 686 or tls-specific libcs? I'm running out again but we
can compare the libcs we are depending on.

I'm happier than ever that I've dumped ubuntu and replaced it with
tinycore. I did a trial install of 9.10 this week on an x60. It
loaded. It booted and demanded that it be allowed to upgrade 271
packages. it loaded them and installed them. It no longer booted. That
did it for me ... tinycore is a bit of a caveman environment but I'm
clearly not sophisticated enough for ubuntu ... I need an OS for "the
rest of us knuckle-draggers".

ron



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 20:53   ` Charles Forsyth
  2010-05-01 21:00     ` ron minnich
@ 2010-05-01 21:01     ` Charles Forsyth
  1 sibling, 0 replies; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 21:01 UTC (permalink / raw)
  To: 9fans

>2.6.32-21-generic according to uname -a

or is that a combination?



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 17:05 [9fans] 9vx and ubuntu 10.04LTS Charles Forsyth
  2010-05-01 20:46 ` ron minnich
@ 2010-05-01 21:19 ` Iruata Souza
  1 sibling, 0 replies; 18+ messages in thread
From: Iruata Souza @ 2010-05-01 21:19 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sat, May 1, 2010 at 2:05 PM, Charles Forsyth <forsyth@terzarima.net> wrote:
> having upgraded a machine to ubunut 10.04LTS yesterday,
> 9vx now crashes with a segmentation violation shortly after
> saying it is starting /bin/rc. has anyone else a similar
> problem on that or another linux system? 9vx itself was unchanged,
> but i also tried recompiling it (in case a linux include file had
> changed subtly) but it made no difference.
>
>

i'm having problems with ubuntu 9.04 but i don't get any segment
violation iirc. the precompiled binary works, compiling one myself
does not.

iru



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:00     ` ron minnich
@ 2010-05-01 21:22       ` Charles Forsyth
  2010-05-01 21:33         ` Charles Forsyth
  0 siblings, 1 reply; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 21:22 UTC (permalink / raw)
  To: 9fans

% ldd 9vx.Linux	# old
	linux-gate.so.1 =>  (0xb7720000)
	libX11.so.6 => /usr/lib/libX11.so.6 (0xb7617000)
	...

% ldd 9vx	# new
	linux-gate.so.1 => (0x00704000)
	libX11.so.6 => /usr/lib/libX11.so.6 (0x00c35000)
	...

where an obvious difference is that what i take to be addresses
have moved from high memory to low memory, which might have something to do with it.
i don't know what the values mean, because ldd(1) doesn't bother to tell you.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:22       ` Charles Forsyth
@ 2010-05-01 21:33         ` Charles Forsyth
  2010-05-01 21:34           ` Iruata Souza
  2010-05-01 21:36           ` Mathieu Lonjaret
  0 siblings, 2 replies; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 21:33 UTC (permalink / raw)
  To: 9fans

% ldd 9vx.Linux	# old
	...
% ldd 9vx	# new

note that `old' is run on an existing 9.04 (2.6.28-18-generic), which works,
and `new' is the 10.04 (2.6.32-21-generic), which doesn't.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:33         ` Charles Forsyth
@ 2010-05-01 21:34           ` Iruata Souza
  2010-05-01 21:39             ` Charles Forsyth
  2010-05-01 21:36           ` Mathieu Lonjaret
  1 sibling, 1 reply; 18+ messages in thread
From: Iruata Souza @ 2010-05-01 21:34 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sat, May 1, 2010 at 6:33 PM, Charles Forsyth <forsyth@terzarima.net> wrote:
> % ldd 9vx.Linux # old
>        ...
> % ldd 9vx       # new
>
> note that `old' is run on an existing 9.04 (2.6.28-18-generic), which works,
> and `new' is the 10.04 (2.6.32-21-generic), which doesn't.
>

can you run the current 9vx in 9.04?



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:33         ` Charles Forsyth
  2010-05-01 21:34           ` Iruata Souza
@ 2010-05-01 21:36           ` Mathieu Lonjaret
  2010-05-04  8:54             ` sixforty
  1 sibling, 1 reply; 18+ messages in thread
From: Mathieu Lonjaret @ 2010-05-01 21:36 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 137 bytes --]

Fwiw, 9vx does build and run fine on 10.04 here.
Lemme know if I can give you some relevant info which might help.

Cheers,
Mathieu

[-- Attachment #2: Type: message/rfc822, Size: 3582 bytes --]

From: Charles Forsyth <forsyth@terzarima.net>
To: 9fans@9fans.net
Subject: Re: [9fans] 9vx and ubuntu 10.04LTS
Date: Sat, 1 May 2010 22:33:23 +0100
Message-ID: <2d567192c754d7cdfe78dd1f4bbe8d30@terzarima.net>

% ldd 9vx.Linux	# old
	...
% ldd 9vx	# new

note that `old' is run on an existing 9.04 (2.6.28-18-generic), which works,
and `new' is the 10.04 (2.6.32-21-generic), which doesn't.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:34           ` Iruata Souza
@ 2010-05-01 21:39             ` Charles Forsyth
  2010-05-01 21:49               ` Iruata Souza
  0 siblings, 1 reply; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 21:39 UTC (permalink / raw)
  To: 9fans

>can you run the current 9vx in 9.04?

yes



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:39             ` Charles Forsyth
@ 2010-05-01 21:49               ` Iruata Souza
  2010-05-01 21:57                 ` Charles Forsyth
  0 siblings, 1 reply; 18+ messages in thread
From: Iruata Souza @ 2010-05-01 21:49 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sat, May 1, 2010 at 6:39 PM, Charles Forsyth <forsyth@terzarima.net> wrote:
>>can you run the current 9vx in 9.04?
>
> yes
>
>

this version madness confuses me. i could not get it to run on 9.10.
9.04 was fine.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:49               ` Iruata Souza
@ 2010-05-01 21:57                 ` Charles Forsyth
  2010-05-01 22:48                   ` Vinu Rajashekhar
  0 siblings, 1 reply; 18+ messages in thread
From: Charles Forsyth @ 2010-05-01 21:57 UTC (permalink / raw)
  To: 9fans

>this version madness confuses me. i could not get it to run on 9.10.

i had 9vx running fine in 9.10 on the same machine.
it was the upgrade to 10.04 LTS that messed it up today.
i wonder why the library allocation addresses are different.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:57                 ` Charles Forsyth
@ 2010-05-01 22:48                   ` Vinu Rajashekhar
  2010-05-01 23:06                     ` ron minnich
  0 siblings, 1 reply; 18+ messages in thread
From: Vinu Rajashekhar @ 2010-05-01 22:48 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

The address shown by ldd can even vary from run to run, for the same file -

http://linux.derkeiler.com/Mailing-Lists/Kernel/2005-03/4363.html

On Sun, May 2, 2010 at 3:27 AM, Charles Forsyth <forsyth@terzarima.net>wrote:

> >this version madness confuses me. i could not get it to run on 9.10.
>
> i had 9vx running fine in 9.10 on the same machine.
> it was the upgrade to 10.04 LTS that messed it up today.
> i wonder why the library allocation addresses are different.
>
>

[-- Attachment #2: Type: text/html, Size: 863 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 22:48                   ` Vinu Rajashekhar
@ 2010-05-01 23:06                     ` ron minnich
  0 siblings, 0 replies; 18+ messages in thread
From: ron minnich @ 2010-05-01 23:06 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sat, May 1, 2010 at 10:48 PM, Vinu Rajashekhar <vinutheraj@gmail.com> wrote:
> The address shown by ldd can even vary from run to run, for the same file -

yeah it's a feechur.

But still all my libs are living in high half of 32-bit space on a
running instance.

The two LOAD segments on my 9vx are :
  LOAD           0x000000 0x08048000 0x08048000 0x6f2f4 0x6f2f4 R E 0x1000
  LOAD           0x06fefc 0x080b8efc 0x080b8efc 0x77204 0x18b81c RW  0x1000

What are yours after building?

This is my libc: /lib/libc.so.6 -> libc-2.9.so

ron



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-01 21:36           ` Mathieu Lonjaret
@ 2010-05-04  8:54             ` sixforty
  2010-05-04  9:06               ` Mathieu Lonjaret
  0 siblings, 1 reply; 18+ messages in thread
From: sixforty @ 2010-05-04  8:54 UTC (permalink / raw)
  To: 9fans

The update to 10.04 has overloaded my email with messages from ubuntu's dosemu forum. Basically the same issue as with 9vx. A fix [sic] is suggested. So, question is:

On Sat, 1 May 2010 23:36:08 +0200
"Mathieu Lonjaret" <mathieu.lonjaret@gmail.com> wrote:

> Fwiw, 9vx does build and run fine on 10.04 here.
> Lemme know if I can give you some relevant info which might help.
>
> Cheers,
> Mathieu
>

Mathieu: have you perhaps applied the fix to run some emulator, and it's "fixing" 9vx?
--
sixforty <six@sixforty.net>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
  2010-05-04  8:54             ` sixforty
@ 2010-05-04  9:06               ` Mathieu Lonjaret
       [not found]                 ` <20100504054649.4efc6abb.rdeering@sixforty.net>
  0 siblings, 1 reply; 18+ messages in thread
From: Mathieu Lonjaret @ 2010-05-04  9:06 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 258 bytes --]

Not that I know of.  it's a lucid lynx install I did when it was still
in beta and I haven't kept it up to date since then, so maybe that's
where the difference lies.
How do I check if that fix you're speaking of is installed or not?

Cheers,
Mathieu

[-- Attachment #2: Type: message/rfc822, Size: 4247 bytes --]

From: sixforty <six@sixforty.net>
To: 9fans@9fans.net
Subject: Re: [9fans] 9vx and ubuntu 10.04LTS
Date: Tue, 4 May 2010 04:54:50 -0400
Message-ID: <20100504045450.5d14892c.six@sixforty.net>

The update to 10.04 has overloaded my email with messages from ubuntu's dosemu forum. Basically the same issue as with 9vx. A fix [sic] is suggested. So, question is:

On Sat, 1 May 2010 23:36:08 +0200
"Mathieu Lonjaret" <mathieu.lonjaret@gmail.com> wrote:

> Fwiw, 9vx does build and run fine on 10.04 here.
> Lemme know if I can give you some relevant info which might help.
>
> Cheers,
> Mathieu
>

Mathieu: have you perhaps applied the fix to run some emulator, and it's "fixing" 9vx?
--
sixforty <six@sixforty.net>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [9fans] 9vx and ubuntu 10.04LTS
       [not found]                 ` <20100504054649.4efc6abb.rdeering@sixforty.net>
@ 2010-05-04  9:50                   ` sixforty
  0 siblings, 0 replies; 18+ messages in thread
From: sixforty @ 2010-05-04  9:50 UTC (permalink / raw)
  To: 9fans

 On Tue, 4 May 2010 11:06:29 +0200
 "Mathieu Lonjaret" <mathieu.lonjaret@gmail.com> wrote:

 > Not that I know of.  it's a lucid lynx install I did when it was still
 > in beta and I haven't kept it up to date since then, so maybe that's
 > where the difference lies.
 > How do I check if that fix you're speaking of is installed or not?
 >
 > Cheers,
 > Mathieu
 >
 /sbin/sysctl vm.mmap_min_addr

 A setting of 0 indicates that the patch has been applied. Often, root doesn't need it, but sometimes does.

 And this is my last post until I find where my email header settings have been hidden, and exterminate them. Sorry.

sixforty <six@sixforty.net>



^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2010-05-04  9:50 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-01 17:05 [9fans] 9vx and ubuntu 10.04LTS Charles Forsyth
2010-05-01 20:46 ` ron minnich
2010-05-01 20:53   ` Charles Forsyth
2010-05-01 21:00     ` ron minnich
2010-05-01 21:22       ` Charles Forsyth
2010-05-01 21:33         ` Charles Forsyth
2010-05-01 21:34           ` Iruata Souza
2010-05-01 21:39             ` Charles Forsyth
2010-05-01 21:49               ` Iruata Souza
2010-05-01 21:57                 ` Charles Forsyth
2010-05-01 22:48                   ` Vinu Rajashekhar
2010-05-01 23:06                     ` ron minnich
2010-05-01 21:36           ` Mathieu Lonjaret
2010-05-04  8:54             ` sixforty
2010-05-04  9:06               ` Mathieu Lonjaret
     [not found]                 ` <20100504054649.4efc6abb.rdeering@sixforty.net>
2010-05-04  9:50                   ` sixforty
2010-05-01 21:01     ` Charles Forsyth
2010-05-01 21:19 ` Iruata Souza

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).