Re: [Cooker] Adaptec USB2connect (aua-1420) - Laptop Cardbus Adapter

2002-05-18 Thread Roger

ok. did some reading on the pcmcia-howto docs and then just said scr*w
it and proceeded to act on my Theory, "When in doubt, hit all of the
keys."

Did some searching on google and found the following failsafe settings
for the /etc/sysconfig/pcmcia (config file):

PCMCIA=yes
PCIC=yenta_socket
#PCIC_OPTS="irq_list=5,9,10"
#PCIC_OPTS="pci_irq_list=10,10 do_scan=0"
PCIC_OPTS="pci_irq_list=11,11 do_scan=0"
CORE_OPTS="probe_io=0"
CARDMGR_OPTS="-f  "

First, i did a cardctl config to check the irq's used by the sockets
after a successful boot.  They appeared to be happily set to irq 11 per
my system, but I tested irq 10 and they also appear happy on that too.

I believe that setting CORE_OPTS="probe io=0" turns-off probing of
input/output.

I've performed several cold boots and I no longer see any boot hangs
after the pcmcia/cardmgr services are started.

So, dunno which option did the trick to avoid bootup hang/freezes with
this card. One of the above four added options did the trick tho.


Although, I still get the following hang on shutdown:

{HIGH TONE BEEP HERE}
usb.c: USB disconnect on device
usb-ohci.c: bogus NDP=255 for OHCI usb - 09:00.1
(the above two statements are repeated ~4x's)

usb-ohci.c: USB HC Takeover failed!
usb.c: USB bus 3 deregistered
usb.c: USB disconnect on device
usb-ohci.c: USB HDC TakeOver failed!
usb.c: USB bus 4 deregistered
hcd.c: remove: 09:00.2, state 3
usb.c: USB disconnect on device

{TOTAL SYSTEM HANG HERE!}
at this point kernel hacking keys no longer works.  although, I'm
thinking about making a custom "quick" shutdown script to bypass
turning-off all services since i'm on a stand-alone system.  I've just
been using the kernel hacking keys to sync/umount all drives/off or
reboot.

On Sat, 2002-05-18 at 21:54, Roger wrote:
> I need to add that on warm reboots (without a complete power-off), the
> boot process does not hang (but shutdowns still hang).
> 
> I've described a work-around for this problem on the linux-usb.org
> devices database (see url mentioned below).
> 
> On Sat, 2002-05-18 at 21:49, Roger wrote:
> > Mandrake 8.2 (linux-2.4.18-6mdk, pcmcia-cs-3.1.31-5mdk)
> > 
> > Adaptec USB2connect (aua-1420) (cardbus)
> > 
> > Dell Inspiron 8100 Laptop (Texas Instruments PCI4451 PC card Cardbus
> > Controller)
> > 
> > When trying to boot from a cold start, the boot process hangs/freezes
> > after pcmcia/cardbus services is initialized. (can't even use kernel
> > hacking keys to escape).
> > 
> > I get the same scenario when shutting down the system.
> > 
> > The only way to successfully enable this card is to only plug-in the
> > card after the system has booted and use the kernel hacking keys to
> > turn-off the system.
> > 
> > This scenario also logged at:
> > http://www.qbik.ch/usb/devices/showdev.php?id=1185
> > 
> > Also, i tried using the latest pcmcia-cs-3.1.31-7mdk failes to even load
> > the pcmcia_core/ds modules.
> > 
> > -- 
> > Roger
> > -
> > Verify my pgp/gnupg signature on my HomePage:
> > http://www.alltel.net/~rogerx/about/index.html
> -- 
> Roger
> -
> Verify my pgp/gnupg signature on my HomePage:
> http://www.alltel.net/~rogerx/about/index.html
-- 
Roger
-
Verify my pgp/gnupg signature on my HomePage:
http://www.alltel.net/~rogerx/about/index.html





[Cooker] usb-ohci is already loaded on startup

2002-05-18 Thread Roger

It appears that the startup scripts are also trying to load up the
usb-ohci more then one times. (usb-ohci shows already loaded when doing
a lsmod).

this appears, more or less, as apperance bug (non-critical).  i have an
onboard usb1.x controller and an add-in pcmcia/cardbus usb2.0
adapter/controller.  so two scripts are probably trying to load the same
module.

# lsmod |grep usb
usb-ohci   18656   0  (unused)
usb-uhci   21604   0  (unused)
usbcore58880   1  [usb-ohci ehci-hcd usb-uhci]

/var/log/messages:
May 19 01:08:31 localhost usb: Loading USB interface (usb-uhci)
succeeded 
May 19 01:08:31 localhost modprobe:
/lib/modules/2.4.18-6mdk/kernel/drivers/usb/usb-ohci.o.gz:  
May 19 01:08:31 localhost modprobe: Hint: insmod errors can be caused by
incorrect module parameters, including invalid IO or IRQ parameters 
May 19 01:08:31 localhost modprobe: init_module: No such device 
May 19 01:08:31 localhost modprobe: modprobe: insmod
/lib/modules/2.4.18-6mdk/kernel/drivers/usb/usb-ohci.o.gz failed 
May 19 01:08:31 localhost modprobe: modprobe: insmod usb-ohci failed 
May 19 01:08:31 localhost usb: Loading USB interface1 (usb-ohci) failed 
May 19 01:08:32 localhost usb: Mount USB filesystem succeeded 
May 19 01:08:32 localhost /etc/hotplug/usb.agent: ... no modules for USB
product 0/0/0


-- 
Roger
-
Verify my pgp/gnupg signature on my HomePage:
http://www.alltel.net/~rogerx/about/index.html



signature.asc
Description: This is a digitally signed message part


Re: [Cooker] Adaptec USB2connect (aua-1420) - Laptop Cardbus Adapter

2002-05-18 Thread Roger

Figured-out that line #149 of "w/etc/rc.d/init.d/pcmcia" as causing the
shutdown hang/freeze. So I commented "#/sbin/rmmod $PCIC" as follows:

if grep -q "ds  " /proc/modules ; then
echo -n " modules"
/sbin/rmmod ds
#/sbin/rmmod $PCIC
/sbin/rmmod pcmcia_core
fi
echo "."
rm -f /var/lock/subsys/pcmcia
EXITCODE=0


On Sat, 2002-05-18 at 21:54, Roger wrote:
> I need to add that on warm reboots (without a complete power-off), the
> boot process does not hang (but shutdowns still hang).
> 
> I've described a work-around for this problem on the linux-usb.org
> devices database (see url mentioned below).
> 
> On Sat, 2002-05-18 at 21:49, Roger wrote:
> > Mandrake 8.2 (linux-2.4.18-6mdk, pcmcia-cs-3.1.31-5mdk)
> > 
> > Adaptec USB2connect (aua-1420) (cardbus)
> > 
> > Dell Inspiron 8100 Laptop (Texas Instruments PCI4451 PC card Cardbus
> > Controller)
> > 
> > When trying to boot from a cold start, the boot process hangs/freezes
> > after pcmcia/cardbus services is initialized. (can't even use kernel
> > hacking keys to escape).
> > 
> > I get the same scenario when shutting down the system.
> > 
> > The only way to successfully enable this card is to only plug-in the
> > card after the system has booted and use the kernel hacking keys to
> > turn-off the system.
> > 
> > This scenario also logged at:
> > http://www.qbik.ch/usb/devices/showdev.php?id=1185
> > 
> > Also, i tried using the latest pcmcia-cs-3.1.31-7mdk failes to even load
> > the pcmcia_core/ds modules.
> > 
> > -- 
> > Roger
> > -
> > Verify my pgp/gnupg signature on my HomePage:
> > http://www.alltel.net/~rogerx/about/index.html
> -- 
> Roger
> -
> Verify my pgp/gnupg signature on my HomePage:
> http://www.alltel.net/~rogerx/about/index.html
-- 
Roger
-
Verify my pgp/gnupg signature on my HomePage:
http://www.alltel.net/~rogerx/about/index.html



signature.asc
Description: This is a digitally signed message part


Re: [Cooker] Re: [CHRPM] mozilla-1.0-0.rc2.1mdk

2002-05-18 Thread Gary Lawrence Murphy

> "R" == Reinout van Schouwen <[EMAIL PROTECTED]> writes:

>> Is there a set of mozilla RC2 binaries compiled for Mandrake
>> 8.2?

R> http://ranger.dnsalias.com/mandrake/mandrake8.2/mozilla/

A thousand thanks ... sorry about the load: I left this to download
this evening and forgot to use the wget -nr switch, so it downloaded
a whack of other dirs by mistake.

R> Biggest problem is that the Java plugin doesn't load any more
R> with a gcc3-compiled Mozilla. :-(

Which would be a killer loss for me; even with the RC1, I found that
I cannot launch Mozilla from the Gnome panel and then use Java (although
this appears to be a problem with the IBM JDK 1.3.1 that I may also
downgrade)

-- 
Gary Lawrence Murphy <[EMAIL PROTECTED]> TeleDynamics Communications Inc
Business Innovations Through Open Source Systems: http://www.teledyn.com
"Computers are useless.  They can only give you answers."(Pablo Picasso)





Re: [Cooker] What to do with unversioned libraries (amanda) ?

2002-05-18 Thread Geoffrey Lee

> >>
> >> What should I do regarding this then? Try and patch it to have versioned
> >> libraries (with packages libamada[0-9] and libamanda[0-9]-devel ?) or
> >> leave them unversioned (with packages libamanda and libamanda-devel).
> >>
> >If you leave them unversioned then that defeats the purpose.
> >Can you give an example of how the libname looks like?
> 
> These are the two RPMs (of the 4 amanda RPMs that are running on our production
> servers) that need some libification:
> 
> [bgmilne bgmilne]$ rpm -qlp rpm/RPMS/i586/amanda-devel-2.4.2p2-1mdk.i586.rpm 
> /usr/lib/libamanda.a
> /usr/lib/libamanda.la
> /usr/lib/libamclient.a
> /usr/lib/libamclient.la
> /usr/lib/libamserver.a
> /usr/lib/libamserver.la
> /usr/lib/libamtape.a
> /usr/lib/libamtape.la


These are unversioned. But I think that we can follow the dynamic library way
of linking.

This does mean, that no more than one unversioned static library can be 
installed at the same time. Which is not really a problem, since you only 
need this to build stuff, not run stuff.

> [bgmilne bgmilne]$ rpm -qlp rpm/RPMS/i586/amanda-2.4.2p2-1mdk.i586.rpm 
> /etc/amanda
> /etc/amandates
> /usr/lib/libamanda-2.4.2p2.so
> /usr/lib/libamanda.so
> /usr/lib/libamtape-2.4.2p2.so
> /usr/lib/libamtape.so
> /usr/sbin/amrestore
> /usr/share/man/man8/amrestore.8.bz2
> /var/lib/amanda/.amandahosts
> /var/lib/lib/amanda
> 


It would seem that it would be reasonable to use 2.4.2p2 as the library
version.

You'll probably need to put some extra hacks here and there, e.g. if ldd'ing a
program linked to libamanda the output that it's linked to libamanda.so and
not libamanda-2.4.2p2.so (yes, using nonstandard naming may confuse the
linker) then you'll probably need to hack around it somehow, as programs
built with 2.4.2p2 may not be binary compatible with programs built on say,
a previous version.


-- Geoff.





[Cooker] Re: [CHRPM] gcc-3.1-1mdk

2002-05-18 Thread skidley

> > 
> > Here's some interesting times from time -p of a kernel build(both with
> > clean trees from scratch) and the same system conditions. System is a
> > p2 400, 192 MB RAM
> > 
> > gcc-3.1-1mdk:  real: 1787.50
> >user: 1644.70
> >sys:  112.03
> > 
> > gcc-2.96-0.76mdk: real: 1569.71
> >   user: 1413.98
> >   sys:  129.74
> > 
> 
> Have you rebooted in between?
> 
> -andrej
> 
> 
With tarring/patching tree and rebooting each time to start the build
fresh here are the times:

gcc-3.1-1mdk: real: 1869.81 s
  user: 1688.78 s
  sys : 114.44 s

gcc-2.96-0.76mdk: real: 1735.07 
  user: 1522.74
  sys : 146.46
-- 
*
* Chad Young*
* Registered Linux User #195191 *
*




Re: [Cooker] Adaptec USB2connect (aua-1420) - Laptop Cardbus Adapter

2002-05-18 Thread Roger

I need to add that on warm reboots (without a complete power-off), the
boot process does not hang (but shutdowns still hang).

I've described a work-around for this problem on the linux-usb.org
devices database (see url mentioned below).

On Sat, 2002-05-18 at 21:49, Roger wrote:
> Mandrake 8.2 (linux-2.4.18-6mdk, pcmcia-cs-3.1.31-5mdk)
> 
> Adaptec USB2connect (aua-1420) (cardbus)
> 
> Dell Inspiron 8100 Laptop (Texas Instruments PCI4451 PC card Cardbus
> Controller)
> 
> When trying to boot from a cold start, the boot process hangs/freezes
> after pcmcia/cardbus services is initialized. (can't even use kernel
> hacking keys to escape).
> 
> I get the same scenario when shutting down the system.
> 
> The only way to successfully enable this card is to only plug-in the
> card after the system has booted and use the kernel hacking keys to
> turn-off the system.
> 
> This scenario also logged at:
> http://www.qbik.ch/usb/devices/showdev.php?id=1185
> 
> Also, i tried using the latest pcmcia-cs-3.1.31-7mdk failes to even load
> the pcmcia_core/ds modules.
> 
> -- 
> Roger
> -
> Verify my pgp/gnupg signature on my HomePage:
> http://www.alltel.net/~rogerx/about/index.html
-- 
Roger
-
Verify my pgp/gnupg signature on my HomePage:
http://www.alltel.net/~rogerx/about/index.html



signature.asc
Description: This is a digitally signed message part


[Cooker] Adaptec USB2connect (aua-1420) - Laptop Cardbus Adapter

2002-05-18 Thread Roger

Mandrake 8.2 (linux-2.4.18-6mdk, pcmcia-cs-3.1.31-5mdk)

Adaptec USB2connect (aua-1420) (cardbus)

Dell Inspiron 8100 Laptop (Texas Instruments PCI4451 PC card Cardbus
Controller)

When trying to boot from a cold start, the boot process hangs/freezes
after pcmcia/cardbus services is initialized. (can't even use kernel
hacking keys to escape).

I get the same scenario when shutting down the system.

The only way to successfully enable this card is to only plug-in the
card after the system has booted and use the kernel hacking keys to
turn-off the system.

This scenario also logged at:
http://www.qbik.ch/usb/devices/showdev.php?id=1185

Also, i tried using the latest pcmcia-cs-3.1.31-7mdk failes to even load
the pcmcia_core/ds modules.

-- 
Roger
-
Verify my pgp/gnupg signature on my HomePage:
http://www.alltel.net/~rogerx/about/index.html



signature.asc
Description: This is a digitally signed message part


Re: [Cooker] Galeon Crash

2002-05-18 Thread Dave Seff

> Hm, do you use a (local) proxy?

No, I just go through a Linux firewall connected directly to a cable
modem. 

-Dave





[Cooker] emacs & xemacs installation (latest version)

2002-05-18 Thread LukenShiro

During emacs-* and xemacs-* installation these problems appear:

emacs-nox   ##
error: execution of %post scriptlet from emacs-nox-21.2-5mdk failed, exit status 1
[...]
xemacs-info ##
install-info: warning: no info dir entry in `/usr/share/info/xemacs/emodules.info.bz2'
install-info: menu item `Tm-Mh-E-Ja' already exists, for file `(none)'
install-info: warning: no info dir entry in 
`/usr/share/info/xemacs/tm-view-en.info.bz2'
install-info: warning: no info dir entry in 
`/usr/share/info/xemacs/tm-view-ja.info.bz2'
install-info: menu item `Tm-Vm' already exists, for file `(none)'

-- 
LU #210970 LM #98222 - MDK8.2 elaborata / 2.4.18-ac3
Ricorda: i motori di ricerca ti vogliono bene, non abbandonarli!!
Netiquette al contrario (volutamente ironica): 
http://www.geocities.com/Athens/Parthenon/9704/galareteo.html





[Cooker] New horde2, imp3, and turba packages uploaded

2002-05-18 Thread David Walser

Packages uploaded to:
ftp://ftp.linux-mandrake.com/incoming/

Wow, you all really need to clean that directory out
:o)

Packages are updated to the newest RC versions, and
have some additional bugfixes and improvements.

I have a couple questions for future improvements:
1) Would it be possible for the From: when you send
from imp not just be the e-mail address but "Users's
full name from /etc/passwd" 

2) Would it be possible for turba to somehow work out
of the box?  :o)
Turba uses either LDAP (shared addy book) or SQL
(personal addy book), and I don't know what's needed
to get the LDAP one to work, but for SQL, they include
an SQL script that needs to be run first, and I was
wondering if that could somehow be automated?

Thanks, and enjoy!

__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com




Re: [Cooker] Galeon Crash

2002-05-18 Thread Murray J. Root

On Sat, 18 May 2002 19:56:31 -0400 Alexander Skwar <[EMAIL PROTECTED]> 
wrote:

> So sprach Dave Seff am 2002-05-18 um 11:37:02 -0400 :
> > Latest Cooker package for galeon
> > 
> > just put ww.linuxtoday.com in the location bar. Crashes every time
> > Notice the 2 w's. 
> 
> Please see http://bugzilla.gnome.org/show_bug.cgi?id=82221
> 

Doesn't happen here - no local proxies in use.
Just get server not found.

-- 
Murray J. Root

DISCLAIMER: http://www.goldmark.org/jeff/stupid-disclaimers/

Mandrake on irc.openprojects.net:
  #mandrake & #mandrake-linux = help for newbies
  #mandrakeguru = advanced discussions  #mdk-cooker = Mandrake Cooker




Re: [Cooker] Galeon Crash

2002-05-18 Thread Alexander Skwar

So sprach Dave Seff am 2002-05-18 um 11:37:02 -0400 :
> Latest Cooker package for galeon
> 
> just put ww.linuxtoday.com in the location bar. Crashes every time
> Notice the 2 w's. 

Please see http://bugzilla.gnome.org/show_bug.cgi?id=82221

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  |Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 2 hours 11 minutes




Re: [Cooker] evolution-1.0.5-1mdk crashes when adding attachment

2002-05-18 Thread Alexander Skwar

So sprach Frederik Himpe am 2002-05-18 um 19:44:52 +0200 :
> #3  0x40a5bea9 in gnome_icon_entry_get_type () from
> /usr/lib/libgnomeui.so.32

Hm, also gnome_icon_entry_get_type, just like in MGT and galeon.

Did something change in this function in hte last libgnomeui?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  |Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 1 hour 48 minutes




Re: [Cooker] Galeon Crash

2002-05-18 Thread Alexander Skwar

So sprach Alexander Skwar am 2002-05-18 um 19:12:27 -0400 :
> Galeon is very unstable for me, I switched back to Mozilla because of
> this :(

Here's a backtrace:

Backtrace was generated from '/usr/bin/galeon-bin'

(no debugging symbols found)...(no debugging symbols found)...[New Thread 1024 (LWP 
16578)]
[New Thread 2049 (LWP 16586)]
[New Thread 1026 (LWP 16587)]
[New Thread 2051 (LWP 16588)]
[New Thread 3076 (LWP 16589)]
[New Thread 4101 (LWP 16590)]

0x40a17019 in wait4 () from /lib/libc.so.6
#0  0x40a17019 in wait4 () from /lib/libc.so.6
#1  0x40a9197c in sys_sigabbrev () from /lib/libc.so.6
#2  0x402c6585 in waitpid (pid=17294, stat_loc=0xbfffe37c, options=0)
at wrapsyscall.c:174
#3  0x40500ea9 in gnome_icon_entry_get_type () from /usr/lib/libgnomeui.so.32

Thread 6 (Thread 4101 (LWP 16590)):
#0  0x40a173b1 in nanosleep () from /lib/libc.so.6
No symbol table info available.
#1  0x402c3075 in __pthread_timedsuspend_new (self=0x841a8e4, 
abstime=0x8424bd8) at pthread.c:1151
unblock = {__val = {0 , 138562536, 139227048, 
3206543892, 1076690248, 138562520, 0, 3206543876, 1076626430, 3206544384, 
3206543948, 138562520, 138562520, 1075330988, 1075330656, 138520804, 
1076625936}}
initial_mask = {__val = {136263744, 1075126656, 3206543636, 
1075268046, 135988160, 3206543628, 136263728, 0, 1, 136263728, 4294967295, 
0, 0, 0, 0, 0, 2147483648, 0 }}
was_signalled = -4
jmpbuf = {{__jmpbuf = {0, 0, 0, 0, 0, 0}, __mask_was_saved = 0, 
__saved_mask = {__val = {1075374120, 3206543596, 1073772224, 1075161987, 
1075374120, 1075161987, 1075161987, 0, 1076647790, 135988160, 
1084849680, 0, 1076647790, 135988160, 1075126656, 3206543556, 
1076690248, 2147483648, 0, 3206543588, 1076625678, 136263732, 
136263732, 3206543588, 1075215437, 136263744, 135988152, 3206543604, 
1075215418, 136263744, 1075330988, 3206543716
#2  0x402c03fe in pthread_cond_timedwait_relative (cond=0x841a8e4, 
mutex=0x8424bd8, abstime=0xbf1ffa4c) at restart.h:45
self = (struct _pthread_descr_struct * volatile) 0xbf1ffc00
already_canceled = 0
extr = {pu_object = 0x841a8e4, 
  pu_extricate_func = 0x402c0210 }
spurious_wakeup_count = 0
#3  0x40173a2b in PR_WaitCondVar () from /usr/lib/libnspr4.so
No symbol table info available.
#4  0x40108387 in TimerThread::Run() () from /usr/lib/libxpcom.so
No symbol table info available.
#5  0x401045a7 in nsThread::Main(void*) () from /usr/lib/libxpcom.so
No symbol table info available.
#6  0x4017b6ef in PR_GetSP () from /usr/lib/libnspr4.so
No symbol table info available.
#7  0x402c17c5 in pthread_start_thread (arg=0x0) at manager.c:291
request = {req_thread = 0x0, req_kind = REQ_CREATE, req_args = {
create = {attr = 0x0, fn = 0, arg = 0x0, mask = {__val = {
  0 }}}, free = {thread_id = 0}, exit = {code = 0}, 
post = 0x0, for_each = {fn = 0, arg = 0x0}}}
outcome = (void *) 0xfffc

Thread 5 (Thread 3076 (LWP 16589)):
#0  0x409a4142 in sigsuspend () from /lib/libc.so.6
No symbol table info available.
#1  0x402c2f60 in __pthread_wait_for_restart_signal (self=0xbf3ffc00)
at pthread.c:1004
mask = {__val = {0, 0, 3208640812, 1087409514, 1087822944, 0, 
3208640756, 1075048828, 139731704, 139731284, 0, 0, 3208640988, 
3208640988, 3208641028, 1087258977, 3208640972, 0, 3, 1076647790, 0, 
136511204, 1087809832, 1076647246, 136511204, 136511204, 3208640836, 
1076690248, 136511056, 0, 3208640852, 1076634075}}
#2  0x402bff3d in pthread_cond_wait (cond=0x0, mutex=0x822fe50) at restart.h:34
self = (struct _pthread_descr_struct * volatile) 0xbf3ffc00
extr = {pu_object = 0x822feb4, 
  pu_extricate_func = 0x402c0210 }
already_canceled = 0
spurious_wakeup_count = 0
#3  0x40173ab6 in PR_WaitCondVar () from /usr/lib/libnspr4.so
No symbol table info available.
#4  0x401055e2 in nsThreadPool::GetRequest(nsIThread*) ()
   from /usr/lib/libxpcom.so
No symbol table info available.
#5  0x40105f49 in nsThreadPoolRunnable::Run() () from /usr/lib/libxpcom.so
No symbol table info available.
#6  0x401045a7 in nsThread::Main(void*) () from /usr/lib/libxpcom.so
No symbol table info available.
#7  0x4017b6ef in PR_GetSP () from /usr/lib/libnspr4.so
No symbol table info available.
#8  0x402c17c5 in pthread_start_thread (arg=0x0) at manager.c:291
request = {req_thread = 0x0, req_kind = REQ_CREATE, req_args = {
create = {attr = 0x0, fn = 0, arg = 0x0, mask = {__val = {
  0 }}}, free = {thread_id = 0}, exit = {code = 0}, 
post = 0x0, for_each = {fn = 0, arg = 0x0}}}
outcome = (void *) 0xfffc

Thread 4 (Thread 2051 (LWP 16588)):
#0  0x409a4142 in sigsuspend () from /lib/libc.so.6
No symbol table info available.
#1  0x402c2f60 in __pthread_wait_for_restart_signal (self=0xbf5ffc00)
at pthread.c:1004
mask = {__val = {0, 0, 3210738004, 1076648014, 136496352, 1075310337, 

Re: [Cooker] Galeon Crash

2002-05-18 Thread Alexander Skwar

So sprach Dave Seff am 2002-05-18 um 11:37:02 -0400 :
> Latest Cooker package for galeon
> 
> just put ww.linuxtoday.com in the location bar. Crashes every time
> Notice the 2 w's. 

Same here.

Hm, do you use a (local) proxy?

Galeon is very unstable for me, I switched back to Mozilla because of
this :(

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  |Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 1 hour 27 minutes




[Cooker] failed dependencies: drakconf-0.96-16mdk needs drakfloppy (drakxtools?)

2002-05-18 Thread Stefan

Hi List,

(re) install of DrakConf failed because of the missing drakfloppy
package:
drakxtools-newt has an /usr/sbin/drakfloppy which is also an X App. The
drakfloppy package is obsolete - nothing is missed, so where is the
problem?

Hey, Yah m-de-ka
Stefan.




Re: [Cooker] some broken symlinks: drakxtools, openssh-clients

2002-05-18 Thread Pixel

Stefan <[EMAIL PROTECTED]> writes:

> drakxtools-1.1.7-98mdk:
> /usr/X11R6/bin/Xconfigurator -> ../sbin/XFdrake
> -> should point to ../../sbin/XFdrake (look at the scripts)

ok, anyway the Xconfigurator symlink should be dropped now (was for
compatibility when XFdrake was introduced replacing redhat's
Xconfigurator.




[Cooker] Horde and Imp

2002-05-18 Thread David Walser

Just another note that there are RC3s for Horde, Imp,
and Turba:

http://www.horde.org/imp/download/

and I think the Maintenance bug I'm experiencing is
probably a Horde bug, not an Imp one.

__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com




[Cooker] hwclock hangs

2002-05-18 Thread Alexander Skwar

Hi.

Some weeks ago, I reported that I cannot boot/shutdown cleanly anymore
because hwclock hangs.

This is still the case.

Here's the strace of a hanging "hwclock --systohc --utc" call:


execve("/sbin/hwclock", ["/sbin/hwclock", "--systohc", "--utc"], [/* 39 vars */]) = 0
uname({sys="Linux", node="teich.garten.digitalprojects.com", ...}) = 0
brk(0)  = 0x8051454
open("/etc/ld.so.preload", O_RDONLY)= -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=66691, ...}) = 0
mmap2(NULL, 66691, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40011000
close(3)= 0
open("/lib/libc.so.6", O_RDONLY)= 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\200"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0755, st_size=1144204, ...}) = 0
mmap2(NULL, 1160864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40022000
mprotect(0x40134000, 38560, PROT_NONE)  = 0
mmap2(0x40134000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x111) = 
0x40134000
mmap2(0x4013a000, 13984, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, 
-1, 0) = 0x4013a000
close(3)= 0
munmap(0x40011000, 66691)   = 0
gettimeofday({1021760311, 275356}, NULL) = 0
brk(0)  = 0x8051454
brk(0x805147c)  = 0x805147c
brk(0x8052000)  = 0x8052000
open("/usr/share/locale/locale.alias", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=2601, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40011000
read(3, "# Locale name alias data base.\n#"..., 4096) = 2601
brk(0x8053000)  = 0x8053000
read(3, "", 4096)   = 0
close(3)= 0
munmap(0x40011000, 4096)= 0
open("/usr/share/locale/de_DE/LC_IDENTIFICATION", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=438, ...}) = 0
mmap2(NULL, 438, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40011000
close(3)= 0
open("/usr/share/locale/de_DE/LC_MEASUREMENT", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=29, ...}) = 0
mmap2(NULL, 29, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40012000
close(3)= 0
open("/usr/share/locale/de_DE/LC_TELEPHONE", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=62, ...}) = 0
mmap2(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40013000
close(3)= 0
open("/usr/share/locale/de_DE/LC_ADDRESS", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=165, ...}) = 0
mmap2(NULL, 165, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000
close(3)= 0
open("/usr/share/locale/de_DE/LC_NAME", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=88, ...}) = 0
mmap2(NULL, 88, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40015000
close(3)= 0
open("/usr/share/locale/de_DE/LC_PAPER", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=40, ...}) = 0
mmap2(NULL, 40, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40016000
close(3)= 0
open("/usr/share/locale/de_DE/LC_MESSAGES", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFDIR|0755, st_size=16, ...}) = 0
close(3)= 0
open("/usr/share/locale/de_DE/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=60, ...}) = 0
mmap2(NULL, 60, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40017000
close(3)= 0
open("/usr/share/locale/de_DE/LC_MONETARY", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=292, ...}) = 0
mmap2(NULL, 292, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40018000
close(3)= 0
open("/usr/share/locale/de_DE/LC_COLLATE", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=22592, ...}) = 0
mmap2(NULL, 22592, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40019000
close(3)= 0
open("/usr/share/locale/de_DE/LC_TIME", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=2381, ...}) = 0
mmap2(NULL, 2381, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4001f000
close(3)= 0
open("/usr/share/locale/de_DE/LC_NUMERIC", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=60, ...}) = 0
mmap2(NULL, 60, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4002
close(3)= 0
open("/usr/share/locale/de_DE/LC_CTYPE", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=201916, ...}) = 0
mmap2(NULL, 201916, PROT_READ, MAP_PRIVATE, 3, 0) = 0x4013e000
close(3)= 0
getuid32()  = 0
open("/dev/rtc", O_RDONLY|O_LARGEFILE)  = 3
close(3)= 0
stat64("/etc/adjtime", {st_mode=S_IFREG|0644, st_size=45, ...}) = 0
brk(0x8054000)  = 0x8054000
open("/etc/adjtime", O_RDO

[Cooker] mailq is missing - not

2002-05-18 Thread Alexander Skwar

Hm, something seems to be buggy in the case when the postfix rpm is
updated.  I now removed postfix and reinstalled it, and mailq is there
again.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  |Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 0 hours 28 minutes




[Cooker] some broken symlinks: drakxtools, openssh-clients

2002-05-18 Thread Stefan

Hi List,

by cleaning my system I found broken symlinks - not correctly recreated
by removing/installing the participating packages.

The search cmd was:
symlinks -t /sbin /usr/sbin /bin /usr/bin /usr/X11R6/bin /usr/local/bin
/usr/local/sbin|grep dangling

The nominees are

drakxtools-1.1.7-98mdk:
/usr/X11R6/bin/Xconfigurator -> ../sbin/XFdrake
-> should point to ../../sbin/XFdrake (look at the scripts)

openssh-clients-3.2.2p1-1mdk:
/usr/bin/ssh-askpass -> ../../usr/lib/ssh/ssh-askpass
-> but only if openssh-askpass-3.2.2p1-1mdk is installed.
openssh-clients has no requirement to openssh-askpass so the link is
death

mdk is GREAT
Stefan.








Re: [Cooker] (8.2) OpenOffice.org crash with new presentation

2002-05-18 Thread Danny Tholen

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> 2)Crash when starting a new presentation (An unrecovereable error has
> occured ...). Opening exising presentations works fine.
Not here, I think you have to delete your .openoffice dir.

Danny

- -- 
"You're very sure of your facts, " he said at last, "I 
couldn't trust the thinking of a man who takes the Universe 
- - if there is one - for granted. "
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE85r+1aeiN+EU2vEIRAtefAJ4xFZeOaNn4HwLKQ44609mSOpIrSQCcC2oD
r2S6el+MeNetucCTdymwiP4=
=m3Dp
-END PGP SIGNATURE-




[Cooker] IMP 3.1 RC3 is out today

2002-05-18 Thread David Walser

Before you update the package, figured you might want
to know that.  :o)

__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com




[Cooker] php-mysql conflicts with php-recode?

2002-05-18 Thread Alexander Skwar

Hi!

Why does php-mysql conflict with php-recode?  Both can be used at the
same time just fine, if they are listed in the correct order.

Could the conflict please be removed?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  |Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 5 hours 15 minutes




Re: [Cooker] What to do with unversioned libraries (amanda) ?

2002-05-18 Thread Buchan Milne



[EMAIL PROTECTED], [EMAIL PROTECTED] wrote:
>
>On Thu, May 16, 2002 at 08:05:16PM +0200, Buchan Milne wrote:
>> I have got an RPM for amanda (based on the RedHat one), which we are
>> using in production now (with the mtx that just went in to cooker).
>> Amanda has unversioned libraries though, and rpmlint gives a lot of
>> errors regarding this.
>>
>> What should I do regarding this then? Try and patch it to have versioned
>> libraries (with packages libamada[0-9] and libamanda[0-9]-devel ?) or
>> leave them unversioned (with packages libamanda and libamanda-devel).
>>
>If you leave them unversioned then that defeats the purpose.
>Can you give an example of how the libname looks like?

These are the two RPMs (of the 4 amanda RPMs that are running on our production
servers) that need some libification:

[bgmilne bgmilne]$ rpm -qlp rpm/RPMS/i586/amanda-devel-2.4.2p2-1mdk.i586.rpm 
/usr/lib/libamanda.a
/usr/lib/libamanda.la
/usr/lib/libamclient.a
/usr/lib/libamclient.la
/usr/lib/libamserver.a
/usr/lib/libamserver.la
/usr/lib/libamtape.a
/usr/lib/libamtape.la
[bgmilne bgmilne]$ rpm -qlp rpm/RPMS/i586/amanda-2.4.2p2-1mdk.i586.rpm 
/etc/amanda
/etc/amandates
/usr/lib/libamanda-2.4.2p2.so
/usr/lib/libamanda.so
/usr/lib/libamtape-2.4.2p2.so
/usr/lib/libamtape.so
/usr/sbin/amrestore
/usr/share/man/man8/amrestore.8.bz2
/var/lib/amanda/.amandahosts
/var/lib/lib/amanda

Hack the makefile? Arbitrarily name the lib package to 0? I have asked about the use
of unversioned libs on the amanda mailing list to no avail so far ...

Or maybe thy're just versioning them in a weird way?
-rwxr-xr-x1 root root85808 Apr 25 00:16 /usr/lib/libamanda-2.4.2p2.so*
lrwxr-xr-x1 root root   20 May 18 21:56 /usr/lib/libamanda.so ->
libamanda-2.4.2p2.so*
-rwxr-xr-x1 root root 9532 Apr 25 00:16 /usr/lib/libamtape-2.4.2p2.so*
lrwxr-xr-x1 root root   20 May 18 21:56 /usr/lib/libamtape.so ->
libamtape-2.4.2p2.so*

Thanks
Buchan





Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread Giuseppe Ghibò

Oden Eriksson wrote:

> 
> On Saturdayen den 18 May 2002 07.21, David Walser wrote:
> > With the current imp3 package in contrib, everytime
> > you login it asks you to do maintenance, and whethere
> > you do it (dunno if it sucessfully does it) or skip it
> > it asks you again next time you log in.
> 
> Is it a php thingy?

Probably, because php 4.2.X was the only thing changed. I'll look at it ASAP.

Maybe I'll upgrade to 3.1RC1 (unless the patch for password changing
doesn't work).

> 
> All php web applications needs to be changed to require nessesary php
> extensions in order to work. This is because the current php setup when most
> php extensions are split into subpackages. For example php-4.2.0 + php-common
> + mod_php does not provide session, posix etc. These are now availible as
> php-session, php-posix, etc.
>

Bye.
Giuseppe.





Re: [Cooker] evolution-1.0.5-1mdk crashes when adding attachment

2002-05-18 Thread Joseph Davidson


On Sat, 2002-05-18 at 13:58, John Allen wrote:
> Frederik Himpe wrote:
> 
> >Hi,
> >
> >Anybody else having problems when attaching a file to an e-mail in the
> >latest evolution?
> >evolution-1.0.5-1mdk
> >
> >Here it crashes, with this backtrace from bug-buddy:
> >
> >Backtrace was generated from '/usr/bin/evolution-mail'
> >  
> >
> Yep same problem.
> 
> 
> 
I get the same problem.





Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread Oden Eriksson

On Saturdayen den 18 May 2002 20.29, David Walser wrote:
> --- Oden Eriksson <[EMAIL PROTECTED]> wrote:
> > On Saturdayen den 18 May 2002 16.38, David Walser

> > Sorry, can't help you there. I know nothing about
> > IMP. I tried to hint you in
> > the right direction..., you _might_ need to install
> > more php extensions that
> > are not listed as dependant from the imp package.
> > AFAIK. The only packages
> > that is fixed at this point is nisca and cacti.
>
> Oh, ok.  Thanks.  I just assumed you were the
> maintainer :o)  I'm actually using the Cooker imp3,
> turba, and horde3 packages with the 8.2 PHP stuff,
> which isn't all split up like that far as I can tell.

Ok, then you should have mentioned the fact you were using cooker apps on a 
non cooker machine...

I suspect there will take some time before the extensions can be rebuilt with 
the new system compiler.

-- 
Regards // Oden Eriksson




Re: [Cooker] urpmq -rd does not list all dependencies

2002-05-18 Thread Charles A Edwards

On Sat, 18 May 2002 19:07:27 +0400
Borsenkow Andrej <[EMAIL PROTECTED]> wrote:

> Is it supposed to list all dependencies?
> 
> urpmq -rd snf-en | grep mod_perl
> => apache-mod_perl-1.3.24_1.26-2md
> 
> but it requires mod_perl-common that is _not_ listed.
 

and it adds unnecessary to apache
 
 urpmq -rd snf-en | grep apache
apache-conf-1.3.24-1mdk
apache-common-1.3.24-2mdk
mod_ssl-2.8.8-2mdk|apache2-modules-2.0.37-0.20020516.1mdk
apache-mod_perl-1.3.24_1.26-2mdk|apache-1.3.24-2mdk
  

 Charles




Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread David Walser


--- Oden Eriksson <[EMAIL PROTECTED]> wrote:
> On Saturdayen den 18 May 2002 16.38, David Walser
> wrote:
> > --- Oden Eriksson <[EMAIL PROTECTED]>
> wrote:
> > > On Saturdayen den 18 May 2002 07.21, David
> Walser
> > >
> > > wrote:
> > > > With the current imp3 package in contrib,
> > >
> > > everytime
> > >
> > > > you login it asks you to do maintenance, and
> > >
> > > whethere
> > >
> > > > you do it (dunno if it sucessfully does it) or
> > >
> > > skip it
> > >
> > > > it asks you again next time you log in.
> > >
> > > Is it a php thingy?
> > >
> > > All php web applications needs to be changed to
> > > require nessesary php
> > > extensions in order to work. This is because the
> > > current php setup when most
> > > php extensions are split into subpackages. For
> > > example php-4.2.0 + php-common
> > > + mod_php does not provide session, posix etc.
> These
> > > are now availible as
> > > php-session, php-posix, etc.
> >
> > Say what?  :o)  I have all the packages installed
> that
> > are listed as dependencies.  The "maintainence" it
> > asks to do are the following:
> >
> > The current folder(s) "Sent" will be renamed to
> > "Sent-apr-2002".
> >
> > All old sent-mail folders more than 12 months old
> will
> > be deleted.
> >
> > All messages in your "Trash" folder older than 30
> days
> > will be permanently deleted.
> 
> Sorry, can't help you there. I know nothing about
> IMP. I tried to hint you in 
> the right direction..., you _might_ need to install
> more php extensions that 
> are not listed as dependant from the imp package.
> AFAIK. The only packages 
> that is fixed at this point is nisca and cacti.

Oh, ok.  Thanks.  I just assumed you were the
maintainer :o)  I'm actually using the Cooker imp3,
turba, and horde3 packages with the 8.2 PHP stuff,
which isn't all split up like that far as I can tell.

rpmmon says ghibo is the maintainer.  Maybe an upgrade
of imp3 to 3.1 RC2 would do it?  ::shrug::

__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com




[Cooker] MakeCD script does not accept the --noisolinux that mkcd does

2002-05-18 Thread John Allen







[Cooker] evolution-1.0.5-1mdk crashes when adding attachment

2002-05-18 Thread Frederik Himpe

Hi,

Anybody else having problems when attaching a file to an e-mail in the
latest evolution?
evolution-1.0.5-1mdk

Here it crashes, with this backtrace from bug-buddy:

Backtrace was generated from '/usr/bin/evolution-mail'

(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...[New
Thread 1024 (LWP 2499)]
[New Thread 2049 (LWP 2526)]
[New Thread 1026 (LWP 2527)]
[New Thread 4099 (LWP 2530)]
[New Thread 3076 (LWP 2529)]
[New Thread 5125 (LWP 2554)]

0x411b2019 in wait4 () from /lib/libc.so.6
#0  0x411b2019 in wait4 () from /lib/libc.so.6
#1  0x4122c97c in sys_sigabbrev () from /lib/libc.so.6
#2  0x40cfd585 in waitpid (pid=2646, stat_loc=0xbfffdbbc, options=0)
at wrapsyscall.c:174
#3  0x40a5bea9 in gnome_icon_entry_get_type () from
/usr/lib/libgnomeui.so.32
#4  0x4113f048 in sigaction () from /lib/libc.so.6
#5  0x41184429 in free () from /lib/libc.so.6
#6  0x41104110 in g_free () from /usr/lib/libglib-1.2.so.0

Thread 6 (Thread 5125 (LWP 2554)):
#0  0x4113f142 in sigsuspend () from /lib/libc.so.6
No symbol table info available.
#1  0x40cf9f60 in __pthread_wait_for_restart_signal (self=0xbf1ffc00)
at pthread.c:1004
mask = {__val = {0, 0, 0, 1087401288, 1074559656, 135345632, 
3206543716, 1087360014, 1074559672, 0, 0, 1087359054, 1074567920, 1,
135780568, 1087360014, 0, 0, 0, 1087401288, 1092783088, 16,
3206543780, 
1087359054, 1092783104, 1074559688, 3206543812, 1087401288,
135740048, 0, 
3206543812, 1087345176}}
#2  0x40cf6f3d in pthread_cond_wait (cond=0x0, mutex=0x8173a90) at
restart.h:34
self = (struct _pthread_descr_struct * volatile) 0xbf1ffc00
extr = {pu_object = 0x8173ab0, 
  pu_extricate_func = 0x40cf7210 }
already_canceled = 0
spurious_wakeup_count = 0
#3  0x400b337d in e_msgport_wait () from /usr/lib/libcamel.so.0
No symbol table info available.

Thread 5 (Thread 3076 (LWP 2529)):
#0  0x4113f142 in sigsuspend () from /lib/libc.so.6
No symbol table info available.
#1  0x40cf9f60 in __pthread_wait_for_restart_signal (self=0xbf3ffc00)
at pthread.c:1004
mask = {__val = {0, 0, 0, 1087359054, 1074567920, 1, 135780568, 
1087360014, 0, 1074559688, 0, 1087359054, 1074559688, 1094725904, 
3208640900, 1087360014, 0, 1074559656, 0, 1087401288, 1094714400,
16, 
3208640932, 1087359054, 1094714416, 1074559656, 0, 1087401288,
135739880, 
0, 3208640964, 1087345176}}
#2  0x40cf6f3d in pthread_cond_wait (cond=0x0, mutex=0x81739e8) at
restart.h:34
self = (struct _pthread_descr_struct * volatile) 0xbf3ffc00
extr = {pu_object = 0x8173a08, 
  pu_extricate_func = 0x40cf7210 }
already_canceled = 0
spurious_wakeup_count = 0
#3  0x400b337d in e_msgport_wait () from /usr/lib/libcamel.so.0
No symbol table info available.

Thread 4 (Thread 4099 (LWP 2530)):
#0  0x4113f142 in sigsuspend () from /lib/libc.so.6
No symbol table info available.
#1  0x40cf9f60 in __pthread_wait_for_restart_signal (self=0xbf5ffc00)
at pthread.c:1004
mask = {__val = {0, 0, 0, 1087360014, 0, 1092783088, 0, 1087360014, 
2527, 32, 0, 0, 0, 1087401288, 3210738068, 1087360014, 135868868, 
135868868, 3210738068, 1087401288, 1092783088, 16, 3210738084,
1087359054, 
1092783104, 135868856, 138455616, 1087401288, 135740048, 0,
3210738116, 
1087345176}}
#2  0x40cf6f3d in pthread_cond_wait (cond=0x0, mutex=0x8173a90) at
restart.h:34
self = (struct _pthread_descr_struct * volatile) 0xbf5ffc00
extr = {pu_object = 0x8173ab0, 
  pu_extricate_func = 0x40cf7210 }
already_canceled = 0
spurious_wakeup_count = 0
#3  0x400b337d in e_msgport_wait () from /usr/lib/libcamel.so.0
No symbol table info available.

Thread 3 (Thread 1026 (LWP 2527)):
#0  

Re: [Cooker] Galeon Crash

2002-05-18 Thread Charles A Edwards

On 18 May 2002 11:37:02 -0400
Dave Seff <[EMAIL PROTECTED]> wrote:

> Latest Cooker package for galeon
> 
> just put ww.linuxtoday.com in the location bar. Crashes every time
> Notice the 2 w's. 
   

Not here.
All I get is Can not be found, please check address and try again.

 
Charles




Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread Oden Eriksson

On Saturdayen den 18 May 2002 16.38, David Walser wrote:
> --- Oden Eriksson <[EMAIL PROTECTED]> wrote:
> > On Saturdayen den 18 May 2002 07.21, David Walser
> >
> > wrote:
> > > With the current imp3 package in contrib,
> >
> > everytime
> >
> > > you login it asks you to do maintenance, and
> >
> > whethere
> >
> > > you do it (dunno if it sucessfully does it) or
> >
> > skip it
> >
> > > it asks you again next time you log in.
> >
> > Is it a php thingy?
> >
> > All php web applications needs to be changed to
> > require nessesary php
> > extensions in order to work. This is because the
> > current php setup when most
> > php extensions are split into subpackages. For
> > example php-4.2.0 + php-common
> > + mod_php does not provide session, posix etc. These
> > are now availible as
> > php-session, php-posix, etc.
>
> Say what?  :o)  I have all the packages installed that
> are listed as dependencies.  The "maintainence" it
> asks to do are the following:
>
> The current folder(s) "Sent" will be renamed to
> "Sent-apr-2002".
>
> All old sent-mail folders more than 12 months old will
> be deleted.
>
> All messages in your "Trash" folder older than 30 days
> will be permanently deleted.

Sorry, can't help you there. I know nothing about IMP. I tried to hint you in 
the right direction..., you _might_ need to install more php extensions that 
are not listed as dependant from the imp package. AFAIK. The only packages 
that is fixed at this point is nisca and cacti.

-- 
Regards // Oden Eriksson




Re: [Cooker] Xsession file

2002-05-18 Thread Ben Reser

On Sat, May 18, 2002 at 08:46:44AM +, Cosmic Flo wrote:
> By remove it from this file, it don't break Netscape browser (Opera, 
> konqueror, Galeon, ... are not listed here).

I didn't say it would.  I just said it isn't hurting anything.  As far
as the other browsers well perhaps they should be added.

-- 
Ben Reser <[EMAIL PROTECTED]>
http://ben.reser.org

We tend to see all wars through the lens of the current conflict, and we
mine history for lessons convenient to the present purpose.
- Brian Hayes




[Cooker] Galeon Crash

2002-05-18 Thread Dave Seff

Latest Cooker package for galeon

just put ww.linuxtoday.com in the location bar. Crashes every time
Notice the 2 w's. 

-Dave







[Cooker] Can't install snf-en - pptp-adsl conflicts with pptp-client!

2002-05-18 Thread Borsenkow Andrej

snf-en requires pptp-adsl and pptp-client but pptp-client conflicts with
pptp-adsl.

-andrej





[Cooker] urpmi - "... some files are missing ..."

2002-05-18 Thread Borsenkow Andrej

It would be _extremely_ helpful if urpmi printed also the missing files.

-andrej




[Cooker] urpmq -rd does not list all dependencies

2002-05-18 Thread Borsenkow Andrej

Is it supposed to list all dependencies?

urpmq -rd snf-en | grep mod_perl
=> apache-mod_perl-1.3.24_1.26-2md

but it requires mod_perl-common that is _not_ listed.

Urpmi correctly includes it. 

-andrej




[Cooker] Error running kde3 kde-config

2002-05-18 Thread Dave Seff

# /opt/kde3/bin/kde-config
/opt/kde3/bin/kde-config: relocation error: /opt/kde3//lib/libDCOP.so.4:
undefined symbol: _ZN14QPtrCollection7newItemEPv



Latest cooker packages installed. 






Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread David Walser


--- Oden Eriksson <[EMAIL PROTECTED]> wrote:
> On Saturdayen den 18 May 2002 07.21, David Walser
> wrote:
> > With the current imp3 package in contrib,
> everytime
> > you login it asks you to do maintenance, and
> whethere
> > you do it (dunno if it sucessfully does it) or
> skip it
> > it asks you again next time you log in.
> 
> Is it a php thingy?
> 
> All php web applications needs to be changed to
> require nessesary php 
> extensions in order to work. This is because the
> current php setup when most 
> php extensions are split into subpackages. For
> example php-4.2.0 + php-common 
> + mod_php does not provide session, posix etc. These
> are now availible as 
> php-session, php-posix, etc.

Say what?  :o)  I have all the packages installed that
are listed as dependencies.  The "maintainence" it
asks to do are the following:

The current folder(s) "Sent" will be renamed to
"Sent-apr-2002". 

All old sent-mail folders more than 12 months old will
be deleted. 

All messages in your "Trash" folder older than 30 days
will be permanently deleted. 

__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com




Re: [Cooker] Re: [CHRPM] mozilla-1.0-0.rc2.1mdk

2002-05-18 Thread Reinout van Schouwen

Hi Gary,

On 13 May 2002, Gary Lawrence Murphy wrote:

> Is there a set of mozilla RC2 binaries compiled for Mandrake 8.2?

http://ranger.dnsalias.com/mandrake/mandrake8.2/mozilla/

> the Mozilla update, but I'm not quite ready to jump them all the way
> up to the cooker gcc libs.

Biggest problem is that the Java plugin doesn't load any more with a
gcc3-compiled Mozilla. :-(

-- 

Reinout van SchouwenArtificial Intelligence student
email: [EMAIL PROTECTED] mobile phone: +31-6-44360778
GPG public key http://www.cs.vu.nl/~reinout/reinout.asc





Re: [Cooker] IMP keeps doing maintenance

2002-05-18 Thread Oden Eriksson

On Saturdayen den 18 May 2002 07.21, David Walser wrote:
> With the current imp3 package in contrib, everytime
> you login it asks you to do maintenance, and whethere
> you do it (dunno if it sucessfully does it) or skip it
> it asks you again next time you log in.

Is it a php thingy?

All php web applications needs to be changed to require nessesary php 
extensions in order to work. This is because the current php setup when most 
php extensions are split into subpackages. For example php-4.2.0 + php-common 
+ mod_php does not provide session, posix etc. These are now availible as 
php-session, php-posix, etc.

-- 
Regards // Oden Eriksson




Re: [Cooker] speed improvments

2002-05-18 Thread Warwick Bruce Chapman

Howdy

There was asuggestion I read on kde-look.org of all places that the order of 
execution for the scripts in /etc/rc.d be changed so that X loads as soon as 
possible, and background services which don't need to be up immediately are 
started 'behind X'.

I haven't experimented just yet. My R&D box is now production box, so fiddling 
is to be kept to a minimum.

Ciao
Budgee
 
On Friday 17 May 2002 13:40, Helge Hielscher wrote:
> Thierry Vignaud wrote:
> >"Cosmic Flo" <[EMAIL PROTECTED]> writes:
> >>I think it could be a future evolution of the installer.
> >>It would be greet for newbies who don't have a fast PC.
> >>
> >>An another evolution of Mdk could be better TV out support
> >>(integrated in the MCC).
> >
> >what do you want more ?
> >most cards works out of the box !
>
> The Ati Xpert 2000 Pro doesnt even work with the r128 driver when the
> tvout is pluged in. But the Vesa driver works with tvout plugged, so I
> set the machine up using the vesa driver. This way you can watch DVDs
> under Windows and do the work under Linux.
>
> (I know there is a tool in developement which switches the tvout mode of
> ati cards, but I dont have the need to try it.)
>
> Regards,
> Helge

-- 
Warwick Bruce Chapman
The eSpot Technology Company
Durban, South Africa
http://www.theespot.co.za
+27 83 7797094




[Cooker] Everything Broken on KDE3

2002-05-18 Thread Marcelo de Castro

stuff Hi!  

  I'm brandnew on the list.. so I didn't get any previews alerts. I just run 
the latest kdebase3 1:3.0-22mdk update from the cooker... But since that a 
lot of stuff is broken 

   it seems that my file association got lost. ... and nothing is showing up 
on the KDE menu. and kcmshell is not finding any modules.

   Did anybody have the same problem?

Thanks! 
-Marcelo

  

  




Re: [Cooker] how to write MCC module (TV-out)

2002-05-18 Thread Yves Duret

"Cosmic Flo" <[EMAIL PROTECTED]> writes:

> Thanks for the info. I will try it.

hum, forget to precise that you can plug not only GTK apps, but all kind of
app by playing with the X tree. it is a bit of hack. look at the rxvt line in
exec_hash and launc_xapp() function.
I included konqueror, sketch... without pbs :)
-- 
Yves Duret
[EMAIL PROTECTED]
piouk toujours et meme apres !





Re: [Cooker] Xsession file

2002-05-18 Thread Cosmic Flo

By remove it from this file, it don't break Netscape browser (Opera, 
konqueror, Galeon, ... are not listed here).


>From: Ben Reser <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: [Cooker] Xsession file
>Date: Fri, 17 May 2002 23:07:27 -0700
>
>On Wed, May 15, 2002 at 01:44:08PM +, Cosmic Flo wrote:
> > Yes but the Netscape browser test is not needed anymore.
>
>No reason to remove something that allows us to be compatable with
>something somebody might install.  It's not like it is breaking
>anything.
>
>Just because Mandrake stopped shipping Netscape doesn't mean some of us
>don't still use it!
>
>--
>Ben Reser <[EMAIL PROTECTED]>
>http://ben.reser.org
>
>We tend to see all wars through the lens of the current conflict, and we
>mine history for lessons convenient to the present purpose.
>- Brian Hayes
>


=

_
Envoyez et recevez des messages Hotmail sur votre périphérique mobile : 
http://mobile.msn.com