[Bug 687535] Re: upstart loses track of ssh daemon after reload ssh

2011-01-23 Thread Colin Watson
Benjamin, no, I didn't - I sponsored it myself and it wasn't necessary
to add it to the general sponsoring queue.

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

2011-01-23 Thread Launchpad Bug Tracker
This bug was fixed in the package openssh - 1:5.3p1-3ubuntu5

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

  * debian/openssh-server.ssh.upstart: drop 'expect fork' and run sshd
with -D to avoid losing track on reload (LP: #687535)
 -- Imre Gergely gi...@narancs.net   Fri, 07 Jan 2011 10:19:13 +

** Changed in: openssh (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

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

2011-01-23 Thread Colin Watson
Released for lucid (thanks, Simon!); still needs verification for
maverick.

** Tags removed: verification-done

-- 
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 104525] Re: default ntp.conf should use pool.ntp.org servers

2011-01-23 Thread Xavier Robin
I had nearly forgotten about ntp-servers-list.c. Here is a patch, but I
don't know how to format it best…

** Patch added: patched ntp-servers-list.c
   
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/104525/+attachment/1803799/+files/ntp-servers-list.c.diff

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

Title:
  default ntp.conf should use pool.ntp.org servers

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2011-01-23 Thread ingo
Clint, seems you are doing an excellent job and I am confident it gets
fixed finally!

Your proposal works, however only if I modify /etc/init.d/umountroot
this way:

[ -f /var/run/init.upgraded ]  telinit u  sleep 1 || :

it does *not* work, if I place the sleep in a separate line like this:

[ -f /var/run/init.upgraded ]  telinit u || :
sleep 1

Are you sure that at the end of the line a : (colon) is correct, or
should it be a ; (semicolon)?

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2011-01-23 Thread ingo
Sorry, but I can't reproduce it now, getting still 4 orphaned inodes.
Can I insert some lines to log which libs are still in use?

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2011-01-23 Thread ingo
Observed just another oddity, probably a separate bug in mountall?

I tried to mount the / filesystem (ext3) in journal mode to see if this 
improves the situation by adding the option to /etc/fstab:
data=journal,erros=remount-ro
But that results in boot process stalling with / filesystem mounted ro and just 
a console. dmesg | grep -i ext3 tells me:

EXT3-fs: mounted filesystem with ordered data mode
EXT3-fs (device sda1): Cannot change data mode on remount. The filesystem is 
mounted in data=ordered mode and you try to remount it in data=journal mode.

The only way out and to continue boot-up is to manually remount the fs rw by:
mount -o remount,rw /dev/sda1 /
and remove the data=journal option from fstab.

-- 
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 706570] [NEW] JAVA_OPTS defined in /etc/init.d/tomcat6 do not propagate to startup

2011-01-23 Thread Reuben Firmin
Public bug reported:

Binary package hint: tomcat6

I have not fully investigated. However, I added the line:

JAVA_OPTS=$JAVA_OPTS -Xmx4096m -Xms1024m -XX:PermSize=256m
-XX:MaxPermSize=512m -XX:NewSize=128m
-Dri.home=/home/reubenf/code/depend

to /etc/init.d/tomcat6. The ri.home variable was not available to my
webapp after a tomcat restart.

I then added the same line to /var/share/tomcat6/bin/catalina.sh. Two
things happened:

1) The server failed to start because I have only 4GBs of RAM, and thus
max heap was too large. (Adjusted in catalina.sh and all was well.)

2) Once I fixed the max heap, ri.home was available to my webapp.

Thus for some reason JAVA_OPTs is not being passed between the scripts
properly. You should also define a spot in /etc/init.d/tomcat6 for
developers to add their own JAVA_OPTs, to minimize hackery.

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

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

Title:
  JAVA_OPTS defined in /etc/init.d/tomcat6 do not propagate to startup

-- 
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 104525] Re: default ntp.conf should use pool.ntp.org servers

2011-01-23 Thread Scott James Remnant
Thanks for subscribing the Technical Board to this bug.

Please add discussion of the default NTP Servers to the agenda for the
next Technical Board meeting that you are able to attend, and we will
discuss it with you there.

Scott

On Sun, Jan 23, 2011 at 2:21 AM, Xavier Robin 104...@bugs.launchpad.net wrote:
 I had nearly forgotten about ntp-servers-list.c. Here is a patch, but I
 don't know how to format it best…

 ** Patch added: patched ntp-servers-list.c
   
 https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/104525/+attachment/1803799/+files/ntp-servers-list.c.diff

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

 Title:
  default ntp.conf should use pool.ntp.org servers

 --
 technical-board mailing list
 technical-bo...@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/technical-board


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

Title:
  default ntp.conf should use pool.ntp.org servers

-- 
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 530051] Re: Autofs and semiautomatic credentials

2011-01-23 Thread Brian Murray
** Tags added: patch

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

Title:
  Autofs and semiautomatic credentials

-- 
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 322214] Re: php (via libedit using_history()) incorrectly opens stdin

2011-01-23 Thread Clint Byrum
** Changed in: php5 (Ubuntu)
 Assignee: (unassigned) = Clint Byrum (clint-fewbar)

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

Title:
  php (via libedit using_history()) incorrectly opens stdin

-- 
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 706675] [NEW] package clamav-milter 0.96.5 dfsg-1ubuntu1.10.04.1 failed to install/upgrade: el subproceso script post-installation instalado devolvió el código de salida de error 1

2011-01-23 Thread Wilsonao
Public bug reported:

Binary package hint: clamav

Se encontraron errores al procesar:
 clamav-milter

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: clamav-milter 0.96.5+dfsg-1ubuntu1.10.04.1
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: Sun Jan 23 14:10:17 2011
ErrorMessage: el subproceso script post-installation instalado devolvió el 
código de salida de error 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: clamav
Title: package clamav-milter 0.96.5+dfsg-1ubuntu1.10.04.1 failed to 
install/upgrade: el subproceso script post-installation instalado devolvió el 
código de salida de error 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/706675

Title:
  package clamav-milter 0.96.5 dfsg-1ubuntu1.10.04.1 failed to
  install/upgrade: el subproceso script post-installation instalado
  devolvió el código de salida de 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 706675] Re: package clamav-milter 0.96.5 dfsg-1ubuntu1.10.04.1 failed to install/upgrade: el subproceso script post-installation instalado devolvió el código de salida de error 1

2011-01-23 Thread Wilsonao


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

Title:
  package clamav-milter 0.96.5 dfsg-1ubuntu1.10.04.1 failed to
  install/upgrade: el subproceso script post-installation instalado
  devolvió el código de salida de 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 706706] [NEW] Can't use Norton Ghost under Ubuntu KVM

2011-01-23 Thread Tong Sun
Public bug reported:

Binary package hint: qemu-kvm

Hi,

I can't use Norton Ghost under Ubuntu KVM, whereas the same version of
kvm under Debian launches Norton Ghost just fine.

Info of kvm under Debian:

$ dpkg -l | grep kvm
ii  qemu-kvm   0.12.5+dfsg-3  Full virtualization on x86 hardware

$ cat /etc/issue 
Debian GNU/Linux squeeze/sid \n \l

$ uname -rm 
2.6.33-grml64 x86_64

Info of kvm under Ubuntu:

$ apt-cache policy qemu-kvm
qemu-kvm:
  Installed: 0.12.5+noroms-0ubuntu7.1
  Candidate: 0.12.5+noroms-0ubuntu7.1
  Version table:
 *** 0.12.5+noroms-0ubuntu7.1 0
500 http://us.archive.ubuntu.com/ubuntu/ maverick-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 0.12.5+noroms-0ubuntu7 0
500 http://us.archive.ubuntu.com/ubuntu/ maverick/main amd64 Packages

(I've just upgraded it to the latest version and tried again, same
problem)

The symptom is while kvm was lauching NG, it failed, and rebooted all
over again. I've tried many times and I've also tried both Norton Ghost
2003 and Norton Ghost 8.3. Same symptom.

Actual command used is,

 kvm -m 1024 -smp 2 -usbdevice tablet -hda hda -cdrom /path/to
/NortonGhost-Version.iso -boot d

The same command, using the same hda  cdrom, works just fine under
Debian.

Please investigate

Thanks

PS. if you don't have a Norton Ghost iso file, you can try
Hiren.BootCD.8.6.iso. Works the same.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: qemu-kvm 0.12.5+noroms-0ubuntu7
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
Architecture: amd64
Date: Sun Jan 23 16:43:30 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
KvmCmdLine:
 UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
 tong  3425  3349 98 308004 19044  1 16:43 pts/400:00:09 kvm -m 1024 
-smp
Lsusb:
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: BIOSTAR Group N61PC-M2S
ProcCmdLine: root=/dev/sdb6 ro text
ProcEnviron:
 PATH=(custom, user)
 LANG=C
 SHELL=/bin/bash
SourcePackage: qemu-kvm
dmi.bios.date: 11/25/2008
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: N61PC-M2S
dmi.board.vendor: BIOSTAR Group
dmi.chassis.type: 3
dmi.chassis.vendor: BIOSTAR Group
dmi.chassis.version: N61PC-M2S
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd11/25/2008:svnBIOSTARGroup:pnN61PC-M2S:pvr:rvnBIOSTARGroup:rnN61PC-M2S:rvr:cvnBIOSTARGroup:ct3:cvrN61PC-M2S:
dmi.product.name: N61PC-M2S
dmi.sys.vendor: BIOSTAR Group

** Affects: qemu-kvm (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 qemu-kvm in ubuntu.
https://bugs.launchpad.net/bugs/706706

Title:
  Can't use Norton Ghost under Ubuntu KVM

-- 
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 706706] Re: Can't use Norton Ghost under Ubuntu KVM

2011-01-23 Thread Tong Sun


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

Title:
  Can't use Norton Ghost under Ubuntu KVM

-- 
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 706442] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.1-1ubuntu1 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 696774] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.1-1ubuntu1 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 683198] Re: package bacula-director-mysql 2.4.4-1ubuntu5 failed to install/upgrade: el subproceso post-installation script devolvió el código de salida de error 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug is no longer a duplicate of bug 598485
   package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 2.4.4-1ubuntu5 failed to
  install/upgrade: el subproceso post-installation script devolvió el
  código de salida de 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 669183] Re: package bacula-director-mysql 5.0.2-1ubuntu1 failed to install/upgrade: Subprocess post-installation script returned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug is no longer a duplicate of bug 598485
   package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.2-1ubuntu1 failed to
  install/upgrade: Subprocess 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 680978] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script rturned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug is no longer a duplicate of bug 598485
   package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.1-1ubuntu1 failed to
  install/upgrade: subprocess installed post-installation script rturned
  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 638585] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.1-1ubuntu1 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 598485] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-01-23 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 321091 ***
https://bugs.launchpad.net/bugs/321091

** This bug has been marked a duplicate of bug 321091
   Bacula fails to install correctly if mysql wasn't installed before
 * You can subscribe to bug 321091 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/321091/+subscribe

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

Title:
  package bacula-director-mysql 5.0.1-1ubuntu1 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 706570] Re: JAVA_OPTS defined in /etc/init.d/tomcat6 do not propagate to startup

2011-01-23 Thread Joshua Daniel Franklin
Reuben, it's not obvious in the init script but the proper place is
/etc/default/tomcat6 which includes a JAVA_OPT line, which actually
clobber the one in the init script due to the if -z JAVA_OPT. This
actually bit me recently due to a tomcat update.

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

Title:
  JAVA_OPTS defined in /etc/init.d/tomcat6 do not propagate to startup

-- 
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 680825] Re: package drbd8-source 2:8.3.7-1ubuntu2.1 failed to install/upgrade: drbd8 kernel module failed to build

2011-01-23 Thread Launchpad Bug Tracker
[Expired for drbd8 (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  package drbd8-source 2:8.3.7-1ubuntu2.1 failed to install/upgrade:
  drbd8 kernel module failed to build

-- 
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 680371] Re: package mysql-server-5.1 5.1.37-1ubuntu5.4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2011-01-23 Thread Launchpad Bug Tracker
[Expired for mysql-dfsg-5.1 (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  package mysql-server-5.1 5.1.37-1ubuntu5.4 failed to install/upgrade:
  subprocess new pre-removal 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 104738] Re: net-snmp-config doesn't work without /bin/bash

2011-01-23 Thread Bryan Quigley
Fixed in #1838427 on sf.net, but tracker is not being updated for some
reason.  Fix has made it back to Ubuntu as well.  And it works just
using /bin/sh

** Changed in: dash (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: netsnmp
   Importance: Unknown = Undecided

** Changed in: netsnmp
   Status: Unknown = New

** Changed in: netsnmp
 Remote watch: SourceForge.net Tracker #1838427 = None

** Changed in: netsnmp
   Status: New = Fix Released

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

Title:
  net-snmp-config doesn't work without /bin/bash

-- 
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 706494] [NEW] [Analog Devices AD1986A] ALSA test tone not correctly played back

2011-01-23 Thread Amit Poojary
Public bug reported:

no sound in speakers and headset..
it used to work in ubuntu 8.10 n 9.04..

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: alsa-base 1.0.23+dfsg-1ubuntu4
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: NVidia [HDA NVidia], device 0: AD198x Analog [AD198x Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  zebanon1397 F pulseaudio
 /dev/snd/pcmC0D1p:   zebanon1397 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'NVidia'/'HDA NVidia at 0xdfff8000 irq 21'
   Mixer name   : 'Analog Devices AD1986A'
   Components   : 'HDA:11d41986,1043818f,00100500'
   Controls  : 37
   Simple ctrls  : 21
Date: Sun Jan 23 13:04:53 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SelectedCard: 0 NVidia HDA-Intel - HDA NVidia
SourcePackage: alsa-driver
Symptom: audio
Title: [Analog Devices AD1986A] ALSA test tone not correctly played back
dmi.bios.date: 03/26/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1004
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M2N-MX
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1004:bd03/26/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-MX:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: alsa-driver (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/706494

Title:
  [Analog Devices AD1986A] ALSA test tone not correctly played back

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


[Bug 706494] Re: [Analog Devices AD1986A] ALSA test tone not correctly played back

2011-01-23 Thread Amit Poojary


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

Title:
  [Analog Devices AD1986A] ALSA test tone not correctly played back

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


[Bug 431975] Re: downloading a torrent to an encrypted home partition hangs and uses 100% CPU

2011-01-23 Thread Lehi David Anson Toskin
I can attest to this in Lucid with ecryptfs encrypted /home/user. I'm
not sure about Transmission or Vuze, but in rtorrent, there's a way to
save the machine and still have large torrent downloads; add this to
your ~/.rtorrent.rc:

split_file_size = 8G   # or 4G or 3G, depending on your system (mine is
good at 3G)

And then when the torrent is completed simply run 'cat file_1 file_2 ...
 file_x' and then you're good to go.

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

Title:
  downloading a torrent to an encrypted home partition hangs and uses
  100% CPU

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


[Bug 162057] Re: [upstream] Cannot save Word document with password

2011-01-23 Thread Andy C. Candet
Looks fixed with OpenOffice.org 3.2.1 on Mint 10 (and presumably Ubuntu
Maverick). I can save password-protected .doc and .xls files and open
them.

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

Title:
  [upstream] Cannot save Word document with password

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


[Bug 706497] [NEW] type 'exceptions.TypeError': 'dbus.Struct' object does not support item assignment

2011-01-23 Thread skabdulraheemneo
Public bug reported:

Binary package hint: aptdaemon

i was trying to install dropbox. while trying to install the nautilus
desktop integration through software centre i got this error

ProblemType: Crash
DistroRelease: Ubuntu 11.04
Package: aptdaemon 0.40+bzr541-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.37-12.26-generic 2.6.37
Uname: Linux 2.6.37-12-generic i686
Annotation: Installation of the package file failed
Architecture: i386
Date: Sun Jan 23 13:37:13 2011
DesktopFile: /usr/share/aptdaemon/aptdaemon.desktop
ExecutablePath: /usr/sbin/aptd
PackageArchitecture: all
SourcePackage: aptdaemon
Title: type 'exceptions.TypeError': 'dbus.Struct' object does not support 
item assignment
TransactionDepends: [[], [], [], [], [], [], []]
TransactionKwargs: {'path': 
dbus.String(u'/home/sunita/Desktop/nautilus-dropbox_0.6.7_i386.deb'), 'force': 
dbus.Boolean(False)}
TransactionLocale: en_IN.UTF8
TransactionPackages: [[], [], [], [], [], []]
TransactionRole: role-install-file

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


** Tags: apport-crash 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/706497

Title:
  type 'exceptions.TypeError': 'dbus.Struct' object does not support
  item assignment

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


[Bug 706497] Re: type 'exceptions.TypeError': 'dbus.Struct' object does not support item assignment

2011-01-23 Thread skabdulraheemneo


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

Title:
  type 'exceptions.TypeError': 'dbus.Struct' object does not support
  item assignment

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


[Bug 705480] Re: System hangs or applications crash

2011-01-23 Thread Aram Yegenian
Hello,

Over the weekend I kept the machine running memtest, obviously the memory 
modules have issues, see attached screenshot.
Which is quite weird, since this is a brand new Lenovo ThinkCentre M90p.

Please close this bug report, sorry for the trouble.
Aram Yegenian

** Attachment added: memetest screenshot
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/705480/+attachment/1803676/+files/2011-01-23%2009.16.29.jpg

** 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/705480

Title:
  System hangs or applications crash

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


[Bug 706500] [NEW] Network Manager allows connecting to mobile broadband when enable mobile broadband is not checked

2011-01-23 Thread Oded Arbel
Public bug reported:

The Network Manager applet in Natty has an Enable Mobile Broadband
check in addition to Enable Networking and Enable Wireless. When
Enable Mobile Broadband is not checked, the mobile broadband
connections are still listed (unlike Enable Wireless that when not
checked no wireless networks are listed), furthermore one can start a
mobile broadband connection and it connects successfully even when
Enable Mobile Broadband is not checked.

The only difference in behavior that I can detect is that when Enable
Mobile Broadband is not checked, then when a mobile broadband
connection is active it is listed in the applet menu with the text not
enabled (even though it clearly is enabled).

** Affects: network-manager-applet (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/706500

Title:
  Network Manager allows connecting to mobile broadband when enable
  mobile broadband is not checked

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


[Bug 703570] Re: The cursor of the mouse stops on the screen without reason

2011-01-23 Thread Adam Kunicki
apport information

** Tags added: apport-collected

** Description changed:

  I move the mouse, and suddenly, without reason, the cursor stops on the
  screen. I have to restart my computer. The situation repeats itself from
  time to time.
  
  Operating system: Linux Ubuntu 10.10.
  Graphical environment: Xfce 4.6.2.
+ --- 
+ Architecture: i386
+ DRM.card0.VGA.1:
+  status: disconnected
+  enabled: disabled
+  dpms: On
+  modes: 
+  edid-base64:
+ DistroRelease: Ubuntu 10.10
+ EcryptfsInUse: Yes
+ InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
+ Package: xorg 1:7.5+6ubuntu3
+ PackageArchitecture: i386
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic 
root=UUID=d0430190-16ee-4988-9a9e-f2c1b04679ca ro quiet splash
+ ProcEnviron:
+  PATH=(custom, no user)
+  LANG=pl_PL.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
+ Tags: maverick maverick
+ Uname: Linux 2.6.35-24-generic i686
+ UserGroups:
+  
+ dmi.bios.date: 03/13/2003
+ dmi.bios.vendor: Phoenix Technologies, LTD
+ dmi.bios.version: 6.00 PG
+ dmi.board.name: SiS-645DX
+ dmi.chassis.type: 3
+ dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd03/13/2003:svn:pn:pvr:rvn:rnSiS-645DX:rvr:cvn:ct3:cvr:
+ glxinfo: Error: [Errno 2] Nie ma takiego pliku ani katalogu
+ system:
+  distro: Ubuntu
+  codename:   maverick
+  architecture:   i686
+  kernel: 2.6.35-24-generic

** Attachment added: BootDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803678/+files/BootDmesg.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] CurrentDmesg.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803679/+files/CurrentDmesg.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] DRM.card0.DVI.I.1.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: DRM.card0.DVI.I.1.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803680/+files/DRM.card0.DVI.I.1.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] DRM.card0.SVIDEO.1.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: DRM.card0.SVIDEO.1.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803681/+files/DRM.card0.SVIDEO.1.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] Dependencies.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803682/+files/Dependencies.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] GdmLog.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: GdmLog.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803683/+files/GdmLog.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] GdmLog1.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: GdmLog1.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803684/+files/GdmLog1.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] GdmLog2.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: GdmLog2.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803685/+files/GdmLog2.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] Lspci.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: Lspci.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803686/+files/Lspci.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] Lsusb.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: Lsusb.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803687/+files/Lsusb.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] PciDisplay.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: PciDisplay.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803688/+files/PciDisplay.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] ProcCpuinfo.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803689/+files/ProcCpuinfo.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] ProcInterrupts.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803690/+files/ProcInterrupts.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] ProcModules.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: ProcModules.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803691/+files/ProcModules.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] RelatedPackageVersions.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803692/+files/RelatedPackageVersions.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] UdevDb.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: UdevDb.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803693/+files/UdevDb.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] UdevLog.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: UdevLog.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803694/+files/UdevLog.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] XorgLog.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: XorgLog.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803695/+files/XorgLog.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] XorgLogOld.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: XorgLogOld.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803696/+files/XorgLogOld.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] Xrandr.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: Xrandr.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803697/+files/Xrandr.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] peripherals.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: peripherals.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803698/+files/peripherals.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] setxkbmap.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: setxkbmap.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803699/+files/setxkbmap.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] xdpyinfo.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: xdpyinfo.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803700/+files/xdpyinfo.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 703570] xkbcomp.txt

2011-01-23 Thread Adam Kunicki
apport information

** Attachment added: xkbcomp.txt
   
https://bugs.edge.launchpad.net/bugs/703570/+attachment/1803701/+files/xkbcomp.txt

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

Title:
  The cursor of the mouse stops on the screen without reason

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


[Bug 706502] [NEW] scroll on sound icon should be able to control volume

2011-01-23 Thread Felix Yan
Public bug reported:

mouse scrolling on sound icon should be able to control volume +/-

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: unity-2d-panel 3.2-0ubuntu1
Uname: Linux 2.6.37-zen0-r20110122+git999b248-felix-g999b248-dirty x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Sun Jan 23 16:23:13 2011
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 LC_MESSAGES=en_US.utf8
 SHELL=/bin/bash
SourcePackage: unity-2d

** Affects: unity-2d
 Importance: Undecided
 Status: New

** Affects: unity-2d (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug natty unity-2d

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

Title:
  scroll on sound icon should be able to control volume

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


[Bug 706502] Re: scroll on sound icon should be able to control volume

2011-01-23 Thread Felix Yan

** Also affects: unity-2d
   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/706502

Title:
  scroll on sound icon should be able to control volume

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


[Bug 625670] Re: Not all desktop items are themed

2011-01-23 Thread aidanjt
I threw this script together based on what #13 wrote, works a treat, for
me at least:

#!/bin/bash

killall -9 gnome-settings-daemon
gnome-settings-daemon 
killall -9 nautilus

I personally double click it when I log in, manually, as I log
out/reboot so rarely.  But it might work just as well if you add it to
the Gnome start-up applications list.

Anyway, this is all just an ugly work around, are we ever going to see
an actual fix from the Ubuntu devs?  Or is it just another 'wait for the
next version to fix a serious bug'?

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

Title:
  Not all desktop items are themed

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


[Bug 706505] [NEW] Cannot go into sleep mode or hibernate, screen goes blank then prompts for password

2011-01-23 Thread Antony Chick
Public bug reported:

At, first computer would just go to a screen with cursor on top left
corner and would be unresponsive when trying either of these. Then tried
to install tux on ice to resolve this and would prompt for password soon
after trying each. Uninstalled tux on ice and increased swap file size
to 10 gig  since i have 8 gigs of ram, but still only prompts to log
back in after briefly showing the screensaver and a blank screen. Will
try a clean install of Ubuntu, then back to Windows if no luck. And will
try again after next release. I have an Asus m4a88tm mobo and the
ethernet adapter would cause windows to wake after a few minutes of
sleep, but I was able to disable this. Maybe similar thing with Ubuntu,
if so how can I disable this? Thank you. I have Meerkat  10.10 amd 64,
not sure how to get the other info requested.  But about Ubuntu screen
says I'm using 11.04 natty narwhal??? And terminal says: unable to
locate package pkgname?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: gnome-system-monitor 2.28.1-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Sun Jan 23 01:09:48 2011
ExecutablePath: /usr/bin/gnome-system-monitor
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: gnome-system-monitor
XsessionErrors:
 (polkit-gnome-authentication-agent-1:1537): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:1546): GConf-CRITICAL **: gconf_value_free: assertion `value != 
NULL' failed

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

Title:
  Cannot go into sleep mode or hibernate, screen goes blank then prompts
  for password

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


[Bug 706505] Re: Cannot go into sleep mode or hibernate, screen goes blank then prompts for password

2011-01-23 Thread Antony Chick


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

Title:
  Cannot go into sleep mode or hibernate, screen goes blank then prompts
  for password

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


[Bug 706504] [NEW] update manager,package manager not getting opend

2011-01-23 Thread rajsheker
Public bug reported:

Binary package hint: gnome-terminal

An unresolvable problem occurred while initializing the package
information.

Please report this bug against the 'update-manager' package and include
the following error message:

'E:Type 'a.launchpad.net/gloobus-dev/gloobus-preview/ubuntu' is not
known on line 1 in source list /etc/apt/sources.list.d/gloobus-dev-
gloobus-preview-maverick.list'

** Affects: gnome-terminal (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/706504

Title:
  update manager,package manager not getting opend

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


[Bug 706503] [NEW] nm-applet icon does not reflect signal strength

2011-01-23 Thread Oded Arbel
Public bug reported:

When Network Manager is used to connect to a wireless network (WiFi or
mobile broadband), the nm-applet icon in the notification tray shows the
signal strength of the current connection, so that the user can see in a
glance what is the current status of their connection.

This works very well when not using the Ubuntu indicator applet, but
when the indicator applet is in use it swallows the nm-applet icon and
the resulting icon is static - it only reflects the connection type by
not the signal strength. As can be seen in the screenshot, the nm-applet
menu shows the correct signal strength while the indicator icon seems to
show full strength even when that is not the case.

This bug is for the current Natty version.

** Affects: network-manager-applet (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/706503

Title:
  nm-applet icon does not reflect signal strength

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


[Bug 706503] Re: nm-applet icon in indicator applet does not reflect signal strength

2011-01-23 Thread Oded Arbel

** Attachment added: Screenshot showing the problem
   
https://bugs.launchpad.net/bugs/706503/+attachment/1803703/+files/Workspace%201_007.png

** Summary changed:

- nm-applet icon in indicator applet does not reflect signal strength
+ nm-applet icon does not reflect signal strength

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

Title:
  nm-applet icon does not reflect signal strength

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


[Bug 706503] Re: nm-applet icon does not reflect signal strength

2011-01-23 Thread Oded Arbel
Sorry - there is a mistake in the bug description: the problematic
behavior happens when the nm-applet is hosted in the notification area
while it works OK in the indicator applet.

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

Title:
  nm-applet icon does not reflect signal strength

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


[Bug 700674] Re: partition table destroyed on large sata disk attached to sil3132 controller

2011-01-23 Thread lvm
This bug cannot be reproduced with 10.04-64 release, but that's beside
the point - I'd intend to ride 8.04 as log as LTS goes - for full five
years. Also it would've been very nice if before posting a standard
formal reply you considered that there is no apport in 8.04

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

Title:
  partition table destroyed on large sata disk attached to sil3132
  controller

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


[Bug 595415] Re: Curl (openssl) fails to open some https URLs with illegal parameter error

2011-01-23 Thread Ralf Hildebrandt
$ curl https://www.etisalat.com.eg
curl: (35) error:140773F2:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert 
unexpected message

also happens on natty

** Description changed:

  Binary package hint: curl
  
  Some HTTPS urls cause curl to fail with an illegal parameter error.
  This error goes away if you manually specify --sslv3
  
  e.g.
  
  $ curl --version
  curl 7.19.7 (x86_64-pc-linux-gnu) libcurl/7.19.7 OpenSSL/0.9.8k zlib/1.2.3.3 
libidn/1.15
- Protocols: tftp ftp telnet dict ldap ldaps http file https ftps 
- Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz 
+ Protocols: tftp ftp telnet dict ldap ldaps http file https ftps
+ Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz
  
  $ curl  https://www.orange.sk/
  curl: (35) error:14077417:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert 
illegal parameter
  
- $ curl  --sslv3 https://www.orange.sk/ 
+ $ curl  --sslv3 https://www.orange.sk/
  html xmlns=http://www.w3.org/1999/xhtml; xml:lang=sk lang=sk
  ...etc
  
  This is particularly problematic if using an application which uses
  libcurl, but does not allow setting of the --sslv3 flag, e.g. nagios's
  check_http utility.
  
  This redhat bug https://bugzilla.redhat.com/show_bug.cgi?id=525496
  appears to describe the same problem, and has a patch

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

Title:
  Curl (openssl) fails to open some https URLs with illegal parameter
  error

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


[Bug 595415] Re: Curl (openssl) fails to open some https URLs with illegal parameter error

2011-01-23 Thread Ralf Hildebrandt
Marking this bug incomplete without actually say WHAT is missing to make
it complete is not helping!

** Changed in: openssl (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  Curl (openssl) fails to open some https URLs with illegal parameter
  error

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


[Bug 683118] Re: i2c errors with af9015 / tda18271 (V4L DVB)

2011-01-23 Thread homerun
Hi

Tested 2 friends laptops , winxp  win7 and all usb-sticks are working
fine.

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

Title:
  i2c errors with af9015 / tda18271 (V4L DVB)

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


[Bug 531173] Re: New Lucid keyboard layout indicator does not indicate current layout

2011-01-23 Thread Oded Arbel
Ping for developers - this is still a problem in Natty.

I understand that Ubuntu may not be interested in supporting non-
indicator behavior, but the problem is caused by the indicator support
patch developed by Ubuntu developers and it seriously hurts multi-
language Ubuntu users that choose to stop using the default indicator
applet - so I think the people causing the problem have a moral
obligation to make sure their changes do not cause regressions with
existing uses.

As a further note - the GNOME decision not to include the indicator
support patch in their upstream simply on the basis that GNOME does not
ship the indicator applet is arrogant and annoying, but even otherwise
they would have probably not accepted the patch anyway if it causes
regressions. If Ubuntu developers have any hope of ever pushing the
patch upstream they should fix this issue.

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

Title:
  New Lucid keyboard layout indicator does not indicate current layout

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


[Bug 626622] Re: daily maverick live cd won't boot with acpi on

2011-01-23 Thread sdementen
Have the same problem on an ASUS X71SL.
I can boot with either acpi=off or nolapic. The nolapic is more useable but 
then I may have lost the multiprocessor benefits (only one cpu appears in 
/proc/cpuinfo instead of two).

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

Title:
  daily maverick live cd won't boot with acpi on

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


[Bug 626622] Re: daily maverick live cd won't boot with acpi on

2011-01-23 Thread sdementen
Have the same problem on an ASUS X71SL.
I can boot with either acpi=off or nolapic. The nolapic is more useable but 
then I may have lost the multiprocessor benefits (only one cpu appears in 
/proc/cpuinfo instead of two).

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

Title:
  daily maverick live cd won't boot with acpi on

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


[Bug 626622] Re: daily maverick live cd won't boot with acpi on

2011-01-23 Thread sdementen
Have the same problem on an ASUS X71SL.
I can boot with either acpi=off or nolapic. The nolapic is more useable but 
then I may have lost the multiprocessor benefits (only one cpu appears in 
/proc/cpuinfo instead of two).

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

Title:
  daily maverick live cd won't boot with acpi on

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


[Bug 667091] Re: Fonts initially indicated as 'not found on system'

2011-01-23 Thread Alex Valavanis
** Also affects: inkscape (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: inkscape (Ubuntu)
   Importance: Undecided = Low

** Changed in: inkscape (Ubuntu)
   Status: New = Triaged

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

Title:
  Fonts initially indicated as 'not found on system'

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


[Bug 706508] [NEW] DVD Playback issues

2011-01-23 Thread Cory Hall
Public bug reported:

After configuring gstreamer to watch my DVD in totem I noticed that
after about 15 minutes the video playback was very choppy and the sound
completely cut out but when I clicked on the seek mode bar and reversed
what I had missed it played back fine so it wasn't the DVD which was
brand new.  Also this happened a couple of other times while I watched
the movie, slightly annoying that you have to click everytime this
happens the audio won't come back if you don't and the video playback
remains choppy.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: libgstreamer0.10-0 0.10.30-1build2
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic i686
Architecture: i386
Date: Sun Jan 23 00:50:10 2011
EcryptfsInUse: Yes
ExecutablePath: /usr/bin/totem
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: gstreamer0.10

** Affects: gstreamer0.10 (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/706508

Title:
  DVD Playback issues

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


[Bug 706508] Re: DVD Playback issues

2011-01-23 Thread Cory Hall


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

Title:
  DVD Playback issues

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


[Bug 671930] Re: Unable to signin to facebook using empathy. Reports authentication failed when given accurate login credentials.

2011-01-23 Thread Carl Lewin
sadly, sign out trick does not work for me. Since I can log into
facebook from ipod as well as browser (not same time) then does it
suggest a bug in empathy?

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

Title:
  Unable to signin to facebook using empathy. Reports authentication
  failed when given accurate login credentials.

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


[Bug 387970] Re: cups asks for root password

2011-01-23 Thread TanzGeist
Thanks Jeff for the 
gksudo system-config-printer worked for my ip5200 on 10.10 - 64

I just ran into the enter password for root after trying to make the
printer available to windows under virtual box - what used to work some
weeks ago. But that might be another problem.

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

Title:
  cups asks for root password

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


[Bug 512964] Re: gtkpod crashes with SIGSEGV in gdk_window_set_geometry_hints

2011-01-23 Thread Bug Watch Updater
** Changed in: gtkpod (Debian)
   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/512964

Title:
  gtkpod crashes with SIGSEGV in gdk_window_set_geometry_hints

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


[Bug 500398] Re: Vtech Kidizoom camera USB doesn't mount

2011-01-23 Thread Nick Holloway
I have found the cause for this defect, and a workaround.

The cause is that the FAT16 superblock on the camera does not set the
number of heads, and so the partition type is not detected correctly.
You get no output from the following command:

# blkid -p /dev/disk/by-id/usb-
VTech_Kidizoom_123456789ABCDEF-0:0-part1

The kernel is able to mount the partition when mounted manually in the
workaround above because it does not enforce the non-zero heads
requirement.  In fat/inode.c there is the following comment:

/*
 * Earlier we checked here that b-secs_track and b-head are nonzero,
 * but it turns out valid FAT filesystems can have zero there.
 */

This means that I suspect the defect is in util-linux.  In
superblocks/vfat.c it will discount a superblock with a zero value for
heads:

if (ms-ms_heads == 0)
return 0;

I was able to confirm this, and provide a workaround by setting the
number of heads in the superblock to be 63:

echo -n ? | dd of=/dev/disk/by-id/usb-
VTech_Kidizoom_123456789ABCDEF-0:0-part1 seek=26 bs=1 count=1
conv=notrunc

Now the partition is detected successfully by blkid.

# blkid -p /dev/disk/by-id/usb-VTech_Kidizoom_123456789ABCDEF-0\:0-part1
/dev/disk/by-id/usb-VTech_Kidizoom_123456789ABCDEF-0:0-part1: 
SEC_TYPE=msdos LABEL=VTech 1070 UUID=2004-1014 VERSION=FAT16 
TYPE=vfat USAGE=filesystem 

The next time the camera is plugged in it becomes available as VTech
1070.

** Attachment added: Superblock of Kidizoom internal disk
   
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/500398/+attachment/1803713/+files/kidizoom.sb

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

Title:
  Vtech Kidizoom camera USB doesn't mount

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


[Bug 706512] Re: Lot of low res icons in dashboard Unity 2D

2011-01-23 Thread Pako

** Attachment added: Screenshot-3.png
   
https://bugs.launchpad.net/bugs/706512/+attachment/1803763/+files/Screenshot-3.png

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

Title:
  Lot of low res icons in dashboard Unity 2D

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


[Bug 706512] [NEW] Lot of low res icons in dashboard Unity 2D

2011-01-23 Thread Pako
Public bug reported:

Binary package hint: unity

screenshot attached

** 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/706512

Title:
  Lot of low res icons in dashboard Unity 2D

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


[Bug 586714] Re: Xorg assert failure: X: ../../nouveau/nouveau_pushbuf.c:271: nouveau_pushbuf_flush: Assertion `!nouveau_pushbuf_space(chan, min)' failed.

2011-01-23 Thread Timo Aaltonen
** Package changed: xorg-server (Ubuntu) = xserver-xorg-video-nouveau
(Ubuntu)

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

Title:
  Xorg assert failure: X: ../../nouveau/nouveau_pushbuf.c:271:
  nouveau_pushbuf_flush: Assertion `!nouveau_pushbuf_space(chan, min)'
  failed.

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


[Bug 558439] Re: Xorg assert failure: X: ../../intel/intel_bufmgr_fake.c:1447: drm_intel_fake_bo_exec: Assertion `ret == 0' failed.

2011-01-23 Thread Timo Aaltonen
** Package changed: xorg-server (Ubuntu) = xserver-xorg-video-intel
(Ubuntu)

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

Title:
  Xorg assert failure: X: ../../intel/intel_bufmgr_fake.c:1447:
  drm_intel_fake_bo_exec: Assertion `ret == 0' failed.

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


[Bug 146314] Re: package description says html is included but it seams not

2011-01-23 Thread Geoffrey Thomas
schnollk, you wanted dpkg -L, not dpkg -S.

dpkg -L lists all files owned by a package; dpkg -S searches packages
for owning a file name or a part of a file name -- in this case the only
filenames containing aptitude-doc-en were /usr/share/doc/aptitude-doc-
en/*.

(I just installed aptitude-doc-en earlier tonight, was briefly confused,
and then ran dpkg -L and figured out what was going on. So I don't
disagree that the location is a bit confusing.)

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

Title:
  package description says html is included but it seams not

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


[Bug 643203] Re: stellarium assert failure: stellarium: ../../radeon/radeon_cs_gem.c:181: cs_gem_write_reloc: Assertion `boi-space_accounted' failed.

2011-01-23 Thread Alexander Wolf
** Changed in: stellarium
   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/643203

Title:
  stellarium assert failure: stellarium:
  ../../radeon/radeon_cs_gem.c:181: cs_gem_write_reloc: Assertion
  `boi-space_accounted' failed.

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


[Bug 553839] Re: Inconsistent field saving when pressing Esc

2011-01-23 Thread Bug Watch Updater
** Changed in: gnome-control-center
   Status: New = Expired

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

Title:
  Inconsistent field saving when pressing Esc

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


[Bug 706515] Re: ghex2 crashed with SIGSEGV in pango_color_parse()

2011-01-23 Thread YannUbuntu

** 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/706515

Title:
  ghex2 crashed with SIGSEGV in pango_color_parse()

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


[Bug 167262] Re: In the Text and Font dialog, Ctrl+Z (Undo) destroys text

2011-01-23 Thread Alex Valavanis
** Bug watch added: Debian Bug tracker #354613
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=354613

** Also affects: inkscape (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=354613
   Importance: Unknown
   Status: Unknown

** Also affects: inkscape (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: inkscape (Ubuntu)
   Status: New = Triaged

** Changed in: inkscape
   Status: Confirmed = Triaged

** Changed in: inkscape (Ubuntu)
   Importance: Undecided = Low

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

Title:
  In the Text and Font dialog, Ctrl+Z (Undo) destroys text

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


[Bug 680335] Re: Xorg assert failure: X: ../../nouveau/nouveau_pushbuf.c:273: nouveau_pushbuf_flush: Assertion `!nouveau_pushbuf_space(chan, min)' failed.

2011-01-23 Thread Timo Aaltonen
** Package changed: xorg-server (Ubuntu) = xserver-xorg-video-nouveau
(Ubuntu)

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

Title:
  Xorg assert failure: X: ../../nouveau/nouveau_pushbuf.c:273:
  nouveau_pushbuf_flush: Assertion `!nouveau_pushbuf_space(chan, min)'
  failed.

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


[Bug 664576] Re: 10.04 - 10.10 upgrade fails: extracting 'maverick.tar.gz' ERROR:root:failed to open tarfile (file could not be opened successfully) Failed to extract Extracting the upgrade failed. T

2011-01-23 Thread Timo Aaltonen
likely disk full or similar local issue with your machine.

** Package changed: xorg-server (Ubuntu) = ubuntu

** Changed in: 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/664576

Title:
  10.04 - 10.10 upgrade fails: extracting 'maverick.tar.gz'
  ERROR:root:failed to open tarfile (file could not be opened
  successfully) Failed to extract Extracting the upgrade failed. There
  may be a problem with the network or with the server.

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


[Bug 637789] Re: Xorg assert failure: X: ../../uxa/uxa-glyphs.c:167: uxa_realize_glyph_caches: Assertion `uxa_pixmap_is_offscreen(pixmap)' failed.

2011-01-23 Thread Timo Aaltonen
** Package changed: xorg-server (Ubuntu) = xserver-xorg-video-intel
(Ubuntu)

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

Title:
  Xorg assert failure: X: ../../uxa/uxa-glyphs.c:167:
  uxa_realize_glyph_caches: Assertion `uxa_pixmap_is_offscreen(pixmap)'
  failed.

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


[Bug 580855] Re: Ubuntu One sync daemon continuously hashing

2011-01-23 Thread Benoît Courty
*** This bug is a duplicate of bug 413255 ***
https://bugs.launchpad.net/bugs/413255

** This bug has been marked a duplicate of bug 413255
   ubuntuone-syncd use a lot of cpu
 * You can subscribe to bug 413255 by following this link: 
https://bugs.launchpad.net/ubuntuone-client/+bug/413255/+subscribe

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

Title:
  Ubuntu One sync daemon continuously hashing

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


[Bug 706441] Re: package simba 0.8.4-4 failed to install/upgrade: el subproceso post-installation script devolvió el código de salida de error 1

2011-01-23 Thread Monkey
*** This bug is a duplicate of bug 706439 ***
https://bugs.launchpad.net/bugs/706439

** This bug has been marked a duplicate of bug 706439
   package simba 0.8.4-4 failed to install/upgrade: el subproceso 
post-installation script devolvió el código de salida de error 1
 * You can subscribe to bug 706439 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/simba/+bug/706439/+subscribe

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

Title:
  package simba 0.8.4-4 failed to install/upgrade: el subproceso post-
  installation script devolvió el código de salida de error 1

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

[Bug 655154] Re: unattended-upgrade crashed with SIGSEGV in PyString_FromFormatV()

2011-01-23 Thread Launchpad Bug Tracker
This bug was fixed in the package python-apt - 0.7.96.1ubuntu11.1

---
python-apt (0.7.96.1ubuntu11.1) maverick-proposed; urgency=low

  * python/acquire-item.cc:
- fix format string for FileSize and PartialSize to be
  long long instead of float
- use strsprint() instead of PyString_FromFormat() because the
  later does not support %llu until python 2.7. This fixes the
  segfault LP: #655154
 -- Michael Vogt michael.v...@ubuntu.com   Mon, 10 Jan 2011 18:54:32 +0100

** Changed in: python-apt (Ubuntu Maverick)
   Status: Fix Committed = 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/655154

Title:
  unattended-upgrade crashed with SIGSEGV in PyString_FromFormatV()

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


[Bug 598824] Re: atd fails to start on new kernel 2.6.35-6

2011-01-23 Thread Launchpad Bug Tracker
This bug was fixed in the package at - 3.1.11-1ubuntu5.1

---
at (3.1.11-1ubuntu5.1) lucid-proposed; urgency=low

  * atd.c: perform queue hardlinks with full privileges to stay
compatible with kernels with hardlink restrictions (LP: #598824).
 -- Kees Cook k...@ubuntu.com   Tue, 11 Jan 2011 14:59:16 -0800

** Changed in: at (Ubuntu Lucid)
   Status: Fix Committed = 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/598824

Title:
  atd fails to start on new kernel 2.6.35-6

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


[Bug 330824] Re: Soft lockups (freezes) when deleting files from ext4 partitions on 2.6.28

2011-01-23 Thread hoover
I have experienced a similar bug removing largish video files (about 4GB
or so) from an internal SATA drive formatted with an xfs filesystem.

Sometimes when doing an rm -rf on a directory on that file system, the
rm will hang and remain pegged at 100% cpu usage. As opposed to other
posters in this thread, I don't see any suspicious messages in dmesg
about hangs or timeouts, and usually I'm able to rm -rf the directory
in question from another terminal session without a hang.

The only thing that kills the rm is a reboot, kill -9, Ctrl-C and so on
all won't work on that process.

Please let me know if you need any further logs, I'm running kernel
2.6.32-27-generic #49-Ubuntu SMP Wed Dec 1 23:52:12 UTC 2010 i686
GNU/Linux on Linux Mint10 which is based on Maverick 10.10.

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

Title:
  Soft lockups (freezes) when deleting files from ext4 partitions on
  2.6.28

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


[Bug 706515]

2011-01-23 Thread Apport retracing service
StacktraceTop:
 pango_color_parse (color=0xbfcf32fa, 
 IA__gdk_color_parse (
 gtk_hex_update_auto_highlight (gh=0x91bb2b0, ahl=0x91fb8d0, 
 display_scrolled (adj=0x9221b90, gh=0x91bb2b0)
 g_signal_stop_emission (instance=0x3574f0,

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

Title:
  ghex2 crashed with SIGSEGV in pango_color_parse()

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