[Bug 688085] Re: Guest kernel hang during boot when KVM is active on i386 host

2010-12-28 Thread Fathi Boudra
** Bug watch added: Meego #10075
   http://bugs.meego.com/show_bug.cgi?id=10075

** Also affects: meego via
   http://bugs.meego.com/show_bug.cgi?id=10075
   Importance: Unknown
   Status: Unknown

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

Title:
  Guest kernel hang during boot when KVM is active on i386 host

-- 
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 694953] [NEW] missing i386 libraries on amd64

2010-12-28 Thread Metabaronen
Public bug reported:

Binary package hint: winbind

It is common to use 32 bit proprietary applications like flashplayer, citrix 
and acrobat on a amd64 system. The NSS libraries are a vital part of the system 
as it enables programs to lookup user and group information.
To solve this problem today we have to extract the nss library from the 32 bit 
package and install it by hand. I think that this should be provided by the 
winbind package.

Please add the 32 bit nss_winbind library to the winbind package for
amd64.

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

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

Title:
  missing i386 libraries on amd64

-- 
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 694754] Re: Apache graceful-stop doesn't end apache processes

2010-12-28 Thread Stefan Fritsch
Have you checked with netstat that there are no more open connections?
The processes will only die once there are no more open connections.

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

Title:
  Apache graceful-stop doesn't end apache processes

-- 
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 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-28 Thread ingo
I do unsubscribe from this bug for the time beeing. It does not make
sense to deal with the symtoms until the root of the evil Bug #672177 is
fixed.

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

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 694953] Re: missing i386 libraries on amd64

2010-12-28 Thread Dave Gilbert
I've added ia32-libs to this bug since that's where most 32bit
compatibility libraries go on 64 bit systems.

(But I left samba since I wasn't sure that the ia32-libs guys would want
to put this in and that the samba guys probably wanted to know).

Dave

** Also affects: ia32-libs (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  missing i386 libraries on amd64

-- 
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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Martin Rusko
On John Morrissey's libvirt-bin.conf file ... there is construct like:

delay=$SHUTDOWN_TIMEOUT
while [ $delay -gt 0 ]; do
for uri in $URIS; do
if ! run_virsh -c $uri list | awk '$3 == running 
{exit 1}'; then
# VMs at this URI are still running. Wait, then
# start at the beginning looking for running 
VMs.
sleep 1
delay=$(($delay - 1))
continue 2
fi
done
done

... what if no guest is running anymore? We will never enter if...then
condition and thus never decrement $delay variable anymore. It looks
like we stay in that while...done loop forever.

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

Title:
  Should shut down domains on system 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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Martin Rusko
Well placed 'break' command should make libvirt-bin.conf functioning
correctly.

** Patch added: libvirt-bin.conf.diff
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/350936/+attachment/1778008/+files/libvirt-bin.conf.diff

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

Title:
  Should shut down domains on system 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


Re: [Bug 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Scott James Remnant
On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:

 This makes sense, because telinit u just sends SIGTERM to upstart, which
 has no handler, as it was removed by revision 977, and doesn't seem to
 have been added back. Since SIG_DFL signals are not delivered to init,
 I'm not sure how umountroot's call to 'telinit u' can help in this case.

 Unless I'm missing something in upstart's code (quite likely) I think
 there may still potentially need to be a change in upstart to support
 re-executing.

Hmm, while that handled was removed Upstream, the code should have
been retained in the Ubuntu package as part of the telinit u patch.

The idea is that rather than doing a full state transfer, Upstart just
re-exec's itself and loses all state.  That's why we do it as the last
thing before unmounting the root on shutdown, because it then doesn't
matter about the state - there shouldn't be any.

Maybe that part of the patch has been lost?

Scott

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 694953] Re: missing i386 libraries on amd64

2010-12-28 Thread Jelmer Vernooij
** Changed in: samba (Ubuntu)
   Status: New = Invalid

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

Title:
  missing i386 libraries on amd64

-- 
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 695055] [NEW] package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-28 Thread Fawkat
Public bug reported:

Binary package hint: clamav

This error is reported by update manager

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: clamav-milter 0.96.3+dfsg-2ubuntu1.0.10.04.2
ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-generic i686
Architecture: i386
Date: Tue Dec 28 18:28:32 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: clamav
Title: package clamav-milter 0.96.3+dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

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


** Tags: apport-package i386 lucid

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

Title:
  package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
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 695055] Re: package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-28 Thread Fawkat


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

Title:
  package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
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 677764] Re: vsftpd postinstall checks for user/group starting with ftp

2010-12-28 Thread Imre Gergely
Isn't this bug a duplicate of bug #629234 ?

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

Title:
  vsftpd postinstall checks for user/group starting with ftp

-- 
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


Re: [Bug 677764] Re: vsftpd postinstall checks for user/group starting with ftp

2010-12-28 Thread odonata
To my novice eye, yes they do appear to be duplicates / related.

As a user, I became involved with this partiuclar bug by reporting a
problem I had where an install of vsftpd failed along with some other
packages (Bug# 634085). Because of this I gave the developers who sent
me questions as much info as I could to help them gain insight into the
problem. But other than that my knowledge is limited. At the time I
reported my initial bug, I had no clue as to what had caused the
failure. So I was unable to locate an existing bug that matched mine so
I entered a new one.


- Original message -
From: Imre Gergely 677...@bugs.launchpad.net
To: odon...@fastmail.fm
Date: Tue, 28 Dec 2010 16:21:46 -
Subject: [Bug 677764] Re: vsftpd postinstall checks for user/group starting 
with ftp

Isn't this bug a duplicate of bug #629234 ?

-- 
You received this bug notification because you are a direct subscriber
of a duplicate bug (634085).
https://bugs.launchpad.net/bugs/677764

Title:
  vsftpd postinstall checks for user/group starting with ftp

Status in “vsftpd” package in Ubuntu:
  Fix Released
Status in “vsftpd” source package in Lucid:
  Confirmed
Status in “vsftpd” source package in Maverick:
  Confirmed
Status in “vsftpd” source package in Natty:
  Fix Released
Status in “vsftpd” package in Debian:
  Fix Released

Bug description:
  Binary package hint: vsftpd

?

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: vsftpd (not installed)
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
AptOrdering:
 vsftpd: Install
 vsftpd: Configure
Architecture: i386
Date: Fri Nov 19 22:28:45 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: vsftpd
Title: package vsftpd (not installed) failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1


SRU comments:
Impact: Breaks install of vsftp if any existing user or group name begins with 
'ftp'.
How bug addressed: The vsftpd.postinst script is patched so it accepts only 
whole names 'ftp', not names beginning with 'ftp'.
Patch: See attached debdiffs.
To reproduce: Create a user or group 'ftpfoo' before installing vsftpd
Regression Potential: This should have no impact as it only changes the string 
being checked for in existing users and groups.  If there were a typo in the 
patch, it could break vsftpd installation.


To unsubscribe from this bug, go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/677764/+subscribe

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

Title:
  vsftpd postinstall checks for user/group starting with ftp

-- 
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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Brian Murray
** Tags added: patch

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

Title:
  Should shut down domains on system 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 675164] Re: New version of openssh cannot connect to ssh server

2010-12-28 Thread Matthew Gregg
I seem to have a similar problem in natty, but it happens only
occasionally.  I can successfully connect about 70% of the time.  Using
openssh-client 1:5.6p1-2ubuntu3.

-- 
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/675164

Title:
  New version of openssh cannot connect to ssh server

-- 
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


Re: [Bug 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Clint Byrum
On Tue, 2010-12-28 at 14:22 +, Scott James Remnant wrote:
 On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:
 
  This makes sense, because telinit u just sends SIGTERM to upstart, which
  has no handler, as it was removed by revision 977, and doesn't seem to
  have been added back. Since SIG_DFL signals are not delivered to init,
  I'm not sure how umountroot's call to 'telinit u' can help in this case.
 
  Unless I'm missing something in upstart's code (quite likely) I think
  there may still potentially need to be a change in upstart to support
  re-executing.
 
 Hmm, while that handled was removed Upstream, the code should have
 been retained in the Ubuntu package as part of the telinit u patch.
 
 The idea is that rather than doing a full state transfer, Upstart just
 re-exec's itself and loses all state.  That's why we do it as the last
 thing before unmounting the root on shutdown, because it then doesn't
 matter about the state - there shouldn't be any.
 
 Maybe that part of the patch has been lost?
 

Ahh, as I suspected I was missing something in upstart's code.

That code is cleverly hidden within the package diff.

It registers nih_main_term_signal() which calls nih_main_loop_exit(),
which tells init to exit after any currently running operation is over.

So, it would seem init exits on SIGTERM. I did see it actually exit and
end up panicing the kernel once, but only when I sent multiple kills.

init should never exit, so should'nt we instead be execcing ourselves
again? Will keep digging in, maybe neither are happening as we expect
them to, causing this issue.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely
I'm guessing this is waiting for a SRU. Here's the patch for Lucid and
Maverick. Description updated for SRU. Please somebody add some notes to
'REGRESSION POTENTIAL' because I have no idea about that...

** Description changed:

  When sshd gets a signal 1 for reload, it forks a new process and ditches
  the old. This causes upstart to believe that ssh has crashed, and loses
  track of it. A second reload (or any other initctl operation on ssh)
  will thus say:
  
  reload: Unknown instance:
  
  There would be 2 ways to fix this:
  1.  Don't have ssh fork on relod, but keep the same pid
  2. Use a different mechanism in upstart to keep track of ssh. Maybe a pid 
file? Just tracking children of the exited ssh won't work, or it might 
accidentally track a particular session rather than the master, if somebody 
just happens to log in close to reload time.
  
+ openssh-server  1:5.3p1-3ubuntu4
+ upstart 0.6.5-7
  
- # lsb_release -rd
- Description:Ubuntu 10.04.1 LTS
- Release:10.04
+  Info for Maverick, Lucid SRU 
+ IMPACT: if sshd gets a HUP signal, it forks a new process and upstart thinks 
the process died and loses track of it, so the user/admin uses the ability to 
stop/start/reload the daemon through upstart.
+ The problem is fixed in Natty 5.6p1-2ubuntu3. See attached patches for 
Maverick and Lucid.
  
- # dpkg -l openssh-server | cat
- Desired=Unknown/Install/Remove/Purge/Hold
- | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
- |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
- ||/ NameVersion   
 Description
- 
+++-===-==-=
- ii  openssh-server  1:5.3p1-3ubuntu4  
 secure shell (SSH) server, for secure access from 
remote machines
+ TEST CASE:
  
- # dpkg -l upstart
- Desired=Unknown/Install/Remove/Purge/Hold
- | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
- |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
- ||/ Name   VersionDescription
- +++-==-==-
- ii  upstart0.6.5-7event-based init daemon
+ - install openssh-server
+ - send a HUP signal to sshd
+ - the daemon is restarted, but upstart thinks that it crashed 
(/var/log/daemon.log):
+ 
+ Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
+ Dec 28 20:59:57 utest-lls32 init: ssh main process (1451) terminated with 
status 255
+ Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
+ Dec 28 20:59:57 utest-lls32 init: ssh main process (1455) terminated with 
status 255
+ Dec 28 20:59:57 utest-lls32 init: ssh respawning too fast, stopped
+ 
+ - after this, upstart won't know about sshd, despite the daemon running
+ just fine:
+ 
+ r...@utest-lls32:~# reload ssh
+ reload: Unknown instance: 
+ 
+ With the fix applied, the correct behavior is:
+ 
+ - send a HUP signal to sshd
+   ps ax |grep sshd
+   kill -HUP sshd
+ - the daemon reloads (/var/log/auth.log):
+ 
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Received SIGHUP; restarting.
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on 0.0.0.0 port 22.
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on :: port 22.
+ 
+ - reloading with upstart gives the same result, and NOT an error
+ message.
+ 
+ REGRESSION POTENTIAL: TODO

-- 
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/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Lucid
   
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/687535/+attachment/1778353/+files/lucid.debdiff

-- 
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/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Maverick
   
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/687535/+attachment/1778359/+files/maverick.debdiff

-- 
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/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 695145] [NEW] package clamav-base 0.96. 3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrad e: sub-processo script post-installation instalado retor nou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki
Public bug reported:

Binary package hint: clamav

r...@xx:/home/xxx/Download/clamav-0.96.5# clamdscan /
ERROR: Clamd is not configured properly.

--- SCAN SUMMARY ---
Infected files: 0
Time: 0.000 sec (0 m 0 s)

And:
# apt-get purge clamav*
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
Nota, selecionando libclamav-client-perl para expressão regular 'clamav*'
Nota, selecionando python2.6-clamav para expressão regular 'clamav*'
Nota, selecionando python-clamav ao invés de python2.6-clamav
Nota, selecionando clamav-unofficial-sigs para expressão regular 'clamav*'
Nota, selecionando clamav para expressão regular 'clamav*'
Nota, selecionando clamav-freshclam para expressão regular 'clamav*'
Nota, selecionando clamav-dbg para expressão regular 'clamav*'
Nota, selecionando libclamav-dev para expressão regular 'clamav*'
Nota, selecionando clamav-base para expressão regular 'clamav*'
Nota, selecionando libclamav2 para expressão regular 'clamav*'
Nota, selecionando libclamav3 para expressão regular 'clamav*'
Nota, selecionando libclamav6 para expressão regular 'clamav*'
Nota, selecionando clamav-testfiles para expressão regular 'clamav*'
Nota, selecionando clamav-data para expressão regular 'clamav*'
Nota, selecionando clamav-getfiles para expressão regular 'clamav*'
Nota, selecionando clamav-daemon para expressão regular 'clamav*'
Nota, selecionando clamav-docs para expressão regular 'clamav*'
Nota, selecionando python-clamav para expressão regular 'clamav*'
Nota, selecionando clamav-milter para expressão regular 'clamav*'
Nota, selecionando clamassassin para expressão regular 'clamav*'
E: Impossível achar pacote clamav*
# apt-get install clamav
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
Os pacotes extra a seguir serão instalados:
  clamav-base clamav-freshclam libclamav6
Pacotes sugeridos:
  clamav-docs libclamunrar6
Os NOVOS pacotes a seguir serão instalados:
  clamav clamav-base clamav-freshclam libclamav6
0 pacotes atualizados, 4 pacotes novos instalados, 0 a serem removidos e 0 não 
atualizados.
É preciso baixar 0B/4684kB de arquivos.
Depois desta operação, 10,7MB adicionais de espaço em disco serão usados.
Você quer continuar [S/n]? s
Pré-configurando pacotes ...
Selecionando pacote previamente não selecionado libclamav6.
(Lendo banco de dados ... 127204 arquivos e diretórios atualmente instalados).
Desempacotando libclamav6 (de 
.../libclamav6_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) ...
Selecionando pacote previamente não selecionado clamav-base.
Desempacotando clamav-base (de 
.../clamav-base_0.96.3+dfsg-2ubuntu1.0.10.04.2_all.deb) ...
Selecionando pacote previamente não selecionado clamav-freshclam.
Desempacotando clamav-freshclam (de 
.../clamav-freshclam_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) ...
Selecionando pacote previamente não selecionado clamav.
Desempacotando clamav (de .../clamav_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) 
...
Processando gatilhos para man-db ...
Processando gatilhos para ureadahead ...
Configurando libclamav6 (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...

Configurando clamav-base (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...
adduser: O usuário `clamav' já existe. Saindo.
dpkg: erro processando clamav-base (--configure):
 sub-processo script post-installation instalado retornou estado de saída de 
erro 1
dpkg: problemas de dependência impedem a configuração de clamav-freshclam:
 clamav-freshclam depende de clamav-base (= 0.96.3+dfsg-2ubuntu1.0.10.04.2); 
porém:
  Pacote clamav-base não está configurado ainda.
dpkg: erro processando clamav-freshclam (--configure):
 problemas de dependência - deixando desconfigurado
dpkg: problemas de dependência impedem a configuração de clamav:
 clamav depende de clamav-freshclam | clamav-data; porém:
  Pacote clamav-freshclam não está configurado ainda.
  Pacote clamav-data não está instalado.
  Pacote clamav-freshclam, o qual fornece clamav-data ainda não está 
configurado.
dpkg: erro processando clamav (--configure):
 problemas de dependência - deixando desconfigurado
Processando gatilhos para libc-bin ...
Nenhum relatório do apport gravado porque a mensagem de erro indica é o 
seguimento de um erro de uma falha anterior.
Nenhum relatório do apport gravado porque a 
mensagem de erro indica é o seguimento de um erro de uma falha anterior.

ldconfig deferred processing now taking place
Erros foram encontrados durante o processamento de:
 clamav-base
 clamav-freshclam
 clamav
E: Sub-process /usr/bin/dpkg returned an error code (1)

help!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: clamav-base 0.96.3+dfsg-2ubuntu1.0.10.04.2
ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-generic i686
Architecture: i386
Date: Tue Dec 28 18:34:38 2010

[Bug 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki


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

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Clint Byrum
Thanks Imre!

I've updated the 'regression-potential' and subscribed ubuntu-sru and
ubuntu-sponsors.

** Tags added: patch

** Description changed:

  When sshd gets a signal 1 for reload, it forks a new process and ditches
  the old. This causes upstart to believe that ssh has crashed, and loses
  track of it. A second reload (or any other initctl operation on ssh)
  will thus say:
  
  reload: Unknown instance:
  
  There would be 2 ways to fix this:
  1.  Don't have ssh fork on relod, but keep the same pid
  2. Use a different mechanism in upstart to keep track of ssh. Maybe a pid 
file? Just tracking children of the exited ssh won't work, or it might 
accidentally track a particular session rather than the master, if somebody 
just happens to log in close to reload time.
  
  openssh-server  1:5.3p1-3ubuntu4
  upstart 0.6.5-7
  
   Info for Maverick, Lucid SRU 
  IMPACT: if sshd gets a HUP signal, it forks a new process and upstart thinks 
the process died and loses track of it, so the user/admin uses the ability to 
stop/start/reload the daemon through upstart.
  The problem is fixed in Natty 5.6p1-2ubuntu3. See attached patches for 
Maverick and Lucid.
  
  TEST CASE:
  
  - install openssh-server
  - send a HUP signal to sshd
  - the daemon is restarted, but upstart thinks that it crashed 
(/var/log/daemon.log):
  
  Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
  Dec 28 20:59:57 utest-lls32 init: ssh main process (1451) terminated with 
status 255
  Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
  Dec 28 20:59:57 utest-lls32 init: ssh main process (1455) terminated with 
status 255
  Dec 28 20:59:57 utest-lls32 init: ssh respawning too fast, stopped
  
  - after this, upstart won't know about sshd, despite the daemon running
  just fine:
  
  r...@utest-lls32:~# reload ssh
- reload: Unknown instance: 
+ reload: Unknown instance:
  
  With the fix applied, the correct behavior is:
  
  - send a HUP signal to sshd
-   ps ax |grep sshd
-   kill -HUP sshd
+   ps ax |grep sshd
+   kill -HUP sshd
  - the daemon reloads (/var/log/auth.log):
  
  Dec 28 21:37:01 utest-lls32 sshd[742]: Received SIGHUP; restarting.
  Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on 0.0.0.0 port 22.
  Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on :: port 22.
  
  - reloading with upstart gives the same result, and NOT an error
  message.
  
- REGRESSION POTENTIAL: TODO
+ REGRESSION POTENTIAL:
+ 
+ There is a small race condition in sshd between when it forks, and when
+ it listens for incoming connections. The length of the race is
+ lengthened by a very tiny amount by considering sshd started as soon as
+ it has been executed, rather than when it forks. This will only affect
+ jobs that use 'start on started ssh' and immediately connect to it. This
+ is unlikely to cause problems in any real world scenario, given that
+ most of these programs would also have to fork, exec, and open a socket,
+ which is more work than what sshd will be doing in that time.

-- 
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/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Clint Byrum
Imre, the debdiffs need different changelog lines for SRU's

openssh (1:5.3p1-3ubuntu4.1) lucid-proposed; urgency=low

and

openssh (1:5.5p1-4ubuntu4.1) maverick-proposed; urgency=low

Otherwise they look good to me.

-- 
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/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Imre Gergely
How did you remove the clamav packages last time, before trying to
reinstall? Did you by any change add the clamav user manually after
removing the packages?

Configurando clamav-base (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...
adduser: O usuário `clamav' já existe. Saindo.
dpkg: erro processando clamav-base (--configure):
 sub-processo script post-installation instalado retornou estado de saída de 
erro 1

If I understand this correctly, it complains that the 'clamav' user
already exists. Try removing the 'clamav' user and running apt-get -f
install again.

** Changed in: clamav (Ubuntu)
   Status: New = Incomplete

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

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely
Attached some debdiffs for Lucid and Karmic, please take a look.
I've tried to build the package with the patch applied, but some tests failed, 
I'm not sure why. Output before build failing:

The servers were restarted 437 times
Spent 665.008 of 1469 seconds executing testcases

Failed 5/752 tests, 99.34% were successful.

Failing test(s): main.lock_tables_lost_commit main.ctype_ldml
main.date_formats main.ctype_latin1_de main.events_restart

I don't think it's related to this patch, maybe there are some special
needs for building this, I tried with pbuilder on a Lucid 64bit host.

** Description changed:

  http://bugs.mysql.com/bug.php?id=31145
  
  This bug causes mysqld from 5.1.41-3ubuntu12.7 to segfault.  This is a
  simple 1 line fix that was added to MySQL 5.1.43.  Here is the patch:
  http://lists.mysql.com/commits/94936.
  
  Could you please backport this fix into the 5.1.41 package on Ubuntu
  10.04 LTS?
+ 
+  Info for SRU in Karmic, Lucid 
+ 
+ IMPACT: some ALTER TABLE queries crash the server.
+ 
+ It is fixed in Maverick (mysql-server-5.1 5.1.49-1ubuntu8.1). Tested and
+ confirmed.
+ 
+ TEST CASE:
+ 
+ Install mysql-server-5.1, use the CLI to run the following queries
+ (taken from the upstream bugreport):
+ 
+ CREATE DATABASE grtdiff_alter_test;
+ CREATE TABLE grtdiff_alter_test.t1 (t TEXT, `id` int(11) DEFAULT NULL, `id2` 
int(11)
+ DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+ ALTER TABLE `grtdiff_alter_test`.`t1` DROP COLUMN `t` , ADD COLUMN `t2` TEXT  
NULL  FIRST;
+ 
+ The last command will return:
+ 
+ ERROR 2013 (HY000): Lost connection to MySQL server during query
+ 
+ And in the /var/log/daemon.log you'll see:
+ 
+ Dec 28 23:52:39 utest-lls32 init: mysql main process (2184) terminated with 
status 1
+ Dec 28 23:52:39 utest-lls32 init: mysql main process ended, respawning
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2413]: Upgrading MySQL 
tables if necessary.
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: 
/usr/bin/mysql_upgrade: the '--basedir' option is always ignored
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: Looking for 
'mysql' as: /usr/bin/mysql
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: Looking for 
'mysqlcheck' as: /usr/bin/mysqlcheck
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: This installation 
of MySQL is already upgraded to 5.1.41, use --force if you still need to run 
mysql_upgrade
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2423]: Checking for 
insecure root accounts.
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2427]: Triggering 
myisam-recover for all MyISAM tables
+ 
+ a.k.a daemon crashed and was restarted.
+ 
+ After applying the fix the above queries will run without a crash.
+ 
+ REGRESSION POTENTIAL: should be low. The patch was taken directly from
+ upstream (see above commit link).

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

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Lucid
   
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/684398/+attachment/1778576/+files/lucid.debdiff

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

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Karmic.
   
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/684398/+attachment/1778577/+files/karmic.debdiff

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

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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


Re: [Bug 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Scott James Remnant
Are you sure?  I can't find that code at all - it looks like it's been
lost somehow

On Tue, Dec 28, 2010 at 6:19 PM, Clint Byrum cl...@fewbar.com wrote:
 On Tue, 2010-12-28 at 14:22 +, Scott James Remnant wrote:
 On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:

  This makes sense, because telinit u just sends SIGTERM to upstart, which
  has no handler, as it was removed by revision 977, and doesn't seem to
  have been added back. Since SIG_DFL signals are not delivered to init,
  I'm not sure how umountroot's call to 'telinit u' can help in this case.
 
  Unless I'm missing something in upstart's code (quite likely) I think
  there may still potentially need to be a change in upstart to support
  re-executing.
 
 Hmm, while that handled was removed Upstream, the code should have
 been retained in the Ubuntu package as part of the telinit u patch.

 The idea is that rather than doing a full state transfer, Upstart just
 re-exec's itself and loses all state.  That's why we do it as the last
 thing before unmounting the root on shutdown, because it then doesn't
 matter about the state - there shouldn't be any.

 Maybe that part of the patch has been lost?


 Ahh, as I suspected I was missing something in upstart's code.

 That code is cleverly hidden within the package diff.

 It registers nih_main_term_signal() which calls nih_main_loop_exit(),
 which tells init to exit after any currently running operation is over.

 So, it would seem init exits on SIGTERM. I did see it actually exit and
 end up panicing the kernel once, but only when I sent multiple kills.

 init should never exit, so should'nt we instead be execcing ourselves
 again? Will keep digging in, maybe neither are happening as we expect
 them to, causing this issue.

 --
 You received this bug notification because you are a member of Upstart
 Developers, which is subscribed to upstart .
 https://bugs.launchpad.net/bugs/672177

 Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
 restarted

 Status in Upstart:
  Invalid
 Status in “eglibc” package in Ubuntu:
  Invalid
 Status in “upstart” package in Ubuntu:
  Confirmed

 Bug description:
  On a clean install of Ubuntu 10.04.1, after upgrading the offer libc6 
 upgrade, on the next reboot the root fs can't be properly unmounted (mount: / 
 is busy). This causes fsck to run on boot and of course some minor issues 
 with the filesystem. This might not be a problem with libc6 itself, but a 
 side effect of upgrading in combination with some other package (I suspect 
 the init process, so I guess upstart).

 The fsck run, and the orphaned inodes it finds are holding me back from 
 installing this on a new server - especially since this already happens on a 
 clean install of 10.04.1!

 p...@ubuntu:~$ lsb_release -rd
 Description:    Ubuntu 10.04.1 LTS
 Release:        10.04

 ii  libc6                           2.11.1-0ubuntu7.2                 
 Embedded GNU C Library: Shared libraries

 ProblemType: Bug
 DistroRelease: Ubuntu 10.04
 Package: libc6 2.11.1-0ubuntu7.2
 ProcVersionSignature: Ubuntu 2.6.32-24.39-server 2.6.32.15+drm33.5
 Uname: Linux 2.6.32-24-server x86_64
 Architecture: amd64
 Date: Sun Nov  7 16:17:07 2010
 InstallationMedia: Ubuntu-Server 10.04.1 LTS Lucid Lynx - Release amd64 
 (20100816.2)
 ProcEnviron:
  PATH=(custom, no user)
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 SourcePackage: eglibc




-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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


Re: [Bug 692043] Re: package bind9 1:9.6.1 .dfsg.P1-3ubuntu0.4 [modified: usr/share/bind9/b ind9-default.md5sum] failed to install/upgrade: el s ubprocés installed post-installation script retorn à el

2010-12-28 Thread sll
Hello Serge,

Yes it solves and does the trick.

Thanks!

Sergi.


On Wed, Dec 22, 2010 at 10:20 PM, Serge Hallyn 692...@bugs.launchpad.netwrote:

 Thanks for reporting this bug and helping to make Ubuntu better.

 From the dmesg, it looks as though bind9 failed to start because
 apparmor prevented it from reading a configuration file in a custom
 location: /var/lib/named/etc/bind/named.conf.  If you want to use that
 location, you'll need to edit the apparmor configuration.  You'll
 probably want to add something like:

  /var/lib/named/etc/bind/** r,

 to the file /etc/apparmor.d/usr.sbin.named.  Please let us know if that
 succeeds.

 ** Changed in: bind9 (Ubuntu)
   Status: New = Incomplete

 --
 You received this bug notification because you are a direct subscriber
 of the bug.
 https://bugs.launchpad.net/bugs/692043

 Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el
 subprocés installed post-installation script retornà el codi d'eixida
 d'error 1

 Status in “bind9” package in Ubuntu:
   Incomplete

 Bug description:
  Binary package hint: bind9

 lsb_release -rd
 Description:Ubuntu 9.10
 Release:9.10

 ProblemType: Package
 AptOrdering:
  nspluginwrapper: Install
  bind9: Configure
  nspluginwrapper: Configure
 Architecture: amd64
 Date: Sat Dec 18 14:04:53 2010
 DistroRelease: Ubuntu 9.10
 ErrorMessage: el subprocés installed post-installation script retornà el
 codi d'eixida d'error 1
 NonfreeKernelModules: nvidia
 Package: bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum]
 ProcVersionSignature: Ubuntu 2.6.31-22.69-generic
 SourcePackage: bind9
 Title: package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el
 subprocés installed post-installation script retornà el codi d'eixida
 d'error 1
 Uname: Linux 2.6.31-22-generic x86_64

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/692043/+subscribe


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

Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified: 
usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el subprocés 
installed post-installation script retornà el codi d'eixida d'error 1

-- 
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 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki
Thanks I will try to remove and force the installation.

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

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 622815] Re: impossible to open network resources with nautilus

2010-12-28 Thread Launchpad Bug Tracker
[Expired for nautilus (Ubuntu) because there has been no activity for 60
days.]

** Changed in: nautilus (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  impossible to open network resources with nautilus

-- 
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 622815] Re: impossible to open network resources with nautilus

2010-12-28 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  impossible to open network resources with nautilus

-- 
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 662687] Re: package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-28 Thread Launchpad Bug Tracker
[Expired for apache2 (Ubuntu) because there has been no activity for 60
days.]

** Changed in: apache2 (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

-- 
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 660925] Re: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-12-28 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2

-- 
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 650795] Re: Third share is always read-only

2010-12-28 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  Third share is always read-only

-- 
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 695256] [NEW] samba refuses to show shares

2010-12-28 Thread Cypher2
Public bug reported:

Binary package hint: samba

For some reason my samba shares refuse to show up on my network eversince the 
latest maverick updates.
The testparm command outputs these strings and include my smb.conf parameters, 
which have never failed me so far, until now...


Load smb config files from /etc/samba/smb.conf
rlimit_max: rlimit_max (1024) below minimum Windows limit (16384)
Processing section [nathanel]
Processing section [Dropbox]
Processing section [Disk]
Processing section [Backup Disk]
Loaded services file OK.
ERROR: state directory /var/lib/samba does not exist
ERROR: cache directory /var/cache/samba does not exist
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions


[global]
server string = %h server (Samba, Ubuntu)
encrypt passwords = No
map to guest = Bad User
obey pam restrictions = Yes
pam password change = Yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n 
*Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
unix password sync = Yes
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
dns proxy = No
usershare allow guests = Yes
usershare owner only = No
panic action = /usr/share/samba/panic-action %d

[nathanel]
path = /home/nathanel
read only = No
guest ok = Yes

[Dropbox]
path = /home/nathanel/Dropbox
read only = No
guest ok = Yes

[Disk]
path = /media/Disk
read only = No
guest ok = Yes

[Backup Disk]
path = /media/Backup Disk
read only = No
guest ok = Yes


None of my machines seem to show through samba, what can I do?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: samba 2:3.5.4~dfsg-1ubuntu8.1
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic x86_64
Architecture: amd64
Date: Wed Dec 29 00:07:22 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_CA.utf8
 SHELL=/bin/bash
RelatedPackageVersions:
 nautilus 1:2.32.0-0ubuntu1.1
 gvfs 1.6.4-0ubuntu1.1
SambaClientRegression: Yes
SourcePackage: samba

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


** Tags: amd64 apport-bug maverick

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

Title:
  samba refuses to show shares

-- 
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 695256] Re: samba refuses to show shares

2010-12-28 Thread Cypher2


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

Title:
  samba refuses to show shares

-- 
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 685724] Re: openvpn server loses internet after bridge activation

2010-12-28 Thread jtl999
Hi
Whats the holdup.
Thanks

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

Title:
  openvpn server loses internet after bridge activation

-- 
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


Re: [Bug 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Clint Byrum
On Wed, 2010-12-29 at 00:06 +, Scott James Remnant wrote:
 Are you sure?  I can't find that code at all - it looks like it's been
 lost somehow

quite certain.. its a bit tricky to find it in bzr, but this will give
it to you for, say, maverick:

$ bzr branch lp:ubuntu/maverick/upstart maverick
$ cd maverick
$ bzr diff -r tag:upstream-0.6.6..tag:0.6.6-3

apt-get source will wrap it up in the .diff.gz for you as well.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 546251] Re: plymouth text theme does not CR on LF (it's staircasing)

2010-12-28 Thread David Adam
I just spent a few hours trying to get my head around this without any
real luck. I'm pretty sure the function that needs work is
view_show_prompt in src/plugins/splash/text/plugin.c - the trailing : 
on the prompt reported in comment #2 is almost certainly the result of
cryptsetup's debian/initramfs/cryptroot-script including a :  in the
cryptkey variable while view_show_prompt also adds one, and arguably
should be fixed in cryptsetup rather than plymouth. The staircasing
issue, I have no idea.

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

Title:
  plymouth text theme does not CR on LF (it's staircasing)

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


[Bug 694904] Re: need to create a login acct

2010-12-28 Thread Robert Roth
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately, we cannot work on this bug because your
description didn't include enough information. You may find it helpful
to read How to report bugs effectively
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures

At a minimum, we need:
1. the specific steps or actions you took that caused you to encounter the 
problem,
2. the behavior you expected, and
3. the behavior you actually encountered (in as much detail as possible).
Thanks!

** Changed in: file-roller (Ubuntu)
   Status: New = Incomplete

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

Title:
  need to create a login acct

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


[Bug 694888] Re: The Terminal

2010-12-28 Thread Robert Roth
Thank you for taking the time to report this bug and helping to make Ubuntu 
better. Please execute the following command, as it will automatically gather 
debugging information, in a terminal:
apport-collect 694888
When reporting bugs in the future please use apport by using 'ubuntu-bug' and 
the name of the package affected. You can learn more about this functionality 
at https://wiki.ubuntu.com/ReportingBugs.

** Changed in: gnome-terminal (Ubuntu)
   Status: New = Incomplete

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

Title:
  The Terminal

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


[Bug 694821] Re: Transmission freeze when downloading a file with a filesize4Gio

2010-12-28 Thread Wajih Letaief
i'm using Transmission with many laptops and i have both :
Transmission 2.13 (11501)
and
Transmission 2.04

and the issue is the same with both versions

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

Title:
  Transmission freeze when downloading a file with a filesize4Gio

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


[Bug 694763] Re: installer crashed

2010-12-28 Thread Robert Roth
** Package changed: ubuntu = ubiquity (Ubuntu)

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

Title:
  installer crashed

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


[Bug 694925] [NEW] [FTBFS] package gnome-gpg 0.6.0-1ubuntu1in natty

2010-12-28 Thread Mahyuddin Susanto
Public bug reported:

Binary package hint: gnome-gpg

Gnome-gpgp packages failed build at natty, we can read at 
http://people.ubuntuwire.org/~lucas/ubuntu-nbs/32/gnome-gpg_0.6.0-1ubuntu1_lubuntu32.buildlog
http://people.ubuntuwire.org/~lucas/ubuntu-nbs/64/gnome-gpg_0.6.0-1ubuntu1_lubuntu64.buildlog

I believe, this problem because of DSO linking

** Affects: gnome-gpg (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/694925

Title:
  [FTBFS] package gnome-gpg 0.6.0-1ubuntu1in natty

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


[Bug 694925] Re: [FTBFS] package gnome-gpg 0.6.0-1ubuntu1in natty

2010-12-28 Thread Mahyuddin Susanto

** Patch added: gnome-gpg_0.6.0-1ubuntu2.dsc.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/gnome-gpg/+bug/694925/+attachment/1777833/+files/gnome-gpg_0.6.0-1ubuntu2.dsc.debdiff

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

Title:
  [FTBFS] package gnome-gpg 0.6.0-1ubuntu1in natty

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


[Bug 668849] Re: gbp does not recreate 2nd orig tarball

2010-12-28 Thread Rolf Leggewie
setting status to wip

** Changed in: git-buildpackage (Ubuntu)
   Status: New = In Progress

** Changed in: git-buildpackage (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  gbp does not recreate 2nd orig tarball

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


[Bug 694927] [NEW] gmote Linux 2.0.0 server crashed

2010-12-28 Thread albertfuller
Public bug reported:

AMD 64-bit dual core PC running Ubuntu 10.10 with smartphone (Sony
Ericsson Xperia X10a running Android 2.6.29). Gmote crashes when
attempting to play avi or mp3 files.

** Affects: 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/694927

Title:
  gmote Linux 2.0.0 server crashed

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


[Bug 694927] Re: gmote Linux 2.0.0 server crashed

2010-12-28 Thread albertfuller

** Attachment added: Gmote error log
   
https://bugs.launchpad.net/bugs/694927/+attachment/1777836/+files/hs_err_pid23407.log

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

Title:
  gmote Linux 2.0.0 server crashed

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


[Bug 691378] Re: audacious2 crashed with SIGSEGV when quitting

2010-12-28 Thread Eliah Kagan
Here's a better, but not perfect, backtrace from gdb. Complete gdb
session log attached.

#0  __lll_lock_wait ()
at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:137
#1  0x75447849 in _L_lock_953 () from /lib/libpthread.so.0
#2  0x7544766b in __pthread_mutex_lock (mutex=0x7fffe8b6aa08)
at pthread_mutex_lock.c:61
#3  0x7fffe895e5b5 in ?? ()
#4  0x7fffd8003000 in ?? ()
#5  0x75448c70 in ?? () at pthread_mutex_unlock.c:71
   from /lib/libpthread.so.0
#6  0x0001 in ?? ()
#7  0x76c677e4 in g_thread_create_proxy (data=0x63fee0)
at /build/buildd/glib2.0-2.26.1/glib/gthread.c:1897
#8  0x75445971 in start_thread (arg=value optimized out)
at pthread_create.c:304
#9  0x74d8d92d in clone ()
at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#10 0x in ?? ()

** Attachment added: transcript of a 2nd audacious session in gdb, with better 
(but not perfect) backtrace
   
https://bugs.launchpad.net/ubuntu/+source/audacious/+bug/691378/+attachment/1777837/+files/audacious-gdb-transcript2.txt

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

Title:
  audacious2 crashed with SIGSEGV when quitting

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


[Bug 664630] Re: action button inconsistent behaviour when logging out

2010-12-28 Thread slumbergod
Unfortunately, it is not a bug I can reproduce everytime. It is the
worst kind because it seems quite random in nature. That said, with the
upcoming 11.04 and the new Xfce environment perhaps it won't even be an
issue anymore. I am happy to wait and see.

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

Title:
  action button inconsistent behaviour when logging out 

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


[Bug 694428] Re: No /proc/bus/usb hierarchy

2010-12-28 Thread Brian P Flaherty
Sorry about this wasted bandwidth.  I'm trying to get a driver to work
and documentation said it needed /proc/bus/usb.  Just realized that all
that moved to /dev/bus.

** Changed in: linux (Ubuntu)
   Status: New = Invalid

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

Title:
  No /proc/bus/usb hierarchy

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


[Bug 591418] Re: gnome-power-manager fails to control LCD brightness, while FN keys work normally (Toshiba satellite A210P)

2010-12-28 Thread ColdEgo
So, it is hopelessly wait for bugfix or at least refusal?

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

Title:
  gnome-power-manager fails to control LCD brightness, while FN keys work 
normally (Toshiba satellite A210P)

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


[Bug 694930] [NEW] package texlive-binaries 2009 -5ubuntu0.2 failed to install/upgrade: пр облемы зависимостей -- оставляем не настроенн ым

2010-12-28 Thread ilya
Public bug reported:

Install pgAdmin III

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: texlive-binaries 2009-5ubuntu0.2
ProcVersionSignature: Ubuntu 2.6.32-27.49-server 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-server x86_64
Architecture: amd64
Date: Tue Dec 28 11:42:26 2010
ErrorMessage: проблемы зависимостей -- оставляем не настроенным
InstallationMedia: Ubuntu-Server 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.2)
SourcePackage: texlive-bin
Title: package texlive-binaries 2009-5ubuntu0.2 failed to install/upgrade: 
проблемы зависимостей -- оставляем не настроенным

** Affects: texlive-bin (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

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

Title:
  package texlive-binaries 2009-5ubuntu0.2 failed to install/upgrade: проблемы 
зависимостей -- оставляем не настроенным

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

[Bug 694930] Re: package texlive-binaries 2009-5ub untu0.2 failed to install/upgrade: про блемы зависимостей -- о ставляем не настроенны м

2010-12-28 Thread ilya


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

Title:
  package texlive-binaries 2009-5ubuntu0.2 failed to install/upgrade: проблемы 
зависимостей -- оставляем не настроенным

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

[Bug 651935] Re: [STAGING] kernel-oops following wireless problems (rt3090)

2010-12-28 Thread Gary M
@Laurent, I've attached a blacklist file which goes into /etc/module.d/
and is named blacklist-wireless.conf

** Attachment added: Workaround blacklist file to go into /etc/modprobe.d/
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/651935/+attachment/1777843/+files/blacklist-wireless.conf

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

Title:
  [STAGING] kernel-oops following wireless problems (rt3090)

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


[Bug 694931] [NEW] package libc6 2.11.1-0ubuntu7.6 failed to install/upgrade: subprocess new post-removal script killed by signal (Illegal instruction)

2010-12-28 Thread Sebastian Sjoholm
Public bug reported:


Issue occured during a release upgrade from 10.04 to 10.10 on Ubuntu Server. 
Please see attached terminal log below;

r...@wsc:/etc# lsb_release -rd
Description:Ubuntu 10.04.1 LTS
Release:10.04
r...@wsc:/etc#

---

r...@wsc:/etc# do-release-upgrade
Checking for a new ubuntu release
Done Upgrade tool signature
Done Upgrade tool
Done downloading
extracting 'maverick.tar.gz'
authenticate 'maverick.tar.gz' against 'maverick.tar.gz.gpg' 
tar: Removing leading `/' from member names

Reading cache

Checking package manager

Continue running under SSH?

This session appears to be running under ssh. It is not recommended 
to perform a upgrade over ssh currently because in case of failure it 
is harder to recover. 

If you continue, an additional ssh daemon will be started at port 
'1022'. 
Do you want to continue? 

Continue [yN] y

Starting additional sshd

To make recovery in case of failure easier, an additional sshd will 
be started on port '1022'. If anything goes wrong with the running 
ssh you can still connect to the additional one. 


Reading package lists... Done
Building dependency tree
Reading state information... Done
Building data structures... Done 
Reading package lists... Done
Building dependency tree  
Reading state information... Done
Building data structures... Done 
No candidate ver:  python2.5-minimal
No candidate ver:  libdirectfb-1.0-0
No candidate ver:  upstart-logd
No candidate ver:  libparted1.8-10
No candidate ver:  libparted1.8-12
No candidate ver:  linux-restricted-modules-2.6.28-11-generic
No candidate ver:  libc-client2007b
No candidate ver:  libbind9-40
No candidate ver:  python2.4-minimal
No candidate ver:  upstart-compat-sysv
No candidate ver:  libisc45
No candidate ver:  libisccfg50
No candidate ver:  libming0
No candidate ver:  linux-image-2.6.28-15-generic
No candidate ver:  libntfs-3g49
No candidate ver:  libmysqlclient15off
No candidate ver:  libisccfg40
No candidate ver:  php5-mhash
No candidate ver:  liblwres50
No candidate ver:  libiw29
No candidate ver:  libmagickwand1
No candidate ver:  libwvstreams4.4-base
No candidate ver:  libdatrie0
No candidate ver:  linux-restricted-modules-2.6.28-15-generic
No candidate ver:  system-services
No candidate ver:  mysql-server-5.0
No candidate ver:  libmagickcore1
No candidate ver:  linux-restricted-modules-2.6.28-17-generic
No candidate ver:  libisccc50
No candidate ver:  libdns53
No candidate ver:  libntfs-3g54
No candidate ver:  libisc50
No candidate ver:  python2.5
No candidate ver:  python2.4
No candidate ver:  libuniconf4.4
No candidate ver:  liblwres40
No candidate ver:  libbind9-50
No candidate ver:  libkrb53
No candidate ver:  linux-image-2.6.31-21-generic
No candidate ver:  linux-image-2.6.28-11-generic
No candidate ver:  libwvstreams4.4-extras
No candidate ver:  libmysqlclient15-dev
No candidate ver:  libisccc40
No candidate ver:  libdns46

Updating repository information
WARNING: Failed to read mirror file
100% [Working] 0s 
Checking package manager
Reading package lists... Done
Building dependency tree  
Reading state information... Done
Building data structures... Done 

Calculating the changes

Calculating the changes
No candidate ver:  python2.5-minimal
No candidate ver:  linux-image-2.6.28-11-generic
No candidate ver:  libdirectfb-1.0-0
No candidate ver:  upstart-logd
No candidate ver:  libparted1.8-10
No candidate ver:  libparted1.8-12
No candidate ver:  linux-restricted-modules-2.6.28-11-generic
No candidate ver:  libc-client2007b
No candidate ver:  libbind9-40
No candidate ver:  python2.4-minimal
No candidate ver:  upstart-compat-sysv
No candidate ver:  libisc45
No candidate ver:  libisccfg50
No candidate ver:  libming0
No candidate ver:  linux-image-2.6.28-15-generic
No candidate ver:  libntfs-3g49
No candidate ver:  libmysqlclient15off
No candidate ver:  libisccfg40
No candidate ver:  php5-mhash
No candidate ver:  liblwres50
No candidate ver:  libmagickwand1
No candidate ver:  libwvstreams4.4-base
No candidate ver:  libdatrie0
No candidate ver:  linux-restricted-modules-2.6.28-15-generic
No candidate ver:  libgraphviz4
No candidate ver:  system-services
No candidate ver:  libdirectfb-1.2-0
No candidate ver:  mysql-server-5.0
No candidate ver:  libmagickcore1
No candidate ver:  linux-restricted-modules-2.6.28-17-generic
No candidate ver:  libiw29
No candidate ver:  libisccc50
No candidate ver:  libdns53
No candidate ver:  libntfs-3g54
No candidate ver:  libisc50
No candidate ver:  python2.5
No candidate ver:  python2.4
No candidate ver:  libuniconf4.4
No candidate ver:  liblwres40
No candidate ver:  libbind9-50
No candidate ver:  libkrb53
No candidate ver:  linux-image-2.6.31-21-generic
No candidate ver:  libwvstreams4.4-extras
No candidate ver:  libmysqlclient15-dev
No candidate ver:  libisccc40
No candidate ver:  libdns46

Do you want to start the upgrade?


1 installed package is no longer supported by Canonical. You can 
still get 

[Bug 694931] Re: package libc6 2.11.1-0ubuntu7.6 failed to install/upgrade: subprocess new post-removal script killed by signal (Illegal instruction)

2010-12-28 Thread Sebastian Sjoholm


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

Title:
  package libc6 2.11.1-0ubuntu7.6 failed to install/upgrade: subprocess new 
post-removal script killed by signal (Illegal instruction)

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


[Bug 694932] [NEW] application got hang and block initiating call

2010-12-28 Thread dev kumar
Public bug reported:

Binary package hint: ekiga

I have installed ekiza soft phone there is no dependency issue but after some 
time application got hang.
and it prompt as not responding

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: ekiga 3.2.7-2ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
Date: Tue Dec 28 13:11:17 2010
ExecutablePath: /usr/bin/ekiga
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ekiga

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


** Tags: apport-bug i386 maverick

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

Title:
  application got hang and block initiating call 

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


[Bug 694932] Re: application got hang and block initiating call

2010-12-28 Thread dev kumar


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

Title:
  application got hang and block initiating call 

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


[Bug 644644] Re: Frequent PA crashes during playback - pa_stream_cork() failed: Connection terminated and pa_stream_writable_size(): Connection failed

2010-12-28 Thread Osmo Laitinen
I also have this problem with Totem and .avi files, .ogv files works fine. 
Haven't tested other files.
Using Ubuntu 10.10 Notebook edition on HP Mini 5102.

I tested with ppa and result is D. 
With gstreamer I updated only gstreamer0.10-pulseaudio package, not 
gstreamer0.10-plugins-good.


00:00.0 Host bridge: Intel Corporation N10 Family DMI Bridge
00:02.0 VGA compatible controller: Intel Corporation N10 Family Integrated 
Graphics Controller
00:02.1 Display controller: Intel Corporation N10 Family Integrated Graphics 
Controller
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio 
Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 
02)
00:1c.2 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 3 (rev 
02)
00:1c.3 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 4 (rev 
02)
00:1d.0 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller 
#1 (rev 02)
00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller 
#2 (rev 02)
00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller 
#3 (rev 02)
00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller 
#4 (rev 02)
00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller 
(rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation NM10 Family LPC Controller (rev 02)
00:1f.2 SATA controller: Intel Corporation N10/ICH7 Family SATA AHCI Controller 
(rev 02)
01:00.0 Network controller: Broadcom Corporation BCM43224 802.11a/b/g/n (rev 01)
43:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8059 PCI-E 
Gigabit Ethernet Controller (rev ff)

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

Title:
  Frequent PA crashes during playback - pa_stream_cork() failed: Connection 
terminated and pa_stream_writable_size(): Connection failed

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


[Bug 235399] Re: Print black does not use black ink cartridge

2010-12-28 Thread mtom
Hi David,

I'm also using Lucid and suffer from the same problem. After looking
over Till's patch I found out, you can fix it easily for yourself by
making some adjustments to one file and resetup your printer. I'll
describe it in detail for my case. I'm using a HP OfficeJet 5600.

First, open the file /usr/share/cups/drv/hpijs.drv in your favourite text 
editor.
Then, we need to find the real device for your model, in my case, I searched 
for Officejet 5600 an the scrolled upwards to find the beginning of a 
definition like this

 DJ3600
{

So I know now, my printer is actually a kind of DeskJet 3600.

If you go down a few lines, you will see some attribute definitions. Look for 
FoomaticRIPOptionSetting and PrintoutMode=...
The PrintoutMode is what you want to adjust.

For example:

Attribute FoomaticRIPOptionSetting PrintoutMode=Normal
Quality=300ColorCMY

Edit this line and add a K for blacK add the and of the quality
setting so it reads like this:

Attribute FoomaticRIPOptionSetting PrintoutMode=Normal
Quality=300ColorCMYK

Repeat this step with all other printout setting, which are missing the
K. My attributes look like the following:

  Attribute FoomaticRIPOptionSetting PrintoutMode=Draft 
Quality=300DraftColorCM
YK
  Attribute FoomaticRIPOptionSetting PrintoutMode=Draft.Gray 
Quality=300DraftGr
ayscaleK
  Attribute FoomaticRIPOptionSetting PrintoutMode=Normal 
Quality=300ColorCMYK
  Attribute FoomaticRIPOptionSetting PrintoutMode=Normal.Gray 
Quality=300Graysc
aleK
  Attribute FoomaticRIPOptionSetting PrintoutMode=High 
Quality=600ColorCMYK
  Attribute FoomaticRIPOptionSetting PrintoutMode=High.Gray 
Quality=600Grayscal
eK

The  is some kind of line continuation sign. Just add the K in the
next line.

Save the file, delete your printer and re-setup it again. It should now
print using both cartridges.

If you would like to adjust the textual lines for printout mode in cups
you could do this in the section of your printer, too.

Search for Choice, of course in the section of your printer device
only, and edit the labels. Mine are

Option PrintoutMode/Printout Mode PickOne AnySetup 10.0
  Choice Draft/Draft (Black and color cartridge) %% 
FoomaticRIPOptionSetting: PrintoutMode=Draft
  Choice Draft.Gray/Draft Grayscale (Black cartridge) %% 
FoomaticRIPOptionSetting: PrintoutMode=Draft.Gray  
  *Choice Normal/Normal (Black and color cartridge) %% 
FoomaticRIPOptionSetting: PrintoutMode=Normal  
  Choice Normal.Gray/Normal Grayscale (Black cartridge) %% 
FoomaticRIPOptionSetting: PrintoutMode=Normal.Gray  

My printer works flawlessly since then. Hope, I could help.

Regards
Thomas

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

Title:
  Print black does not use black ink cartridge

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


[Bug 694934] [NEW] two independant sata drives seen as raid

2010-12-28 Thread Henry Charles Barfield
Public bug reported:

UBUNTU 10.04 setup/livecd problem
my problem is that i have two identical sata drives connected to the computer 
and instead of seperate drives - linux tends to see it as a raid of double the 
size.  i started reporting it in the SUSE thing but i didnt quite like one 
thing in suse so i am looking around. i can seperate the drives in SUSE setup 
(but wasnt the first option), in your setup i cannot at all - so if i want to 
keep my data, i cannot install ubuntu direct to the drive.this bug is not as 
bad in SUSE so my other linux problems may be worse with ubuntu, 

(video cards)
like in SUSE, two graphics cards (NV and ATI)  wasnt auto setuped (and i need 
to do code to set them up - no GUI help whatsoever) the SUSE people have zero 
interest in fixing this which is odd due to the fact that GUI sells (um gives 
away) and CLI doesnt and multimonitrs are getting increasingly popular, i even 
used three screens(three cards) in win98. 

(other hdd setup option)
 i tried putting files in the windows patitions and encounterd an error (it 
couldnt mount stuff) and asked me to do chkdsk/r - that partition has bad 
sectors under one DVD image so it faills. so i dont know if its a patition 
problem or a linux problem, and if i cannot get the cards to work well then i 
dont want to waste effort getting the drive or another drive working..


here is the report for suse 11.3
https://bugzilla.novell.com/show_bug.cgi?id=653081 also see the related 
bugs as they could be other future problems you could have if you fix it, and i 
see one - it should have been able to mount the partitions it does see in the 
so called 2x200Gb drive..  in one of the linked bugs i wrote [ i didnt see the 
problem in ubuntu ] this is incorrect and i cannot modify the post, it was a 
earlier version - a SUSE liveCD, 11.2   (hmm wonder if earlier versions of 
ubuntu liveCDs would work)

Charlie.

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


** Tags: raid sata

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

Title:
  two independant sata drives seen as raid

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


[Bug 684000] Re: can't change time date settings

2010-12-28 Thread Gary M
I cannot change timezone, date/time or main city from the Gnome classic
desktop either.

** Changed in: indicator-datetime (Ubuntu)
   Status: New = Confirmed

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

Title:
  can't change time  date settings

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


[Bug 526676] Re: [Lucid] PyOS_InputHook is not available for interactive use of PyGTK set_interactive(1)

2010-12-28 Thread Dmitry Shachnev
** Changed in: pygtk (Ubuntu)
   Status: Confirmed = New

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

Title:
  [Lucid] PyOS_InputHook is not available for interactive use of PyGTK  
set_interactive(1)

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


[Bug 226974] Re: Pidgin stores passwords in plain text

2010-12-28 Thread Hadmut Danisch
Any progress? Any intention to move to a more secure messenger?

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

Title:
  Pidgin stores passwords in plain text

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


[Bug 694940] Re: prism crashed with SIGSEGV in g_type_check_instance_cast()

2010-12-28 Thread Salih EMIN

** Visibility changed to: Public

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 694753] Re: the website http://www.angelbackoffice.com which is for share trading displays the message Either the site requires ActiveX to be on or please add to trusted sites

2010-12-28 Thread Gary M
When the site mentioned trusted sites, it was apparently referring to
that list in Internet Explorer as ActiveX is a requirement.

** Changed in: firefox (Ubuntu)
   Status: New = Invalid

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

Title:
  the website http://www.angelbackoffice.com which is for share trading 
displays the message  Either the site requires ActiveX to be on or please add 
to trusted sites

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


[Bug 694153] Re: prism crashed with SIGSEGV in g_type_check_instance_cast()

2010-12-28 Thread Salih EMIN
*** This bug is a duplicate of bug 694940 ***
https://bugs.launchpad.net/bugs/694940

** This bug has been marked a duplicate of bug 694940
   prism crashed with SIGSEGV in g_type_check_instance_cast()
 * You can subscribe to bug 694940 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/prism/+bug/694940/+subscribe

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 694940]

2010-12-28 Thread Apport retracing service
StacktraceTop:
 g_type_check_instance_cast (
 child_notify_cb (widget=0x7f4ccb3f5690, 
 ?? ()
 ?? ()

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 694940] Stacktrace.txt

2010-12-28 Thread Apport retracing service

** Attachment added: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/694940/+attachment/1777866/+files/Stacktrace.txt

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 694940] ThreadStacktrace.txt

2010-12-28 Thread Apport retracing service

** Attachment added: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/694940/+attachment/1777867/+files/ThreadStacktrace.txt

** Attachment removed: CoreDump.gz
   
https://bugs.edge.launchpad.net/bugs/694940/+attachment/1777857/+files/CoreDump.gz

** Changed in: prism (Ubuntu)
   Importance: Undecided = Medium

** Tags removed: need-amd64-retrace

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 651540] Re: Cannot do video chat using jabber/xmpp

2010-12-28 Thread Ahmed El-Mahmoudy
I got this same issue in Maverick

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

Title:
  Cannot do video chat using jabber/xmpp

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


[Bug 694940] Re: prism crashed with SIGSEGV in g_type_check_instance_cast()

2010-12-28 Thread Chris Coulson
** Package changed: prism (Ubuntu) = appmenu-gtk (Ubuntu)

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

Title:
  prism crashed with SIGSEGV in g_type_check_instance_cast()

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


[Bug 688085] Re: Guest kernel hang during boot when KVM is active on i386 host

2010-12-28 Thread Fathi Boudra
** Bug watch added: Meego #10075
   http://bugs.meego.com/show_bug.cgi?id=10075

** Also affects: meego via
   http://bugs.meego.com/show_bug.cgi?id=10075
   Importance: Unknown
   Status: Unknown

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

Title:
  Guest kernel hang during boot when KVM is active on i386 host

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


[Bug 688988] Re: different archdir, please rebuild package

2010-12-28 Thread Fumihito YOSHIDA
** Changed in: libnarray-ruby (Ubuntu)
   Status: New = Confirmed

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

Title:
  different archdir, please rebuild package

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


[Bug 681748] Re: ALPS touchpad not detected at all in 'Sony VAIO F13 and F12'

2010-12-28 Thread Alex M. Lowe
Is this a duplicate of bug 641324?

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/641324

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

Title:
  ALPS touchpad not detected at all in 'Sony VAIO F13 and F12'

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


[Bug 641324] Re: Sony Vaio touch pad is not working

2010-12-28 Thread Alex M. Lowe
It appears bug 681748 is a duplicate of this one.

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/681748

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

Title:
  Sony Vaio touch pad is not working

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


[Bug 694947] [NEW] Startup-Manager does not run

2010-12-28 Thread Ohad
Public bug reported:

Binary package hint: startupmanager

On Maverick amd64, startupmanager v. 1.9.13-5 installed, I run gksu
startupmanager and get the following error:

Xlib:  extension RANDR missing on display :0.0.
Xlib:  extension RANDR missing on display :0.0.Xlib:  extension RANDR 
missing on display :0.0.
RandR extension missing
Traceback (most recent call last):
  File /usr/sbin/startupmanager, line 54, in module
main()
  File /usr/sbin/startupmanager, line 51, in main
SumGui()
  File /usr/share/startupmanager/gtk_frontend.py, line 166, in __init__
self.resolution = utils.get_resolution()
  File /usr/lib/pymodules/python2.6/bootconfig/utils.py, line 159, in 
get_resolution
return matches.group(1) + 'x' + matches.group(2)
AttributeError: 'NoneType' object has no attribute 'group'
o...@user-system-product-name:~$ ubuntu-bug startupmanager 
Xlib:  extension RANDR missing on display :0.0.
Xlib:  extension RANDR missing on display :0.0.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: startupmanager 1.9.13-5
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Tue Dec 28 11:41:25 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: startupmanager

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


** Tags: amd64 apport-bug maverick

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

Title:
  Startup-Manager does not run

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


[Bug 694947] Re: Startup-Manager does not run

2010-12-28 Thread Ohad


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

Title:
  Startup-Manager does not run

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


[Bug 694949] [NEW] package rsyslog 4.2.0-2ubuntu8.1 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 127

2010-12-28 Thread guido
Public bug reported:

Binary package hint: rsyslog

gu...@guido-desktop:~$ sudo apt-get update  sudo apt-get upgrade[sudo] 
password for guido: 
Trovato http://it.archive.ubuntu.com lucid Release.gpg 
Trovato http://security.ubuntu.com lucid-security Release.gpg  
Ign http://security.ubuntu.com/ubuntu/ lucid-security/main Translation-it  
Scaricare:1 http://dl.google.com stable Release.gpg [197B] 
Trovato http://ppa.launchpad.net lucid Release.gpg 
Ign http://ppa.launchpad.net/cairo-dock-team/ppa/ubuntu/ lucid/main 
Translation-it 
Trovato http://ppa.launchpad.net lucid Release.gpg 
Ign http://security.ubuntu.com/ubuntu/ lucid-security/restricted Translation-it 
Ign http://security.ubuntu.com/ubuntu/ lucid-security/universe Translation-it  
Ign http://security.ubuntu.com/ubuntu/ lucid-security/multiverse Translation-it 
Scaricare:2 http://archive.canonical.com lucid Release.gpg [198B]  
Ign http://archive.canonical.com/ubuntu/ lucid/partner Translation-it  
Trovato http://security.ubuntu.com lucid-security Release  
Ign http://ppa.launchpad.net/jason-scheunemann/ppa/ubuntu/ lucid/main 
Translation-it 
Trovato http://ppa.launchpad.net lucid Release.gpg 
Ign http://ppa.launchpad.net/mozillateam/firefox-stable/ubuntu/ lucid/main 
Translation-it 
Trovato http://ppa.launchpad.net lucid Release.gpg 
Ign http://ppa.launchpad.net/tualatrix/ppa/ubuntu/ lucid/main Translation-it   
Trovato http://it.archive.ubuntu.com/ubuntu/ lucid/main Translation-it 
Scaricare:3 http://archive.canonical.com lucid Release [8215B] 
Trovato http://ppa.launchpad.net lucid Release 
Trovato http://security.ubuntu.com lucid-security/main Packages
Trovato http://ppa.launchpad.net lucid Release 
Trovato http://ppa.launchpad.net lucid Release 
Trovato http://ppa.launchpad.net lucid Release 
Trovato http://it.archive.ubuntu.com/ubuntu/ lucid/restricted Translation-it   
Trovato http://security.ubuntu.com lucid-security/restricted Packages  
Trovato http://security.ubuntu.com lucid-security/main Sources 
Trovato http://security.ubuntu.com lucid-security/restricted Sources   
Trovato http://security.ubuntu.com lucid-security/universe Packages
Trovato http://security.ubuntu.com lucid-security/universe Sources 
Trovato http://ppa.launchpad.net lucid/main Packages   
Scaricare:4 http://archive.canonical.com lucid/partner Packages [11,8kB]   
Trovato http://security.ubuntu.com lucid-security/multiverse Packages  
Trovato http://security.ubuntu.com lucid-security/multiverse Sources   
Trovato http://it.archive.ubuntu.com/ubuntu/ lucid/universe Translation-it 
Trovato http://ppa.launchpad.net lucid/main Packages   
Trovato http://ppa.launchpad.net lucid/main Packages   
Trovato http://ppa.launchpad.net lucid/main Packages   
Trovato http://it.archive.ubuntu.com/ubuntu/ lucid/multiverse Translation-it   
Scaricare:5 http://archive.canonical.com lucid/partner Sources [5215B] 
Trovato http://it.archive.ubuntu.com lucid-updates Release.gpg 
Ign http://it.archive.ubuntu.com/ubuntu/ lucid-updates/main Translation-it 
Ign http://it.archive.ubuntu.com/ubuntu/ lucid-updates/restricted 
Translation-it 
Ign http://it.archive.ubuntu.com/ubuntu/ lucid-updates/universe Translation-it 
Ign http://it.archive.ubuntu.com/ubuntu/ lucid-updates/multiverse 
Translation-it 
Ign http://dl.google.com/linux/chrome/deb/ stable/main Translation-it  
Scaricare:6 http://dl.google.com stable Release.gpg [189B] 
Ign http://dl.google.com/linux/deb/ stable/non-free Translation-it 
Trovato http://it.archive.ubuntu.com lucid Release   
Ign http://dl.google.com/linux/deb/ stable/main Translation-it 
Scaricare:7 http://dl.google.com stable Release [1347B]
Trovato http://it.archive.ubuntu.com lucid-updates Release 
Scaricare:8 http://dl.google.com stable Release [2544B]
Scaricare:9 http://dl.google.com stable/main Packages [1076B]  
Trovato http://it.archive.ubuntu.com lucid/main Packages   
Scaricare:10 http://dl.google.com stable/non-free Packages [1010B] 
Scaricare:11 http://dl.google.com stable/main Packages [1082B]  
Trovato http://it.archive.ubuntu.com lucid/restricted Packages 
Trovato http://it.archive.ubuntu.com lucid/main Sources   
Trovato http://it.archive.ubuntu.com lucid/restricted Sources 
Trovato http://it.archive.ubuntu.com lucid/universe Packages 
Trovato 

[Bug 694949] Re: package rsyslog 4.2.0-2ubuntu8.1 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 127

2010-12-28 Thread guido


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

Title:
  package rsyslog 4.2.0-2ubuntu8.1 failed to install/upgrade: il sottoprocesso 
vecchio script di post-installation ha restituito lo stato di errore 127

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


[Bug 694948] [NEW] opening and closing message 2 times crash evolution

2010-12-28 Thread Daniele Cruciani
Public bug reported:

Binary package hint: evolution

I enabled ptrace but bugbuddy says it cant proceed because product is
not specified (?? I do not know how to specify it)

This is the trace:

Distribution: Ubuntu 10.10 (maverick)
Gnome Release: 2.32.0 2010-09-27 (Ubuntu)
BugBuddy Version: 2.31.92

System: Linux 2.6.35-24-generic #42-Ubuntu SMP Thu Dec 2 02:41:37 UTC 2010 
x86_64
X Vendor: The X.Org Foundation
X Vendor Release: 1090
Selinux: No
Accessibility: Enabled
GTK+ Theme: SphereCrystal
Icon Theme: SphereCrystal
GTK+ Modules: gnomesegvhandler, gail:atk-bridge, canberra-gtk-module

Memory status: size: 953516032 vsize: 953516032 resident: 66502656 share: 
28872704 rss: 66502656 rss_rlim: 18446744073709551615
CPU usage: start_time: 1293528881 rtime: 1004 utime: 934 stime: 70 cutime:0 
cstime: 0 timeout: 0 it_real_value: 0 frequency: 100

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

[Thread debugging using libthread_db enabled]
[New Thread 0x7f1e03707700 (LWP 13309)]
[New Thread 0x7f1e04709700 (LWP 13307)]
[New Thread 0x7f1e0570b700 (LWP 13306)]
[New Thread 0x7f1e05f0c700 (LWP 13305)]
[New Thread 0x7f1e01873700 (LWP 13292)]
[New Thread 0x7f1e04f0a700 (LWP 13291)]
[New Thread 0x7f1e01072700 (LWP 13288)]
[New Thread 0x7f1e167f4700 (LWP 13271)]
[New Thread 0x7f1e14be8700 (LWP 13270)]
[New Thread 0x7f1e153e9700 (LWP 13269)]
[New Thread 0x7f1e15df0700 (LWP 13268)]
[New Thread 0x7f1e16ff5700 (LWP 13266)]
[New Thread 0x7f1e17ff7700 (LWP 13264)]
[New Thread 0x7f1e18ff9700 (LWP 13262)]
[New Thread 0x7f1e197fa700 (LWP 13261)]
[New Thread 0x7f1e1a224700 (LWP 13260)]
[New Thread 0x7f1e1aa25700 (LWP 13259)]
[New Thread 0x7f1e216af700 (LWP 13258)]
0x7f1e2d6966dd in waitpid () from /lib/libpthread.so.0
#0  0x7f1e2d6966dd in waitpid () from /lib/libpthread.so.0
#1  0x7f1e29b40ce1 in g_spawn_sync () from /lib/libglib-2.0.so.0
#2  0x7f1e29b40ff9 in g_spawn_command_line_sync () from 
/lib/libglib-2.0.so.0
#3  0x7f1e216b12c4 in ?? () from 
/usr/lib/gtk-2.0/modules/libgnomesegvhandler.so
#4  signal handler called
#5  0x7f1e288a3a88 in ?? () from /usr/lib/evolution/2.30/libetable.so.0
#6  0x7f1e288a4a7e in ?? () from /usr/lib/evolution/2.30/libetable.so.0
#7  0x7f1e221b2691 in ?? () from /usr/lib/gtk-2.0/modules/libatk-bridge.so
#8  0x7f1e221b278d in ?? () from /usr/lib/gtk-2.0/modules/libatk-bridge.so
#9  0x7f1e221b2ed4 in ?? () from /usr/lib/gtk-2.0/modules/libatk-bridge.so
#10 0x7f1e2bb9dae9 in atk_focus_tracker_notify () from 
/usr/lib/libatk-1.0.so.0
#11 0x7f1e223c792b in ?? () from /usr/lib/gtk-2.0/modules/libgail.so
#12 0x7f1e2bdc7626 in ?? () from /usr/lib/libgdk-x11-2.0.so.0
#13 0x7f1e29afa342 in g_main_context_dispatch () from /lib/libglib-2.0.so.0
#14 0x7f1e29afe2a8 in ?? () from /lib/libglib-2.0.so.0
#15 0x7f1e29afe7b5 in g_main_loop_run () from /lib/libglib-2.0.so.0
#16 0x7f1e2c18d3e7 in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0
#17 0x00402623 in ?? ()
#18 0x7f1e29755d8e in __libc_start_main () from /lib/libc.so.6
#19 0x00401f49 in ?? ()
#20 0x7fff07f595a8 in ?? ()
#21 0x001c in ?? ()
#22 0x0001 in ?? ()
#23 0x7fff07f5a57c in ?? ()
#24 0x in ?? ()

Thread 19 (Thread 0x7f1e216af700 (LWP 13258)):
#0  0x7f1e29811203 in poll () from /lib/libc.so.6
No symbol table info available.
#1  0x7f1e29afe009 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#2  0x7f1e29afe7b5 in g_main_loop_run () from /lib/libglib-2.0.so.0
No symbol table info available.
#3  0x7f1e2b9250f4 in ?? () from /usr/lib/libgio-2.0.so.0
No symbol table info available.
#4  0x7f1e29b237e4 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#5  0x7f1e2d68e971 in start_thread () from /lib/libpthread.so.0
No symbol table info available.
#6  0x7f1e2981d92d in clone () from /lib/libc.so.6
No symbol table info available.
#7  0x in ?? ()
No symbol table info available.

Thread 18 (Thread 0x7f1e1aa25700 (LWP 13259)):
#0  0x7f1e2d692a9c in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/libpthread.so.0
No symbol table info available.
#1  0x7f1e29ad20b2 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#2  0x7f1e29ad2496 in g_async_queue_pop () from /lib/libglib-2.0.so.0
No symbol table info available.
#3  0x7f1e2ff70821 in ?? () from /usr/lib/libcamel-1.2.so.14
No symbol table info available.
#4  0x7f1e29b237e4 in ?? () from /lib/libglib-2.0.so.0
No symbol table info available.
#5  0x7f1e2d68e971 in start_thread () from /lib/libpthread.so.0
No symbol table info available.
#6  0x7f1e2981d92d in clone () from /lib/libc.so.6
No symbol table info available.
#7  0x in ?? ()
No symbol table info available.

Thread 17 (Thread 0x7f1e1a224700 (LWP 13260)):
#0  0x7f1e2d692a9c in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/libpthread.so.0
No symbol table info available.
#1  

[Bug 694948] Re: opening and closing message 2 times crash evolution

2010-12-28 Thread Daniele Cruciani


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

Title:
  opening and closing message 2 times crash evolution

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


[Bug 694952] [NEW] Neither unity nor the gnome-panel are loaded at startup

2010-12-28 Thread Alex
Public bug reported:

Binary package hint: unity

I've installed the first alpha version of Natty Narwhal in Virtualbox. Before 
I've installed the guest additions I've always got an error message that there 
is no 3D support and that the gnome-panel will be loaded.
Now I've installed the guest additions. The system works in fullscreen-mode. 
But neither unity nor the gnome-panel are loaded and I get no error message, 
just the desktop without menus.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: unity 3.2.8-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7
Uname: Linux 2.6.37-11-generic i686
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/allscreens/options/active_plugins'
Date: Tue Dec 28 10:54:22 2010
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20101202)
InstallationMedia_: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20101202)
Lsusb:
 Bus 001 Device 002: ID 80ee:0021  
 Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: innotek GmbH VirtualBox
PciDisplay: 00:02.0 VGA compatible controller [0300]: InnoTek Systemberatung 
GmbH VirtualBox Graphics Adapter [80ee:beef] (prog-if 00 [VGA controller])
ProcEnviron:
 LANGUAGE=de_DE:de:en_GB:en
 LANG=de_DE.UTF-8
 LC_MESSAGES=de_DE.utf8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.37-11-generic 
root=UUID=2c93cb6b-32d6-4b7c-bc8d-750da8b92c07 ro vt.handoff=7 quiet splash
ProcVersionSignature_: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7
RelatedPackageVersions:
 xserver-xorg 1:7.5+6ubuntu6
 libgl1-mesa-glx 7.9+repack-1ubuntu3
 libdrm2 2.4.22-2ubuntu1
 xserver-xorg-video-intel 2:2.13.901-2ubuntu2
 xserver-xorg-video-ati 1:6.13.2-1ubuntu2
SourcePackage: unity
XorgConf: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden: 
'/etc/X11/xorg.conf'
dmi.bios.date: 12/01/2006
dmi.bios.vendor: innotek GmbH
dmi.bios.version: VirtualBox
dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:
dmi.product.name: VirtualBox
dmi.product.version: 1.2
dmi.sys.vendor: innotek GmbH
glxinfo: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden
system: distro = Ubuntu, architecture = i686, kernel = 2.6.37-11-generic

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


** Tags: apport-bug i386 natty

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

Title:
  Neither unity nor the gnome-panel are loaded at startup

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


[Bug 694952] Re: Neither unity nor the gnome-panel are loaded at startup

2010-12-28 Thread Alex


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

Title:
  Neither unity nor the gnome-panel are loaded at startup

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


[Bug 694951] [NEW] eleeye_engine runs very slowly

2010-12-28 Thread jeremy-list
Public bug reported:

Binary package hint: gmchess

To replicate: set search depth to 14, start game, and make a move.

The computer opponent takes a very long time to move. Checking the system 
monitor shows that eleeye_engine is only using 28% of available CPU time at the 
most. Usually the waiting channel is hrtimer_nanosleep.
I find it fairly easy to beat the engine with search depth at 12 and would love 
the challenge of the greater search depth that could be made possible by using 
all the available CPU time.
I have tried fixing this bug myself but I couldn't find where sleep was being 
called

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: eleeye 0.20.4-2
ProcVersionSignature: Ubuntu 2.6.32-26.48-generic 2.6.32.24+drm33.11
Uname: Linux 2.6.32-26-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Tue Dec 28 22:49:43 2010
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_NZ.utf8
 SHELL=/bin/bash
SourcePackage: gmchess

** Affects: gmchess (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/694951

Title:
  eleeye_engine runs very slowly

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


[Bug 694951] Re: eleeye_engine runs very slowly

2010-12-28 Thread jeremy-list


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

Title:
  eleeye_engine runs very slowly

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


[Bug 694950] [NEW] Booting stucks sometimes (problem with rtl8192?)

2010-12-28 Thread Yellow Me
Public bug reported:

Now and then (maybe every 10th) boot stucks. Attached piece of syslog.
The first boot stucks at about 10.22.18 and after that computer is
rebooted and it boots up ok.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: plymouth 0.8.2-2ubuntu2.1
ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Tue Dec 28 11:44:28 2010
DefaultPlymouth: /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100406.1)
MachineType: ASUSTeK Computer INC. 1201N
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-27-generic 
root=UUID=9b6ae884-9b01-4343-bac8-b8f948a24743 ro quiet splash
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 VGA16 VGA
SourcePackage: plymouth
TextPlymouth: /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
dmi.bios.date: 02/23/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0323
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1201N
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0323:bd02/23/2010:svnASUSTeKComputerINC.:pn1201N:pvrx.x:rvnASUSTeKComputerINC.:rn1201N:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
dmi.product.name: 1201N
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.

** Affects: 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/694950

Title:
  Booting stucks sometimes (problem with rtl8192?)

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


[Bug 694950] Re: Booting stucks sometimes (problem with rtl8192?)

2010-12-28 Thread Yellow Me

** Attachment added: bad and good boots
   https://bugs.launchpad.net/bugs/694950/+attachment/1777901/+files/syslog

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

Title:
  Booting stucks sometimes (problem with rtl8192?)

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


[Bug 688988] Re: different archdir, please rebuild package

2010-12-28 Thread Fumihito YOSHIDA
I can reproduce this bug, and it affects maverick/natty.

We can find at:
http://packages.ubuntu.com/natty/i386/libnarray-ruby1.8/filelist
http://packages.ubuntu.com/maverick/i386/libnarray-ruby1.8/filelist

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

Title:
  different archdir, please rebuild package

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


[Bug 694953] [NEW] missing i386 libraries on amd64

2010-12-28 Thread Metabaronen
Public bug reported:

Binary package hint: winbind

It is common to use 32 bit proprietary applications like flashplayer, citrix 
and acrobat on a amd64 system. The NSS libraries are a vital part of the system 
as it enables programs to lookup user and group information.
To solve this problem today we have to extract the nss library from the 32 bit 
package and install it by hand. I think that this should be provided by the 
winbind package.

Please add the 32 bit nss_winbind library to the winbind package for
amd64.

** Affects: samba (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/694953

Title:
  missing i386 libraries on amd64

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


[Bug 516854] Re: Network-manager-openvpn doesn't work in GNOME without -openvpn-gnome

2010-12-28 Thread Maximilian Haeussler
Had the same bug with Ubuntu Maverick. The depency issue is fixed now
but I still had to restart network-manager.

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

Title:
  Network-manager-openvpn doesn't work in GNOME without -openvpn-gnome

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


[Bug 694955] [NEW] old version of tesseract

2010-12-28 Thread Alex
Public bug reported:

I've realised that in the sources of Natty Narwhal there is still the
old version of tesseract (2.0.4) not the newer version 3.0.1.

3.0.1. brings a lot of new features so that the new version should be
included in the sources.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: tesseract-ocr 2.04-2
ProcVersionSignature: Ubuntu 2.6.37-11.25-generic 2.6.37-rc7
Uname: Linux 2.6.37-11-generic i686
Architecture: i386
Date: Tue Dec 28 11:02:20 2010
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20101202)
ProcEnviron:
 LANGUAGE=de_DE:de:en_GB:en
 LANG=de_DE.UTF-8
 LC_MESSAGES=de_DE.utf8
 SHELL=/bin/bash
SourcePackage: tesseract

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


** Tags: apport-bug i386 natty

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

Title:
  old version of tesseract

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


[Bug 694955] Re: old version of tesseract

2010-12-28 Thread Alex


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

Title:
  old version of tesseract

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


[Bug 694954] [NEW] Search Window TextBox disappeared

2010-12-28 Thread SrikanthM
Public bug reported:

Binary package hint: unity

From Desktop (Minimize all windows, if you have any). Go to Top panel
Menu, Select Places -- Search For Files ...

That will open the Search Window, but no Text box is there.

I am using Acer Aspire 4720z

Please find the attached Screen shot for the same.

From any other File Manager window if i select Go -- Search For Files..
, Thats giving Search Box OK.

** Affects: unity (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/694954

Title:
  Search Window TextBox disappeared

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


[Bug 694954] Re: Search Window TextBox disappeared

2010-12-28 Thread SrikanthM

** Attachment added: Screenshot_Search.png
   
https://bugs.launchpad.net/bugs/694954/+attachment/1777927/+files/Screenshot_Search.png

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

Title:
  Search Window TextBox disappeared

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


Re: [Bug 614412] Re: VPN connection failed in ubuntu 10.4 lucid ubuntu

2010-12-28 Thread Rajasekar
Hi,

Happy to see ur reply. i have not checked with latest updates. Since i have
a problem with VPN, i have started using windows. i am awaiting to use
ubuntu. Even my friend also has the same problem with vpn. he has installed
l0.4 lucid and presently he is using windows as he has problem with vpn.

Let me do the latest updates and let u know the status. Thanks so much for
your help.

Regards,
Rajasekar

On Mon, Dec 27, 2010 at 1:59 PM, Fabio Marconi
marconifa...@ubuntu-it.orgwrote:

 Hello
 Is this problem present with the latest updates ?
 Thanks in advance
 Fabio

 ** Changed in: ubuntu
   Status: New = Incomplete

 --
 You received this bug notification because you are a direct subscriber
 of the bug.
 https://bugs.launchpad.net/bugs/614412

 Title:
   VPN connection failed in ubuntu 10.4 lucid ubuntu

 Status in Ubuntu:
  Incomplete

 Bug description:
  My internet connection is up but not able to connect VPN. It is prompting
 the window to enter my password when i click on connect VPN and getting
 connection failed error message. I have tried installing required softwares
 like cisco VPN but still the issue remains. will i get any help to rectify
 this?

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+bug/614412/+subscribe


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

Title:
  VPN connection failed in ubuntu 10.4 lucid ubuntu

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


[Bug 694951] Re: eleeye_engine runs very slowly

2010-12-28 Thread Aron Xu
Hi, 
I am the maintainer of this package, I believe there is a bug in gmchess prior 
to 0.29.3. You should install libeval-dev as well to make eleeye find libeval0, 
which is very useful for it to improve the strength.

You can add this PPA to upgrade to 0.29.3 (maintained by me):
https://launchpad.net/~gmchess/+archive/ppa

Thanks for your report.

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

Title:
  eleeye_engine runs very slowly

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


[Bug 694951] Re: eleeye_engine runs very slowly

2010-12-28 Thread Aron Xu
Mark as fixed because already solved in new release (natty). For users
using older release, please use ppa:gmchess/ppa instead.

** Changed in: gmchess (Ubuntu)
   Status: New = Fix Released

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

Title:
  eleeye_engine runs very slowly

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


  1   2   3   4   5   6   7   8   9   10   >