[Bug 1325122] [NEW] unknown flow_sample_element: 0:2048

2014-05-30 Thread J Queiroz
Public bug reported:

When using NTOP's sflow plugin, samples of ethernet packets aren't properly 
processed.
All packets are registered as non-IP, and a message unknown 
flow_sample_element: 0:2048 is generated for every sample.

I found that this is happening because the SFlow Datagram have the MAC
Address registered as a 8 bytes, while code treats it as only 6 bytes.

Also, when debugging sflow plugin, mac addresses bytes are written as
signed integers, instead of unsigned char.

I suggest that sflow code (plugins/sflowplugin.c) to be changed this
way:

-
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, dstMAC 
%02x%02x%02x%02x%02x%02x\n, ptr[0], ptr[1], ptr[2], ptr[3], ptr[4], ptr[5]);
---
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, dstMAC 
 %02hhx%02hhx%02hhx%02hhx%02hhx%02hhx\n, ptr[0], ptr[1], ptr[2], ptr[3], 
 ptr[4], ptr[5]);
1613c1613
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, srcMAC 
%02x%02x%02x%02x%02x%02x\n, ptr[0], ptr[1], ptr[2], ptr[3], ptr[4], ptr[5]);
---
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, srcMAC 
 %02hhx%02hhx%02hhx%02hhx%02hhx%02hhx\n, ptr[0], ptr[1], ptr[2], ptr[3], 
 ptr[4], ptr[5]);
1881c1881
 sprintf(buf, 
%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x,
---
 sprintf(buf, 
 %02hx%02hx:%02hx%02hx:%02hx%02hx:%02hx%02hx:%02hx%02hx:%02hx%02hx:%02hx%02hx:%02hx%02hx,
2371c2371
   skipBytes(sample, 6);
---
   skipBytes(sample, 8);
2373c2373
   skipBytes(sample, 6);
---
   skipBytes(sample, 8);
2378c2378
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, ethernet_src 
%02x%02x%02x%02x%02x%02x\n, p[0], p[1], p[2], p[3], p[4], p[5]);
---
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, ethernet_src 
 %02hhx%02hhx%02hhx%02hhx%02hhx%02hhx\n, p[0], p[1], p[2], p[3], p[4], p[5]);
2380c2380
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, ethernet_dst 
%02x%02x%02x%02x%02x%02x\n, p[0], p[1], p[2], p[3], p[4], p[5]);
---
   if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, ethernet_dst 
 %02hhx%02hhx%02hhx%02hhx%02hhx%02hhx\n, p[0], p[1], p[2], p[3], p[4], p[5]);
--

** Affects: ntop (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1325122

Title:
  unknown flow_sample_element: 0:2048

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntop/+bug/1325122/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1300504] Re: etherwake doesn't generates Magic Packets

2014-05-22 Thread J Queiroz
There's no problem on the receiving machine.
The problem is only on the ***SENDING*** machine, that just don't sends the 
magic packet.

I confirmed this behaviour using Wireshark both on the sending and the
receiving machine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1300504

Title:
  etherwake doesn't generates Magic Packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etherwake/+bug/1300504/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1300504] [NEW] etherwake doesn't generates Magic Packets

2014-03-31 Thread J Queiroz
Public bug reported:

I'm trying to use a Kubuntu machine to generate WakeOnLan magic packets.

I'm using Kubuntu 14.04, fresh install. No PPAs neither external
packages installed, except vmware player 6.

Installed etherwake and tryed to send WoL magic packets, but they are
not being sent. I confirmed this using WireShark on two machines; if I
use a WoL software on the other machine (running windows 7 on the same
hardware), I can see the magic packets on both machines.

$ lsb_release -rd
Description:Ubuntu Trusty Tahr (development branch)
Release:14.04

$ uname -s -r -p -i
Linux 3.13.0-19-generic x86_64 x86_64

$ apt-cache policy etherwake
etherwake:
  Installed: 1.09-4
  Candidate: 1.09-4
  Version table:
 *** 1.09-4 0
500 http://br.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
100 /var/lib/dpkg/status

Please note that I'm not trying to wake up this machine, I'm trying to
***send magic packets to wake up other machines***.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: etherwake 1.09-4
ProcVersionSignature: Ubuntu 3.13.0-19.40-generic 3.13.6
Uname: Linux 3.13.0-19-generic x86_64
ApportVersion: 2.14-0ubuntu1
Architecture: amd64
CurrentDesktop: KDE
Date: Mon Mar 31 19:50:31 2014
InstallationDate: Installed on 2014-03-07 (24 days ago)
InstallationMedia: Kubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140227)
SourcePackage: etherwake
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: etherwake (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1300504

Title:
  etherwake doesn't generates Magic Packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etherwake/+bug/1300504/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 881746] Re: Oracle (Sun) Java JRE/JDK 6: Update 26 has critical security vulnerabilities, fixed in Update 29

2011-12-23 Thread J Queiroz
Universe shouldn't be for packages supported by Canonical? I believe
that Multiverse should be a better choice.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/881746

Title:
  Oracle (Sun) Java JRE/JDK 6: Update 26 has critical security
  vulnerabilities, fixed in Update 29

To manage notifications about this bug go to:
https://bugs.launchpad.net/sun-java/+bug/881746/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 777436] Re: isc-dhcp-client from NetworkManager PPA fails to install (broken dependencies)

2011-05-06 Thread J Queiroz
I'll test this this afternoon,

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/777436

Title:
  isc-dhcp-client from NetworkManager PPA fails to install (broken
  dependencies)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 777436] Re: isc-dhcp-client from NetworkManager PPA fails to install (broken dependencies)

2011-05-05 Thread J Queiroz
Oh, God... what do I have to report this to the correct place? :(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/777436

Title:
  isc-dhcp-client from NetworkManager PPA fails to install (broken
  dependencies)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 777436] [NEW] isc-dhcp-client from NetworkManager PPA fails to install (broken dependencies)

2011-05-04 Thread J Queiroz
Public bug reported:

After installing the last updates from NetworkManager PPA, the isc-dhcp-
client doesn't install.

It asks for network-manager  0.8.2-rc1, but only
0.8.1+git.20101009t040337.01fa170-0ubuntu1~nmt1~lucid1 is available.

After that, NetworkManager refuses to start, claiming that no usable
DHCP client could be found.

** Affects: isc-dhcp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/777436

Title:
  isc-dhcp-client from NetworkManager PPA fails to install (broken
  dependencies)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
What about Lucid?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
Shouldn't Lucid be under official support? A PPA doesn't counts as
official support. As you said, it's not guaranteed to work.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
I understand, and appreciate your effort.

But, this situation involves a production server. I just cannot depend
on personal projects on it.

So, a fix on natty doesn't solves it here, as I will not move my
system to natty.

If the decision is just don't solve the problem on Lucid, OK, it's a
decision, and I'll have to cope with it.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
Thank you very much for your attention.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
What about Lucid?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
Shouldn't Lucid be under official support? A PPA doesn't counts as
official support. As you said, it's not guaranteed to work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
I understand, and appreciate your effort.

But, this situation involves a production server. I just cannot depend
on personal projects on it.

So, a fix on natty doesn't solves it here, as I will not move my
system to natty.

If the decision is just don't solve the problem on Lucid, OK, it's a
decision, and I'll have to cope with it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-04-01 Thread J Queiroz
Thank you very much for your attention.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-22 Thread J Queiroz
Seems that php5-5.3.3 is the real solution, but it would need a backport.
https://bugs.launchpad.net/lucid-backports/+bug/739121

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-22 Thread J Queiroz
Seems that php5-5.3.3 is the real solution, but it would need a backport.
https://bugs.launchpad.net/lucid-backports/+bug/739121

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
I'll install php5-dbg and rerun the tests. By the way I couldn't manage to make 
the system generate core dumps.
Where can I find better information on that?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
This is the backtrace on a 64bit machine, Kubuntu Desktop.

(gdb) r -X  


Starting program: /usr/sbin/apache2 -X  


[Thread debugging using libthread_db enabled]   


[New Thread 0x7fffebbcf700 (LWP 27511)] 


[Thread 0x7fffebbcf700 (LWP 27511) exited]

Program received signal SIGSEGV, Segmentation fault.
zval_mark_grey (pz=0x799cf088) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
356 /build/buildd/php5-5.3.2/Zend/zend_gc.c: Arquivo ou diretório não 
encontrado.
in /build/buildd/php5-5.3.2/Zend/zend_gc.c
(gdb) bt
#0  zval_mark_grey (pz=0x799cf088) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
#1  0x73fa1ab5 in gc_collect_cycles () at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:417
#2  0x73f84215 in zend_deactivate () at 
/build/buildd/php5-5.3.2/Zend/zend.c:972
#3  0x73f2fd85 in php_request_shutdown (dummy=0x799cf088) at 
/build/buildd/php5-5.3.2/main/main.c:1649
#4  0x74010947 in php_handler (r=0x74010947) at 
/build/buildd/php5-5.3.2/sapi/apache2handler/sapi_apache2.c:512
#5  0x77fd6140 in ap_run_handler (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0x77fd9aa8 in ap_invoke_handler (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0x77fe7678 in ap_process_request (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0x77fe4528 in ap_process_http_connection (c=0x7862f668) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0x77fddcf8 in ap_run_process_connection (c=0x7862f668) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0x77fec037 in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0x77fec306 in make_child (s=0x78214938, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0x77fec953 in ap_mpm_run (_pconf=value optimized out, plog=value 
optimized out, s=value optimized out)
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0x77fc2350 in main (argc=2, argv=0x7fffe708) at 
/build/buildd/apache2-2.2.14/server/main.c:742


The original 32-bit server where the problem ocurred is in production
time now; I can only test on it later.

If I install Ubuntu Server on a VM, will be a valid test?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
Got the backtrace from the original server.

GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Lendo símbolos de /usr/sbin/apache2...concluído.
(gdb) r -X
Starting program: /usr/sbin/apache2 -X
[Thread debugging using libthread_db enabled]
[New Thread 0xb5e4db70 (LWP 1612)]
[Thread 0xb5e4db70 (LWP 1612) exited]

Program received signal SIGSEGV, Segmentation fault.
zval_mark_grey (pz=0xb8d9e028) at /build/buildd/php5-5.3.2/Zend/zend_gc.c:356
356 /build/buildd/php5-5.3.2/Zend/zend_gc.c: Arquivo ou diretório não 
encontrado.
in /build/buildd/php5-5.3.2/Zend/zend_gc.c
(gdb) bt
#0  zval_mark_grey (pz=0xb8d9e028) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
#1  0xb7893dfd in gc_collect_cycles () at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:417
#2  0xb7874ff5 in zend_deactivate () at /build/buildd/php5-5.3.2/Zend/zend.c:972
#3  0xb7819868 in php_request_shutdown (dummy=0x0) at 
/build/buildd/php5-5.3.2/main/main.c:1649
#4  0xb790681c in php_handler (r=0xb837c3c0) at 
/build/buildd/php5-5.3.2/sapi/apache2handler/sapi_apache2.c:512
#5  0xb7fdb031 in ap_run_handler (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0xb7fdee17 in ap_invoke_handler (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0xb7fee728 in ap_process_request (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0xb7feb258 in ap_process_http_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0xb7fe38a1 in ap_run_process_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0xb7ff3bea in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0xb7ff3f21 in make_child (s=value optimized out, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0xb7ff46af in ap_mpm_run (_pconf=0xb800e0a8, plog=0xb8040170, s=0xb80128e8) 
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0xb7fc5a92 in main (argc=2, argv=0xbcc4) at 
/build/buildd/apache2-2.2.14/server/main.c:742
(gdb)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
I'll install php5-dbg and rerun the tests. By the way I couldn't manage to make 
the system generate core dumps.
Where can I find better information on that?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
This is the backtrace on a 64bit machine, Kubuntu Desktop.

(gdb) r -X  


Starting program: /usr/sbin/apache2 -X  


[Thread debugging using libthread_db enabled]   


[New Thread 0x7fffebbcf700 (LWP 27511)] 


[Thread 0x7fffebbcf700 (LWP 27511) exited]

Program received signal SIGSEGV, Segmentation fault.
zval_mark_grey (pz=0x799cf088) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
356 /build/buildd/php5-5.3.2/Zend/zend_gc.c: Arquivo ou diretório não 
encontrado.
in /build/buildd/php5-5.3.2/Zend/zend_gc.c
(gdb) bt
#0  zval_mark_grey (pz=0x799cf088) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
#1  0x73fa1ab5 in gc_collect_cycles () at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:417
#2  0x73f84215 in zend_deactivate () at 
/build/buildd/php5-5.3.2/Zend/zend.c:972
#3  0x73f2fd85 in php_request_shutdown (dummy=0x799cf088) at 
/build/buildd/php5-5.3.2/main/main.c:1649
#4  0x74010947 in php_handler (r=0x74010947) at 
/build/buildd/php5-5.3.2/sapi/apache2handler/sapi_apache2.c:512
#5  0x77fd6140 in ap_run_handler (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0x77fd9aa8 in ap_invoke_handler (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0x77fe7678 in ap_process_request (r=0x7863a288) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0x77fe4528 in ap_process_http_connection (c=0x7862f668) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0x77fddcf8 in ap_run_process_connection (c=0x7862f668) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0x77fec037 in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0x77fec306 in make_child (s=0x78214938, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0x77fec953 in ap_mpm_run (_pconf=value optimized out, plog=value 
optimized out, s=value optimized out)
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0x77fc2350 in main (argc=2, argv=0x7fffe708) at 
/build/buildd/apache2-2.2.14/server/main.c:742


The original 32-bit server where the problem ocurred is in production
time now; I can only test on it later.

If I install Ubuntu Server on a VM, will be a valid test?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-03-03 Thread J Queiroz
Got the backtrace from the original server.

GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Lendo símbolos de /usr/sbin/apache2...concluído.
(gdb) r -X
Starting program: /usr/sbin/apache2 -X
[Thread debugging using libthread_db enabled]
[New Thread 0xb5e4db70 (LWP 1612)]
[Thread 0xb5e4db70 (LWP 1612) exited]

Program received signal SIGSEGV, Segmentation fault.
zval_mark_grey (pz=0xb8d9e028) at /build/buildd/php5-5.3.2/Zend/zend_gc.c:356
356 /build/buildd/php5-5.3.2/Zend/zend_gc.c: Arquivo ou diretório não 
encontrado.
in /build/buildd/php5-5.3.2/Zend/zend_gc.c
(gdb) bt
#0  zval_mark_grey (pz=0xb8d9e028) at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:356
#1  0xb7893dfd in gc_collect_cycles () at 
/build/buildd/php5-5.3.2/Zend/zend_gc.c:417
#2  0xb7874ff5 in zend_deactivate () at /build/buildd/php5-5.3.2/Zend/zend.c:972
#3  0xb7819868 in php_request_shutdown (dummy=0x0) at 
/build/buildd/php5-5.3.2/main/main.c:1649
#4  0xb790681c in php_handler (r=0xb837c3c0) at 
/build/buildd/php5-5.3.2/sapi/apache2handler/sapi_apache2.c:512
#5  0xb7fdb031 in ap_run_handler (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0xb7fdee17 in ap_invoke_handler (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0xb7fee728 in ap_process_request (r=0xb837c3c0) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0xb7feb258 in ap_process_http_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0xb7fe38a1 in ap_run_process_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0xb7ff3bea in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0xb7ff3f21 in make_child (s=value optimized out, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0xb7ff46af in ap_mpm_run (_pconf=0xb800e0a8, plog=0xb8040170, s=0xb80128e8) 
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0xb7fc5a92 in main (argc=2, argv=0xbcc4) at 
/build/buildd/apache2-2.2.14/server/main.c:742
(gdb)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 725812] [NEW] PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-02-26 Thread J Queiroz
Public bug reported:

Binary package hint: php5

After installing egroupware 1.8 from an external repository, php5 starts
to throw segment violations on script shutdown on certain scripts. The
problem was detected on a Ubuntu 10.04 Server, 32 bits, but I got the
same error on a Kubuntu Desktop 10.04 64 bits.

php5 version:
  Installed: 5.3.2-1ubuntu4.7
  Candidate: 5.3.2-1ubuntu4.7
  Version table:
 *** 5.3.2-1ubuntu4.7 0
500 http://archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
100 /var/lib/dpkg/status
 5.3.2-1ubuntu4 0
500 http://archive.ubuntu.com/ubuntu/ lucid/main Packages

The problem manifests on acessing egroupware features. Some pages, when
accessed, doesn't open; instead, the browser asks for downloading a
file. If saved, the file is 0-byte sized. At same time, apache2 logs a
Segment Violation.

If the package php-apc is uninstalled and/or apache2 deflate module
is disabled, the page opens, but the Segment Violation is still logged.

Running Apache2 against gdb shows that the SEGV is on PHP5 function
gc_collect_cycles() called upon script shutdown:

#0  0xb7893415 in ?? () from /usr/lib/apache2/modules/libphp5.so
#1  0xb7893dfd in gc_collect_cycles () from /usr/lib/apache2/modules/libphp5.so
#2  0xb7874ff5 in ?? () from /usr/lib/apache2/modules/libphp5.so
#3  0xb7819868 in php_request_shutdown () from 
/usr/lib/apache2/modules/libphp5.so
#4  0xb790681c in ?? () from /usr/lib/apache2/modules/libphp5.so
#5  0xb7fdb031 in ap_run_handler (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0xb7fdee17 in ap_invoke_handler (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0xb7fee728 in ap_process_request (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0xb7feb258 in ap_process_http_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0xb7fe38a1 in ap_run_process_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0xb7ff3bea in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0xb7ff3f21 in make_child (s=value optimized out, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0xb7ff46af in ap_mpm_run (_pconf=0xb800e0a8, plog=0xb8040170, s=0xb80128e8) 
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0xb7fc5a92 in main (argc=2, argv=0xbcc4) at 
/build/buildd/apache2-2.2.14/server/main.c:742

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: php5 5.3.2-1ubuntu4.7
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic-pae 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic-pae i686
Architecture: i386
Date: Sat Feb 26 20:20:52 2011
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=pt_BR:pt:en
 PATH=(custom, user)
 LANG=pt_BR.utf8
 SHELL=/bin/bash
SourcePackage: php5

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-02-26 Thread J Queiroz
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 725812] [NEW] PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-02-26 Thread J Queiroz
Public bug reported:

Binary package hint: php5

After installing egroupware 1.8 from an external repository, php5 starts
to throw segment violations on script shutdown on certain scripts. The
problem was detected on a Ubuntu 10.04 Server, 32 bits, but I got the
same error on a Kubuntu Desktop 10.04 64 bits.

php5 version:
  Installed: 5.3.2-1ubuntu4.7
  Candidate: 5.3.2-1ubuntu4.7
  Version table:
 *** 5.3.2-1ubuntu4.7 0
500 http://archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
100 /var/lib/dpkg/status
 5.3.2-1ubuntu4 0
500 http://archive.ubuntu.com/ubuntu/ lucid/main Packages

The problem manifests on acessing egroupware features. Some pages, when
accessed, doesn't open; instead, the browser asks for downloading a
file. If saved, the file is 0-byte sized. At same time, apache2 logs a
Segment Violation.

If the package php-apc is uninstalled and/or apache2 deflate module
is disabled, the page opens, but the Segment Violation is still logged.

Running Apache2 against gdb shows that the SEGV is on PHP5 function
gc_collect_cycles() called upon script shutdown:

#0  0xb7893415 in ?? () from /usr/lib/apache2/modules/libphp5.so
#1  0xb7893dfd in gc_collect_cycles () from /usr/lib/apache2/modules/libphp5.so
#2  0xb7874ff5 in ?? () from /usr/lib/apache2/modules/libphp5.so
#3  0xb7819868 in php_request_shutdown () from 
/usr/lib/apache2/modules/libphp5.so
#4  0xb790681c in ?? () from /usr/lib/apache2/modules/libphp5.so
#5  0xb7fdb031 in ap_run_handler (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/server/config.c:159
#6  0xb7fdee17 in ap_invoke_handler (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/server/config.c:373
#7  0xb7fee728 in ap_process_request (r=0xb837e3c8) at 
/build/buildd/apache2-2.2.14/modules/http/http_request.c:282
#8  0xb7feb258 in ap_process_http_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/modules/http/http_core.c:190
#9  0xb7fe38a1 in ap_run_process_connection (c=0xb83762f0) at 
/build/buildd/apache2-2.2.14/server/connection.c:43
#10 0xb7ff3bea in child_main (child_num_arg=value optimized out) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:662
#11 0xb7ff3f21 in make_child (s=value optimized out, slot=0) at 
/build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:702
#12 0xb7ff46af in ap_mpm_run (_pconf=0xb800e0a8, plog=0xb8040170, s=0xb80128e8) 
at /build/buildd/apache2-2.2.14/server/mpm/prefork/prefork.c:978
#13 0xb7fc5a92 in main (argc=2, argv=0xbcc4) at 
/build/buildd/apache2-2.2.14/server/main.c:742

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: php5 5.3.2-1ubuntu4.7
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic-pae 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic-pae i686
Architecture: i386
Date: Sat Feb 26 20:20:52 2011
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=pt_BR:pt:en
 PATH=(custom, user)
 LANG=pt_BR.utf8
 SHELL=/bin/bash
SourcePackage: php5

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 725812] Re: PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

2011-02-26 Thread J Queiroz
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/725812

Title:
  PHP5.3.2 throws SEGV on gc_collect_cycles() on script shutdown

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 717853] Re: apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

2011-02-23 Thread J Queiroz
I was also having this problem of SIGSEGVs on php. Disabling mod_deflate
seems to solve it.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/717853

Title:
  apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717853] Re: apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

2011-02-23 Thread J Queiroz
Damn. Said it too early... the problem still occurs.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/717853

Title:
  apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 717853] Re: apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

2011-02-23 Thread J Queiroz
I was also having this problem of SIGSEGVs on php. Disabling mod_deflate
seems to solve it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/717853

Title:
  apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 717853] Re: apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

2011-02-23 Thread J Queiroz
Damn. Said it too early... the problem still occurs.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/717853

Title:
  apache2 crashed with SIGSEGV in _zend_hash_add_or_update()

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 492650] Re: cannot configure an interface which only uses IPv6 router advertisements

2011-02-22 Thread J Queiroz
This problem is still open in Kubuntu Lucid.

ifupdown just ignores interface definition, unless there's a static or
DHCP IPv4 configuration.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/492650

Title:
  cannot configure an interface which only uses IPv6 router
  advertisements

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 508996] Re: 'SIOCSIFFLAGS: Cannot assign requested address' when setting up IPv6 alias

2011-02-22 Thread J Queiroz
You should need no interface aliases on IPv6, as IPv6 provides for an
interface to have more than one address.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/508996

Title:
  'SIOCSIFFLAGS: Cannot assign requested address' when setting up IPv6
  alias

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs



[Bug 136947] Re: no longer honors X11 forwarding

2011-02-19 Thread J Queiroz
Had the same problem, but adding -4 to SSHD_OPTIONS didn't solved,
maybe because I couldn't properly reinitialize sshd.

Had to reenable IPv6 with

sudo sysctl net.ipv6.conf.all.disable_ipv6=0

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/136947

Title:
  no longer honors X11 forwarding

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 136947] Re: no longer honors X11 forwarding

2011-02-19 Thread J Queiroz
Had the same problem, but adding -4 to SSHD_OPTIONS didn't solved,
maybe because I couldn't properly reinitialize sshd.

Had to reenable IPv6 with

sudo sysctl net.ipv6.conf.all.disable_ipv6=0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/136947

Title:
  no longer honors X11 forwarding

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 608685] Re: bind9 fails to start in Lucid Lynx, can't read openssl.cnf

2010-07-31 Thread J Queiroz
The workaround worked for me too.

-- 
bind9 fails to start in Lucid Lynx, can't read openssl.cnf
https://bugs.launchpad.net/bugs/608685
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 608685] Re: bind9 fails to start in Lucid Lynx, can't read openssl.cnf

2010-07-31 Thread J Queiroz
The workaround worked for me too.

-- 
bind9 fails to start in Lucid Lynx, can't read openssl.cnf
https://bugs.launchpad.net/bugs/608685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587915] Re: File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so

2010-07-06 Thread J Queiroz
The missing file seems to be correctly installed now.

Thanks!

-- 
File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so
https://bugs.launchpad.net/bugs/587915
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587915] [NEW] File missing: /usr/ib/pppd/2.4.x/nm-pppd-plugin.so

2010-05-31 Thread J Queiroz
Public bug reported:

Binary package hint: network-manager

Some files are missing in version
0.8.1~beta1~git.20100528t200614.6810ef1-0ubuntu1~nmt1 from
launchpad/ppa.

The files are:

- /usr/lib/pppd/2.4.4/nm-pppd-plugin.so
- /usr/lib/pppd/2.4.5/nm-pppd-plugin.so

As these files are missing, I couldn't connect to my 3G dongle. Pulled
the missing files from version 0.8-0ubuntu3, and the connection worked
again.

I don't know if there are other files missing.

Kubuntu 10.04 x86_64, KDE 4.4.3.
NetworkManager 0.8.1 from Launchpad/PPA.

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: nm-pppd-plugin.so

-- 
File missing: /usr/ib/pppd/2.4.x/nm-pppd-plugin.so 
https://bugs.launchpad.net/bugs/587915
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587915] Re: File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so

2010-05-31 Thread J Queiroz
** Summary changed:

- File missing: /usr/ib/pppd/2.4.x/nm-pppd-plugin.so 
+ File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so

-- 
File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so
https://bugs.launchpad.net/bugs/587915
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561873] Re: language-pack-kde-br (breton) is incorrectly linked to kde-l10n-ptbr (portuguese brazil)

2010-05-03 Thread J Queiroz
Will this fix be applied to Kubuntu/PPA/Karmic also?

-- 
language-pack-kde-br (breton) is incorrectly linked to kde-l10n-ptbr 
(portuguese brazil)
https://bugs.launchpad.net/bugs/561873
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561873] Re: language-pack-kde-br (breton) is incorrectly linked to kde-l10n-ptbr (portuguese brazil)

2010-04-23 Thread J Queiroz
Maybe this bug is the duplicate, and not #561530.

But this doesn't matter, as long as the package get corrected...

-- 
language-pack-kde-br (breton) is incorrectly linked to kde-l10n-ptbr 
(portuguese brazil)
https://bugs.launchpad.net/bugs/561873
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561130] Re: [lucid] wrong dependency to language-pack-br

2010-04-11 Thread J Queiroz
I see this behaviour on Karmic, using repository PPA/KDE. The problem
seems to be specific of version 4.4.2.

I have a VM with Kubuntu Karmic, which is still using version 4.4.1, and
the package depends on language-pack-kde-pt which is correct.

-- 
[lucid] wrong dependency to language-pack-br
https://bugs.launchpad.net/bugs/561130
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 372548] Re: kpowersave -- error while suspend to RAM

2009-11-19 Thread J Queiroz
Same problem here. Dell Latitude E5500 (Intel Dual Core, VGA Intel),
Kubuntu Karmic 64bits, kernel 2.6.31-6-candela.

But the system suspends and recovers almost smoothly; sometimes I have
some difficulty to use the mouse on recovery. In these cases, I close
the laptop lid again and reopen it, and it works again.

-- 
kpowersave -- error while suspend to RAM
https://bugs.launchpad.net/bugs/372548
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 432264] Re: plasma-widget-network-manager override my dns settings

2009-11-14 Thread J Queiroz
Try installing resolvconf package to force a fixed DNS configuration.

-- 
plasma-widget-network-manager override my dns settings
https://bugs.launchpad.net/bugs/432264
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs