[Bug 808297] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-10 Thread Sanjeev
Public bug reported:

Tried to install Samba and it crashed.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba 2:3.5.8~dfsg-1ubuntu2.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
NonfreeKernelModules: nvidia
AptOrdering:
 samba: Install
 samba: Configure
Architecture: i386
Date: Sun Jul 10 19:15:10 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
RelatedPackageVersions:
 nautilus 1:2.32.2.1-0ubuntu13
 gvfs 1.8.0-0ubuntu2
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 natty

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

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

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

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

2011-07-10 Thread Sanjeev
-- 
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/808297

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

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

-- 
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 808311] [NEW] ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Fabien Tassin
Public bug reported:

 * Starting Sendmail milter plugin for ClamAV clamav-milter
ERROR: Invalid setting true for option LogInfected  
[fail]

yet:

# grep LogInfected /etc/clamav/clamav-milter.conf
LogInfected Off

the reason is the log is bogus:

clamav-milter/clamfi.c:

if(!(opt = optget(opts, LogInfected))-enabled || 
!strcasecmp(opt-strarg, Off))
loginfected = LOGINF_NONE;
else if(!strcasecmp(opt-strarg, Basic))
loginfected = LOGINF_BASIC;
else if(!strcasecmp(opt-strarg, Full))
loginfected = LOGINF_FULL;
else {
logg(!Invalid setting %s for option LogInfected\n, opt-strarg);
return 1;
}

if((opt = optget(opts, LogClean))-enabled) {
if(!strcasecmp(opt-strarg, Basic))
loginfected |= LOGCLN_BASIC;
else if(!strcasecmp(opt-strarg, Full))
loginfected |= LOGCLN_FULL;
else if(strcasecmp(opt-strarg, Off)) {
logg(!Invalid setting %s for option LogInfected\n, opt-strarg);  
  == should be LogClean
return 1;
}
}


and indeed:

# grep LogClean /etc/clamav/clamav-milter.conf
LogClean true

Changing true to  Basic / Full / Off make it work.

So both the confusing log and the wrong default value should be fixed.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: clamav 0.97.1+dfsg-1ubuntu1
ProcVersionSignature: Ubuntu 3.0-3.4-generic 3.0.0-rc5
Uname: Linux 3.0-3-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Sun Jul 10 12:41:09 2011
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/usr/bin/tcsh
SourcePackage: clamav
UpgradeStatus: Upgraded to oneiric on 2009-07-28 (712 days ago)

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


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

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

Title:
  ERROR: Invalid setting true for option LogInfected

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

-- 
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 808311] Re: ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Fabien Tassin
-- 
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/808311

Title:
  ERROR: Invalid setting true for option LogInfected

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

-- 
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 808311] [NEW] ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Michael Tautschnig
Hi,

 Public bug reported:
 
  * Starting Sendmail milter plugin for ClamAV clamav-milter
 ERROR: Invalid setting true for option LogInfected
   [fail]
 
 yet:
 
 # grep LogInfected /etc/clamav/clamav-milter.conf
 LogInfected Off
 
 the reason is the log is bogus:
 

I've just reported this to upstream as #3040, see
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=3040.

 
 and indeed:
 
 # grep LogClean /etc/clamav/clamav-milter.conf
 LogClean true
 
 Changing true to  Basic / Full / Off make it work.
 
 So both the confusing log and the wrong default value should be fixed.


The wrong value true was likely caused by the debconf question missing in
versions before 0.97.1+dfsg-1 (whilst still internally asking debconf for a
value). If you remove this line from the config file or dpkg-reconfigure
clamav-milter you should get an appropriate value in there.

Automatically fixing this problem seems to be a bit risky as we do not want to
override a user's choice/configuration, not even an invalid one.

Hope this helps,
Michael

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

Title:
  ERROR: Invalid setting true for option LogInfected

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

-- 
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 808311] Re: ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Michael Tautschnig
** Bug watch added: ClamAV Bugzilla #3040
   https://wwws.clamav.net/bugzilla/show_bug.cgi?id=3040

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

Title:
  ERROR: Invalid setting true for option LogInfected

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

-- 
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 808446] [NEW] mcollective, rubygems and libstomp-ruby

2011-07-10 Thread James Troup
Public bug reported:

Hi,

So the rubygems dependency makes me twitch since my servers can't do
gem installs from remote servers (for obvious reasons).  I asked
upstream why it was required and he told me it was only really used by
the stomp plugin because generally stomp is provided by gems.
Digging further, it turns out that if we had a remotely modern version
of libstomp-ruby, that'd be perfectly sufficient for mcollective and
we could drop the 'require rubygems' entirely (at least in our
packages).  \o/

The newer version of libstomp-ruby issue is tracked here:

  https://bugs.launchpad.net/ubuntu/+source/libstomp-ruby/+bug/707317

(and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598564)

So, once that (or something like it is merged), in terms of
mcollective, I think mcollective's dependency on libstomp-ruby should
be versioned to = 1.1.9 and then we can drop the 'require rubygems'
and corresponding dependency?

-- 
James

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

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

Title:
  mcollective, rubygems and libstomp-ruby

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

-- 
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 697046] Re: Unable to create volumes on disk pools as parted support is missing

2011-07-10 Thread Chris Halse Rogers
Neither do I.  The security packages do not contain a build-dep on
parted.  Marking the Lucid, Maverick and Natty tasks back to incomplete.

I note that you've got another SRU upload for bug #495394 in the queue.
Would you like to fold this change into that upload, or process them
separately?

** Changed in: libvirt (Ubuntu Natty)
   Status: Fix Released = Incomplete

** Changed in: libvirt (Ubuntu Lucid)
   Status: Fix Released = Incomplete

** Changed in: libvirt (Ubuntu Maverick)
   Status: Fix Released = Incomplete

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

Title:
  Unable to create volumes on disk pools as parted support is missing

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

-- 
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 495394] Re: autostart almost always fails on boot time host

2011-07-10 Thread Chris Halse Rogers
Before accepting this upload I'd like to check that you don't want to
fold the missing fixes for bug #697046 into this upload.

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

Title:
  autostart almost always fails on boot time host

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

-- 
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 657972] Re: Panic or segfault in Samba

2011-07-10 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/657972

Title:
  Panic or segfault in Samba

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

-- 
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 787551] Re: ntpdate 4.2.6p2@1.2194-o: no server suitable for synchronization found - works with 4.2.4p8@1.1612-o

2011-07-10 Thread Launchpad Bug Tracker
This bug was fixed in the package ntp - 1:4.2.6.p2+dfsg-1ubuntu5.1

---
ntp (1:4.2.6.p2+dfsg-1ubuntu5.1) natty-proposed; urgency=low

  * debian/patches/ntpdate-accept-same-timestamp-replies.patch:
Resolving regression where ntpdate ignores replies from some
ntp servers where recieve and transmit timestamps are equal.
Patch cherry picked from upstream commit. (LP: #787551)
 -- Dave Walker (Daviey) davewal...@ubuntu.com   Mon, 13 Jun 2011 15:43:57 
+0100

** Changed in: ntp (Ubuntu Natty)
   Status: Fix Committed = Fix Released

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

Title:
  ntpdate 4.2.6p2@1.2194-o: no server suitable for synchronization
  found - works with 4.2.4p8@1.1612-o

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/787551/+subscriptions

-- 
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 561750] Re: squid starts and stops immediately (after upgrade from karmic to lucid)

2011-07-10 Thread Martin Pitt
Ernst, is the reload vs. restart issue really related to this bug? This
was about doing DNS checks, not a bug in the upstart script. Should
there be a new bug report instead?

BTW, reload is not supposed to kill the daemon. For oneiric, reload
should be fixed to actually work, instead of using restart instead. If
that fix is easy, then it should be backported; if it's complex, then
the restart workaround might be more appropriate for an SRU.

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

Title:
  squid starts and stops immediately (after upgrade from karmic to
  lucid)

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

-- 
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 808611] [NEW] package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during `./usr/bin/net.samba3'

2011-07-10 Thread tony
Public bug reported:

I opened the K Package kit and tried to download bug fixes and updates.
I am using a 16gig toshiba usb stick as my ubuntu 10.04 system and there is 
about 14.5gig remaining but a message popped up and stated that there was only 
a couple of hundred mg remaining.
It said that it had encountered a problem and couldn't continue.
that's it.  hope you can help,  Tony.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3
ProcVersionSignature: Ubuntu 2.6.32-28.55-generic 2.6.32.27+drm33.12
Uname: Linux 2.6.32-28-generic i686
Architecture: i386
Date: Mon Jul 11 04:37:35 2011
ErrorMessage: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during 
`./usr/bin/net.samba3'
LiveMediaBuild: Ubuntu 10.04.2 LTS Lucid Lynx - Release i386 (20110211.1)
RelatedPackageVersions:
 nautilus 1:2.30.1-0ubuntu1.1
 gvfs 1.6.1-0ubuntu1build1
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to 
install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb 
during `./usr/bin/net.samba3'

** Affects: samba (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 samba in Ubuntu.
https://bugs.launchpad.net/bugs/808611

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to
  install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend
  dpkg-deb during `./usr/bin/net.samba3'

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

-- 
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 808611] Re: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during `./usr/bin/net.samba3'

2011-07-10 Thread tony
-- 
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/808611

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to
  install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend
  dpkg-deb during `./usr/bin/net.samba3'

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

-- 
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 790145] Please test proposed package

2011-07-10 Thread Martin Pitt
Hello Attb2, or anyone else affected,

Accepted qemu-kvm into maverick-proposed, the package will build now and
be available in a few hours. Please test and give feedback here. See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed. Thank you in advance!

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

Title:
  kvm husb: ctrl buffer too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/790145/+subscriptions

-- 
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 578536] Re: when stopped, automount orphans some mounts

2011-07-10 Thread Martin Pitt
Server team ping?

** Changed in: autofs5 (Ubuntu Maverick)
   Status: Triaged = Incomplete

** Changed in: autofs5 (Ubuntu Oneiric)
   Status: Triaged = Incomplete

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

Title:
  when stopped, automount orphans some mounts

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

-- 
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 807974] Re: debootstrap fails to install libc6 installing oneiric from natty

2011-07-10 Thread Ricardo Salveti
Also linking to base-files as it seems  the problem is happening because
of the /run transition.

In theory /run should be the tmpfs run directory, replacing /var/run. To
be compatible with packages using /var/run directly, the transition
should still make /var/run available to the system, but bind mounted to
/run.

The problem here is that the directory /var/run is not being created
anymore, as a side effect of base-files 6.3ubuntu3 package update. As
this directory should still exist anyway (to be used while bind mounting
to run), I believe it makes sense to still create it at base-files, so
it's not going to break packages like libc6 and upstart.

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

Title:
  debootstrap fails to install libc6 installing oneiric from natty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/807974/+subscriptions

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


[Bug 657508] Re: Network becomes sluggish when running on battery

2011-07-10 Thread Fabio Marconi
Hello guys
Thanks for the replies.
I close this report as Fix released.
Thanks
Fabio

** Changed in: gnome-power-manager (Ubuntu)
   Status: Incomplete = 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/657508

Title:
  Network becomes sluggish when running on battery

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/657508/+subscriptions

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


[Bug 807762] Re: please update openscenegraph to 3.0.0-1 from debian unstable

2011-07-10 Thread Micah Gersten
Moving to openscenegraph

** Package changed: flightgear (Ubuntu) = openscenegraph (Ubuntu)

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

Title:
  please update openscenegraph to 3.0.0-1 from debian unstable

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

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


[Bug 807762] Re: please update openscenegraph to 3.0.0-1 from debian unstable

2011-07-10 Thread Micah Gersten
This FTBFS on amd64

** Attachment added: openscenegraph_3.0.0-1-amd64-20110710-0018
   
https://bugs.launchpad.net/ubuntu/+source/openscenegraph/+bug/807762/+attachment/2200154/+files/openscenegraph_3.0.0-1-amd64-20110710-0018

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

** Tags added: ftbfs oneiric

** Tags added: universe

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

Title:
  please update openscenegraph to 3.0.0-1 from debian unstable

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

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


[Bug 653686] Re: Automatic non-login keyring unlock does not work

2011-07-10 Thread Andrea Colangelo
Still affected too: Natty keeps asking keyring password after login to
connect to wifi.

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

Title:
  Automatic non-login keyring unlock does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/653686/+subscriptions

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


[Bug 807974] Re: debootstrap fails to install libc6 installing oneiric from natty

2011-07-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~rsalveti/ubuntu/oneiric/base-files/run-transition

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

Title:
  debootstrap fails to install libc6 installing oneiric from natty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/807974/+subscriptions

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


[Bug 774414] Re: Window movement in Unity jerky

2011-07-10 Thread Andrey Gladkyy
*** This bug is a duplicate of bug 770160 ***
https://bugs.launchpad.net/bugs/770160

** This bug is no longer a duplicate of bug 764330
   Move window annoying slow with compiz
** This bug has been marked a duplicate of bug 770160
   windows start to move slow after using compiz for some hours

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

Title:
  Window movement in Unity jerky

To manage notifications about this bug go to:
https://bugs.launchpad.net/nux/+bug/774414/+subscriptions

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


[Bug 770160] Re: windows start to move slow after using compiz for some hours

2011-07-10 Thread Andrey Gladkyy
Actually, it's related to
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/764330

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

Title:
  windows start to move slow after using compiz for some hours

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

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


[Bug 764330] Re: Move window annoying slow with compiz

2011-07-10 Thread Andrey Gladkyy
*** This bug is a duplicate of bug 770160 ***
https://bugs.launchpad.net/bugs/770160

** This bug has been marked a duplicate of bug 770160
   windows start to move slow after using compiz for some hours

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

Title:
  Move window annoying slow with compiz

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

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


[Bug 760131] Re: Power consumption raised significantly in natty

2011-07-10 Thread Adrian Wechner
adding pcie_aspm=force

ubuntu 11.04
kernel 2.6.38-8-generic
Dell inspiron 1525
from 19.0W to 15.0W down (idle). 20% less.

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

Title:
  Power consumption raised significantly in natty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/760131/+subscriptions

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


[Bug 807305] Re: Nouveau system running hot, laggy

2011-07-10 Thread Bryce Harrington
** Package changed: mesa (Ubuntu) = ubuntuone-client (Ubuntu)

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

Title:
  Nouveau system running hot, laggy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntuone-client/+bug/807305/+subscriptions

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


[Bug 799238] Re: Xubuntu i386 and amd64 xserver abort

2011-07-10 Thread Fabio Marconi
** Summary changed:

- Xubuntu i386 and amd64 20110618 xserver abort
+ Xubuntu i386 and amd64 xserver abort

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

Title:
  Xubuntu i386 and amd64 xserver abort

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

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


[Bug 808234] [NEW] package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
Public bug reported:

bugs were observed while upgrading pakages from ubuntu 11.04 i386
desktop cd

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libavcodec-extra-52 (not installed)
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sat Jul  9 23:32:28 2011
ErrorMessage: subprocess dpkg-deb --fsys-tarfile returned error exit status 2
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
InstallationMedia_: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcVersionSignature_: Ubuntu 2.6.38-8.42-generic 2.6.38.2
SourcePackage: libav-extra
Title: package libavcodec-extra-52 (not installed) failed to install/upgrade: 
subprocess dpkg-deb --fsys-tarfile returned error exit status 2
UpgradeStatus: Upgraded to natty on 2011-07-10 (0 days ago)

** Affects: libav-extra (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package 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/808234

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808234/+subscriptions

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


[Bug 808234] Re: package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808234

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808234/+subscriptions

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


[Bug 808232] [NEW] package openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1 failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
Public bug reported:

bugs were observed while upgrading pakages after clean install from
Ubuntu 11.04 i386 Desktop cd

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sat Jul  9 23:32:16 2011
ErrorMessage: subprocess dpkg-deb --fsys-tarfile returned error exit status 2
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
SourcePackage: openjdk-6
Title: package openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1 failed to 
install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2
UpgradeStatus: Upgraded to natty on 2011-07-10 (0 days ago)

** Affects: openjdk-6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package 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/808232

Title:
  package openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1 failed to
  install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error
  exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/808232/+subscriptions

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


[Bug 808232] Re: package openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1 failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808232

Title:
  package openjdk-6-jre-headless 6b22-1.10.2-0ubuntu1~11.04.1 failed to
  install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error
  exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/808232/+subscriptions

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


[Bug 806024] Re: Pop up dialogues not visible in full screen mode (linux, gnome)

2011-07-10 Thread JazzyNico
Confirmed on Ubuntu 10.10, Inkscape 0.48.0-1ubuntu1.2 and trunk revision
10436.

** Changed in: inkscape
   Importance: Undecided = Low

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

Title:
  Pop up dialogues not visible in full screen mode (linux, gnome)

To manage notifications about this bug go to:
https://bugs.launchpad.net/inkscape/+bug/806024/+subscriptions

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


[Bug 556670] Re: Can't click on UI elements in gimp (intermittent)

2011-07-10 Thread Tina Russell
I’m still having this problem with Natty, and this bug should never have
been marked “Fix Released”; look above, it was changed in regard to a
workaround that doesn’t really seem to work.

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

Title:
  Can't click on UI elements in gimp (intermittent)

To manage notifications about this bug go to:
https://bugs.launchpad.net/inkscape/+bug/556670/+subscriptions

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

[Bug 808238] Re: package gwibber-service 3.0.0.1-0ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-10 Thread Thangavelu Kannan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808238

Title:
  package gwibber-service 3.0.0.1-0ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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


[Bug 808238] [NEW] package gwibber-service 3.0.0.1-0ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-10 Thread Thangavelu Kannan
Public bug reported:

bugs were observed while partial upgrade by update manager

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: gwibber-service 3.0.0.1-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sat Jul  9 23:13:11 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
PackageArchitecture: all
SourcePackage: gwibber
Title: package gwibber-service 3.0.0.1-0ubuntu3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to natty on 2011-07-10 (0 days ago)

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


** Tags: apport-package 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/808238

Title:
  package gwibber-service 3.0.0.1-0ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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


[Bug 808236] [NEW] package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
Public bug reported:

bugs were observed while pakage upgrading by update manager

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libavcodec-extra-52 (not installed)
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sat Jul  9 23:32:28 2011
ErrorMessage: subprocess dpkg-deb --fsys-tarfile returned error exit status 2
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
InstallationMedia_: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
InstallationMedia__: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcVersionSignature_: Ubuntu 2.6.38-8.42-generic 2.6.38.2
ProcVersionSignature__: Ubuntu 2.6.38-8.42-generic 2.6.38.2
SourcePackage: libav-extra
Title: package libavcodec-extra-52 (not installed) failed to install/upgrade: 
subprocess dpkg-deb --fsys-tarfile returned error exit status 2
UpgradeStatus: Upgraded to natty on 2011-07-10 (0 days ago)

** Affects: libav-extra (Ubuntu)
 Importance: Undecided
 Assignee: Massimo Forti (maxforti)
 Status: New


** Tags: apport-package 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/808236

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808236/+subscriptions

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


[Bug 808236] Re: package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Thangavelu Kannan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808236

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808236/+subscriptions

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


[Bug 808235] [NEW] package libsidplay1 (not installed) failed to install/upgrade: ErrorMessage: corrupted filesystem tarfile - corrupted package archive

2011-07-10 Thread Thangavelu Kannan
Public bug reported:

bugs were observed while pakage upgrading from ubuntu 11.04 i386 desktop
cd

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libsidplay1 (not installed)
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sun Jul 10 11:51:03 2011
ErrorMessage: ErrorMessage: corrupted filesystem tarfile - corrupted package 
archive
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
SourcePackage: libsidplay
Title: package libsidplay1 (not installed) failed to install/upgrade: 
ErrorMessage: corrupted filesystem tarfile - corrupted package archive
UpgradeStatus: Upgraded to natty on 2011-07-10 (0 days ago)

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


** Tags: apport-package 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/808235

Title:
  package libsidplay1 (not installed) failed to install/upgrade:
  ErrorMessage: corrupted filesystem tarfile - corrupted package archive

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

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


[Bug 808235] Re: package libsidplay1 (not installed) failed to install/upgrade: ErrorMessage: corrupted filesystem tarfile - corrupted package archive

2011-07-10 Thread Thangavelu Kannan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808235

Title:
  package libsidplay1 (not installed) failed to install/upgrade:
  ErrorMessage: corrupted filesystem tarfile - corrupted package archive

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

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


[Bug 807619] Re: apt updates fail with invalid argument

2011-07-10 Thread Massimo Forti
** Changed in: apt (Ubuntu)
   Status: Incomplete = New

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

Title:
  apt updates fail with invalid argument

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

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


[Bug 807282] Re: software-center crashed with AttributeError in __getattr__(): 'Symbol' object has no attribute 'MODIFY_EVENT'

2011-07-10 Thread James Galea
Alpha 2:
Same as Alessandro here:
1) Open Ubuntu Software Center from Launcher
2) Search skype
3) Click on Use this source

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

Title:
  software-center crashed with AttributeError in __getattr__(): 'Symbol'
  object has no attribute 'MODIFY_EVENT'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/807282/+subscriptions

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


[Bug 684599] Re: Memory leak in nm-applet

2011-07-10 Thread Sergey Shnatsel Davidoff
Let's reopen the bug then.

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

Title:
  Memory leak in nm-applet

To manage notifications about this bug go to:
https://bugs.launchpad.net/elementaryos/+bug/684599/+subscriptions

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


[Bug 808236] Re: package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Massimo Forti
** Changed in: libav-extra (Ubuntu)
 Assignee: (unassigned) = Massimo Forti (maxforti)

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

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808236/+subscriptions

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


Re: [Bug 700875] audio playback freeze on launching other apps

2011-07-10 Thread sudhan
Am unable to reproduce the bug.I think its fixed in Natty Narawhal.

On Sat, Jul 9, 2011 at 1:17 AM, Pedro Villavicencio
pe...@ubuntu.comwrote:

 Thanks for the report, it has been some time without any response or
 feedback in this bug report and we are wondering if this is still an
 issue for you with the latest release of Ubuntu the Natty Narwhal, May
 you please test with that version and comment back if you're still
 having or not the issue? Please have a look at
 http://www.ubuntu.com/download to know how to install that version.
 Thanks in advance and sorry for the late response.

 ** Changed in: gstreamer0.10 (Ubuntu)
   Importance: Undecided = Low

 ** Changed in: gstreamer0.10 (Ubuntu)
   Status: New = Incomplete

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/700875

 Title:
  audio playback freeze on launching other apps

 Status in “gstreamer0.10” package in Ubuntu:
   Incomplete

 Bug description:
  1.Ubuntu release via 'lsb_release -rd'
  Description:  Ubuntu 10.10
  Release:  10.10
  via System-About Ubuntu
  Ubuntu 11.04  - the Natty Narwhal

  2.Expected :Music to play uninterrupted

  3.Actual:Music got stalled until launch of other application(like
  firefox,openoffice ,or on loading of heavy websites)

  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: Mon Jan 10 08:02:09 2011
  ExecutablePath: /usr/bin/rhythmbox
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
  ProcEnviron:
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: gstreamer0.10

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/gstreamer0.10/+bug/700875/+subscriptions



-- 
Sudhan

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

Title:
  audio playback freeze on launching other apps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer0.10/+bug/700875/+subscriptions

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

[Bug 801566] Re: scrolling stops working after suspend-resume

2011-07-10 Thread Fabio Marconi
** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete = New

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

Title:
  scrolling stops working after suspend-resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/801566/+subscriptions

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


[Bug 808241] [NEW] libre crash on heavey track changes doc

2011-07-10 Thread Shaykid
Public bug reported:

A documented i edited (originally made by msword 2010) contains many
tackchanges, was saved ok by libre, but failed to open t, when i open it
it crashed the application, zip  xml inside looks ok

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: libreoffice-core 1:3.3.2-1ubuntu5
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
Architecture: i386
Date: Sun Jul 10 09:57:43 2011
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: libreoffice
UpgradeStatus: Upgraded to natty on 2011-07-04 (5 days ago)

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


** Tags: apport-bug apport-lpi 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/808241

Title:
  libre crash on heavey track changes doc

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

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


[Bug 808241] Re: libre crash on heavey track changes doc

2011-07-10 Thread Shaykid
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808241

Title:
  libre crash on heavey track changes doc

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

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


[Bug 802070] Re: 11.04: partman crashes during install on RaisorFS with non-emply journal

2011-07-10 Thread Fabio Marconi
** Package changed: ubuntu = partman-reiserfs (Ubuntu)

** Summary changed:

- 11.04: partman crashes during install on RaisorFS with non-emply journal
+ 11.04: partman crashes during install on RaiserFS with non-emply journal

** Changed in: partman-reiserfs (Ubuntu)
   Status: Incomplete = New

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

Title:
  11.04: partman crashes during install on RaiserFS with non-emply
  journal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-reiserfs/+bug/802070/+subscriptions

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


[Bug 808242] [NEW] [Natty] The program description of x11-xkb-utils is wrong. Needs correcting.

2011-07-10 Thread Detlef Lechner
Public bug reported:

[Natty] The program description of x11-xkb-utils is wrong. It needs correcting.
The description xkbutils enthält eine Reihe clientseitiger Dienstprogramme für 
XKB, die X11-Tastaturerweiterung.
is wrong and needs to be corrected.
There is no xkbutils in Natty.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: x11-xkb-utils 7.6+2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Sun Jul 10 09:01:25 2011
DistUpgraded: Fresh install
DistroCodename: natty
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) 
[8086:2a02] (rev 0c) (prog-if 00 [VGA controller])
   Subsystem: Lenovo T61 [17aa:20b5]
   Subsystem: Lenovo T61 [17aa:20b5]
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
MachineType: LENOVO 6464W71
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 LANGUAGE=de_DE:en
 PATH=(custom, user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=328670f9-63b9-4f64-9656-ae047ab66f5f ro
Renderer: Unknown
SourcePackage: x11-xkb-utils
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/22/2007
dmi.bios.vendor: LENOVO
dmi.bios.version: 7LET51WW (1.21 )
dmi.board.name: 6464W71
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr7LET51WW(1.21):bd08/22/2007:svnLENOVO:pn6464W71:pvrThinkPadT61:rvnLENOVO:rn6464W71:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 6464W71
dmi.product.version: ThinkPad T61
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.4+bzr20110606-0ubuntu1~natty2
version.ia32-libs: ia32-libs 20090808ubuntu13
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

** Affects: x11-xkb-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug natty ubuntu

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

Title:
  [Natty] The program description of x11-xkb-utils is wrong. Needs
  correcting.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x11-xkb-utils/+bug/808242/+subscriptions

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

[Bug 808242] Re: [Natty] The program description of x11-xkb-utils is wrong. Needs correcting.

2011-07-10 Thread Detlef Lechner
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808242

Title:
  [Natty] The program description of x11-xkb-utils is wrong. Needs
  correcting.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x11-xkb-utils/+bug/808242/+subscriptions

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


[Bug 807854] Re: applets change position with lock

2011-07-10 Thread avdd
** Attachment added: After plugging in external monitor
   
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/807854/+attachment/2200247/+files/panel-resized.png

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

Title:
  applets change position with lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/807854/+subscriptions

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


[Bug 797467] Re: When I stop my mini HP the screen is frozen and show a text without no stopping. it stop only when i push the button for many seconds

2011-07-10 Thread Fabio Marconi
Hello DENIS
thanks for the reply
I close this report as fix reelased.
Thanks
Fabio


** Description changed:

+ ***Fixed in Oneiric***
+ 
  bug 759213 ?
  that is the text that appear on my computer screen:
    starting CUPS printing spooler/server  0k
  stopping System V run level compatibility   OK
  Broadcast message from root@denis-HP-Mini-110-3000
  (unknown) at 8:56 ...
  
  The system is going down for halt NOW!
  speech-dispatcher disabled: edit /etc/defaualt/speech-dispatcher
    
   acpid: exiting
  init: tty4 main process (724) killed by TERM signal
  init: tty5 main process (730) jukked by TERM signal
  init: tty2 main process (743) killed bay TERM signal
  init: tty3 main process (745) killed by TERM signal
  init: tty6 main process (749 ) killed by TERM signal
  * Stopping bluetooth
  init: cron  main process (760) killed bay TERm signal
  init: irqbalance main process (778) killed by TERM signal
  init: tty1 main process (1117) killed bay TERM signal
  init: plymouth-upstart-bridge main process (1867) terminated with status 1
  
  _
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: firefox 4.0.1+build1+nobinonly-0ubuntu0.11.04.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Tue Jun 14 20:15:08 2011
  FirefoxPackages:
   firefox 4.0.1+build1+nobinonly-0ubuntu0.11.04.3
   flashplugin-installer 10.3.181.14ubuntu0.11.04.1
   adobe-flashplugin N/A
   icedtea-plugin 1.1~20110420-0ubuntu1
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  ProcEnviron:
   LANGUAGE=fr_CA:en
   LANG=fr_CA.UTF-8
   SHELL=/bin/bash
  SourcePackage: firefox
  UpgradeStatus: No upgrade log present (probably fresh install)
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  denis  1173 F pulseaudio
  CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0x5420 irq 45'
     Mixer name : 'IDT 92HD88B1'
     Components : 'HDA:111d7667,103c148a,00100105'
     Controls  : 14
     Simple ctrls  : 9
  DistroRelease: Ubuntu 11.04
  HibernationDevice: RESUME=UUID=ec41f2e5-e644-48dc-a846-a0a96c89956e
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  MachineType: Hewlett-Packard HP Mini 110-3000
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=fr_CA:en
   LANG=fr_CA.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=638cdd61-96cf-4345-91f2-067b71f3b842 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  RelatedPackageVersions:
   linux-restricted-modules-2.6.38-8-generic N/A
   linux-backports-modules-2.6.38-8-generic  N/A
   linux-firmware1.52
  StagingDrivers: rts_pstor rt2860sta
  Tags:  natty running-unity staging
  Uname: Linux 2.6.38-8-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
  dmi.bios.date: 06/25/2010
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.07
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 148A
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 79.34
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.07:bd06/25/2010:svnHewlett-Packard:pnHPMini110-3000:pvr049010202B0011030:rvnHewlett-Packard:rn148A:rvr79.34:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP Mini 110-3000
  dmi.product.version: 049010202B0011030
  dmi.sys.vendor: Hewlett-Packard
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  denis  1173 F pulseaudio
  CRDA: Error: [Errno 2] Aucun 

[Bug 709094] Re: wrong colors on UPS/battery graphs when dark color theme used

2011-07-10 Thread jpka
Hi!
Unfortunately, it is still not fixed.

$ lsb_release -a
LSB Version:
core-2.0-ia32:core-2.0-noarch:core-3.0-ia32:core-3.0-noarch:core-3.1-ia32:core-3.1-noarch:core-3.2-ia32:core-3.2-noarch:core-4.0-ia32:core-4.0-noarch:cxx-3.0-ia32:cxx-3.0-noarch:cxx-3.1-ia32:cxx-3.1-noarch:cxx-3.2-ia32:cxx-3.2-noarch:cxx-4.0-ia32:cxx-4.0-noarch:desktop-3.1-ia32:desktop-3.1-noarch:desktop-3.2-ia32:desktop-3.2-noarch:desktop-4.0-ia32:desktop-4.0-noarch:graphics-2.0-ia32:graphics-2.0-noarch:graphics-3.0-ia32:graphics-3.0-noarch:graphics-3.1-ia32:graphics-3.1-noarch:graphics-3.2-ia32:graphics-3.2-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-3.2-ia32:printing-3.2-noarch:printing-4.0-ia32:printing-4.0-noarch:qt4-3.1-ia32:qt4-3.1-noarch
Distributor ID: Ubuntu
Description:Ubuntu 11.04
Release:11.04
Codename:   natty

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

Title:
  wrong colors on UPS/battery graphs when dark color theme used

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/709094/+subscriptions

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


[Bug 807518] Re: update-manager crashed with NameError in update_count(): global name 'glib' is not defined

2011-07-10 Thread Timo Reimerdes
Marc Ozbby, to add the import glib entry you have to:

sudo gedit /usr/lib/python2.7/dist-
packages/UpdateManager/UpdateManager.py

and then write in there - in one free line (like line 37 - thats where I put it)
import glib

save and close. And you are done.

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

Title:
  update-manager crashed with NameError in update_count(): global name
  'glib' is not defined

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/807518/+subscriptions

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


[Bug 520421] Re: Firefox bookmarks stop auto-suggesting for no apparent reason

2011-07-10 Thread Mihai Capotă
Mozilla bug 545846 is a duplicate of Mozilla bug 507269

** Bug watch added: Mozilla Bugzilla #507269
   https://bugzilla.mozilla.org/show_bug.cgi?id=507269

** Changed in: firefox
   Importance: Medium = Unknown

** Changed in: firefox
 Remote watch: Mozilla Bugzilla #545846 = Mozilla Bugzilla #507269

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

Title:
  Firefox bookmarks stop auto-suggesting for no apparent reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/520421/+subscriptions

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


[Bug 808247] [NEW] Touchscreen usability problems

2011-07-10 Thread onebir
Public bug reported:

Touchscreens may not be the primary Evince use-case, but so far it is
the only djvu viewer (in particular) I've found (amongst Ubuntu
repositories) that's usable with the touchscreen for reading books page
by page (ie in 90deg rotated fullscreen mode). This is thanks to the
onscreen page forward  back buttons maintained in that mode (but
eliminated by other viewers in fullscreen).

But this remains problematic in several ways:
1) fit page width is not fitting the page width, but the page height when the 
document is rotated. Depending on the margins, the left side of the text may be 
truncated.
2) if this happens, there's no way to scroll left, because the mouse does not 
become a hand tool in fullscreen mode
3) it would also be useful if it were possible to scroll to the next or 
previous screen with touchscreen touches (left click  drag)
4) best fit does display the whole page, but, because most documents have 
margins, the text is unnecessarily small, so a fit visible that closely fits 
the *actual text* to the window would be much better
5) failing this, custom zoom levels would be very useful, particularly combined 
with the ability to consistently display the same region of the page (ie the 
text...), or to navigate around the screen with mouse drags.

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


** Tags: evince netbook tablet ubuntu usability

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

Title:
  Touchscreen usability problems

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

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


[Bug 602005] Re: permissions of script files wrong/missing shebang lines

2011-07-10 Thread ~suv
Alex Valavanis wrote on 2011-05-24: 
 * Add shebang to voronoi.py
 * Move *.js files to the _DATA rule in share/extensions/Makefile.am

The fix was committed to trunk in r10245 - this report should have been tagged 
'backport-proposed' (for the 0.48.x branch).
@Hannes - sorry to have missed that in time for 0.48.2.

** Tags added: backport-proposed

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

Title:
  permissions of script files wrong/missing shebang lines

To manage notifications about this bug go to:
https://bugs.launchpad.net/inkscape/+bug/602005/+subscriptions

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


[Bug 808249] [NEW] 1)An upgrade from jaunty to lucid is not supported with this tool: (2)Also I cannot play any movies with Dragon player: I am running and amd 64

2011-07-10 Thread Tim Fowler
Public bug reported:

Update manager and Dragon player

** Affects: update-manager (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/808249

Title:
  1)An upgrade from jaunty to lucid is not supported with this tool:
  (2)Also I cannot play any movies with Dragon player: I am running and
  amd 64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/808249/+subscriptions

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


[Bug 796400] Re: ubuntu don't wake up after suspend (Intel D510MO)

2011-07-10 Thread Fabio Marconi
** Tags added: workaround

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

Title:
  ubuntu don't wake up after suspend (Intel D510MO)

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

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


[Bug 790754] Re: [NATTY] RICOH [1180:e823] unable to read MMC cards

2011-07-10 Thread Chris Van Hoof
This patch has proved to work in various cases both on Maverick as well
as Natty; perhaps we're dealing with something specific to the card
being used?  Is there more to gain here by including this versus just
reverting it?

** Changed in: linux (Ubuntu Maverick)
   Status: Confirmed = Incomplete

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

Title:
  [NATTY] RICOH [1180:e823] unable to read MMC cards

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/790754/+subscriptions

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


[Bug 808251] [NEW] [Roma, Realtek ALC662 rev1, Purple Speaker, Internal] No sound at all

2011-07-10 Thread stephen matthews
Public bug reported:

On upgrading to 10.04. Sound works fine in Windows (dual-boot) and
worked previous Ubuntu version. Now aplay -l reports No soundcard

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: alsa-base 1.0.24+dfsg-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  steviebeadmill   1525 F pulseaudio
 /dev/snd/pcmC0D0p:   steviebeadmill   1525 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfe70 irq 46'
   Mixer name   : 'Intel Cantiga HDMI'
   Components   : 'HDA:10ec0662,101990b5,00100101 
HDA:80862802,80860101,0010'
   Controls  : 23
   Simple ctrls  : 12
Date: Sun Jul 10 08:24:10 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel successful
Symptom_Card: Internal Audio - HDA Intel
Symptom_DevicesInUse: 1525  1525/dev/snd/pcmC0D0p:   steviebeadmill  F...m 
pulseaudio
Symptom_Jack: Purple Speaker, Internal
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: No sound at all
Title: [Roma, Realtek ALC662 rev1, Purple Speaker, Internal] No sound at all
UpgradeStatus: Upgraded to natty on 2011-05-02 (68 days ago)
dmi.bios.date: 11/16/2009
dmi.bios.vendor: Phoenix
dmi.bios.version: 1.06AD
dmi.board.asset.tag: Tag 12345
dmi.board.name: Roma
dmi.board.vendor: Advent
dmi.chassis.type: 10
dmi.chassis.vendor: Advent
dmi.modalias: 
dmi:bvnPhoenix:bvr1.06AD:bd11/16/2009:svnAdvent:pnRoma:pvr:rvnAdvent:rnRoma:rvr:cvnAdvent:ct10:cvr:
dmi.product.name: Roma
dmi.sys.vendor: Advent

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

Title:
  [Roma, Realtek ALC662 rev1, Purple Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/808251/+subscriptions

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


[Bug 808251] Re: [Roma, Realtek ALC662 rev1, Purple Speaker, Internal] No sound at all

2011-07-10 Thread stephen matthews
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808251

Title:
  [Roma, Realtek ALC662 rev1, Purple Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/808251/+subscriptions

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


[Bug 808249] Re: 1)An upgrade from jaunty to lucid is not supported with this tool: (2)Also I cannot play any movies with Dragon player: I am running and amd 64

2011-07-10 Thread Tim Fowler
Yes I was attempting to upgrade, sorry about that.
I have never been able to play movies on with dragon player so just boot into 
Debian when I feel the need to watch a movie.

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

Title:
  1)An upgrade from jaunty to lucid is not supported with this tool:
  (2)Also I cannot play any movies with Dragon player: I am running and
  amd 64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/808249/+subscriptions

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


[Bug 808098] Re: package libmono-system-web2.0-cil 2.4.4~svn151842-1ubuntu4 failed to install/upgrade: package libmono-system-web2.0-cil is already installed and configured

2011-07-10 Thread Raphaël Hertzog
I'm sorry, there's no error in the attached log. I'm thus marking this
bug as invalid.

** Changed in: dpkg (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/808098

Title:
  package libmono-system-web2.0-cil 2.4.4~svn151842-1ubuntu4 failed to
  install/upgrade: package libmono-system-web2.0-cil is already
  installed and configured

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

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


[Bug 665548] Re: changing workspaces is very slow in case of big terminal windows

2011-07-10 Thread LGB [Gábor Lénárt]
Yes, I have the issue with natty too. However, it's not always the case
(as it was not before either), usually it does not happen after reboot
and then it starts to happen after a while. It's annoying since a big
terminal window I often use (btw: it can be a case with more terminal
windows on the same workspace as well: it seems somehow the sum of the
surface counts??) it can be 4-5 seconds to switch workspace. I am not
using unity/compiz/desktop effects etc all, but classic desktop
(without compiz) but metacity's internal composite support is enabled
though!

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

Title:
  changing workspaces is very slow in case of big terminal windows

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

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


[Bug 240738] Re: syndaemon sometimes fails to disable the touchpad

2011-07-10 Thread Rainer Rohde
This affects me as well on my MacBook Pro.

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

Title:
  syndaemon sometimes fails to disable the touchpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/240738/+subscriptions

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


[Bug 808254] [NEW] Failed to open VDPAU backend libvdpau_nvidia.so

2011-07-10 Thread Jose Ramon Huerga
Public bug reported:

If I open firefox from a terminal ( $ firefox  ) after some hours I see
dozens of errors like this:

Failed to open VDPAU backend libvdpau_nvidia.so: no se puede abrir el fichero 
del objeto compartido: No existe el fichero o el directorio
Failed to open VDPAU backend libvdpau_nvidia.so: no se puede abrir el fichero 
del objeto compartido: No existe el fichero o el directorio

In my case, the Flash videos are executed properly, with sound. It seems
to be just a warning .

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: firefox 5.0+build1+nobinonly-0ubuntu0.11.04.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sun Jul 10 09:45:36 2011
ExecutablePath: /usr/lib/firefox-5.0/firefox-bin
FirefoxPackages:
 firefox 5.0+build1+nobinonly-0ubuntu0.11.04.2
 flashplugin-installer 10.3.181.26ubuntu0.11.04.1
 adobe-flashplugin N/A
 icedtea-plugin 1.1~20110420-0ubuntu1.1
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
LocalLibraries: /home/jrhuerga/.mozilla/plugins/nppdf.so
ProcEnviron:
 LANGUAGE=es_ES:en
 LANG=es_ES.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox
UpgradeStatus: Upgraded to natty on 2011-06-18 (21 days ago)

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


** Tags: apport-bug i386 local-libs natty

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

Title:
  Failed to open VDPAU backend libvdpau_nvidia.so

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

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


[Bug 808254] Re: Failed to open VDPAU backend libvdpau_nvidia.so

2011-07-10 Thread Jose Ramon Huerga
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808254

Title:
  Failed to open VDPAU backend libvdpau_nvidia.so

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

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


[Bug 808236] Re: package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Ubuntu QA's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that there was an error on your system when
trying to install a particular package.  Please execute the following
command, as it will clear your package cache, in a terminal:

sudo apt-get clean

Then try performing the update again.  This will likely resolve your
issue, but the failure could be caused by filesystem or memory
corruption.  So please also run a fsck on your filesystem(s) and a
memory test.  If this does resolve your bug please set its status to
Invalid.  Thanks in advance!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: short-read

** Changed in: libav-extra (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/808236

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808236/+subscriptions

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


[Bug 808235] Re: package libsidplay1 (not installed) failed to install/upgrade: ErrorMessage: corrupted filesystem tarfile - corrupted package archive

2011-07-10 Thread Ubuntu QA's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that there was an error on your system when
trying to install a particular package.  Please execute the following
command, as it will clear your package cache, in a terminal:

sudo apt-get clean

Then try performing the update again.  This will likely resolve your
issue, but the failure could be caused by filesystem or memory
corruption.  So please also run a fsck on your filesystem(s) and a
memory test.  If this does resolve your bug please set its status to
Invalid.  Thanks in advance!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: corrupted-package

** Changed in: libsidplay (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/808235

Title:
  package libsidplay1 (not installed) failed to install/upgrade:
  ErrorMessage: corrupted filesystem tarfile - corrupted package archive

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

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


[Bug 808234] Re: package libavcodec-extra-52 (not installed) failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-07-10 Thread Ubuntu QA's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that there was an error on your system when
trying to install a particular package.  Please execute the following
command, as it will clear your package cache, in a terminal:

sudo apt-get clean

Then try performing the update again.  This will likely resolve your
issue, but the failure could be caused by filesystem or memory
corruption.  So please also run a fsck on your filesystem(s) and a
memory test.  If this does resolve your bug please set its status to
Invalid.  Thanks in advance!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: short-read

** Changed in: libav-extra (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/808234

Title:
  package libavcodec-extra-52 (not installed) failed to install/upgrade:
  subprocess dpkg-deb --fsys-tarfile returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav-extra/+bug/808234/+subscriptions

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


[Bug 668926] Re: can't resolve domain names starting with a dash

2011-07-10 Thread Fabio Marconi
That isn't a regular site.

http://tools.ietf.org/html/rfc952

The first character must be an alpha character.  The last character must not be
   a minus sign or period. 

mean that the first character has to be an alphabetical, and not alphanumerical.
If we have rules, we have to follow it, we are professional.
I close this report as Invalid
Thanks
Fabio

** Changed in: ubuntu
   Status: Confirmed = Invalid

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

Title:
  can't resolve domain names starting with a dash (minus sign)

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

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


[Bug 668926] Re: can't resolve domain names starting with a dash (minus sign)

2011-07-10 Thread Fabio Marconi
** Summary changed:

- can't resolve domain names starting with a dash
+ can't resolve domain names starting with a dash (minus sign)

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

Title:
  can't resolve domain names starting with a dash (minus sign)

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

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


[Bug 808258] [NEW] plugin-container consumes a lot of CPU

2011-07-10 Thread Jose Ramon Huerga
Public bug reported:

Having Firefox open with a dozen tabs is painful for the CPU, specially
when some of the tabs contain Facebook, Yammer, etc. Using 'top' you can
easily see that most of the CPU is wasted by firefox-bin and also by
plugin-container. On a laptop this implies that the batteries run out of
energy earlier.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: firefox 5.0+build1+nobinonly-0ubuntu0.11.04.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sun Jul 10 10:08:57 2011
ExecutablePath: /usr/lib/firefox-5.0/plugin-container
FirefoxPackages:
 firefox 5.0+build1+nobinonly-0ubuntu0.11.04.2
 flashplugin-installer 10.3.181.26ubuntu0.11.04.1
 adobe-flashplugin N/A
 icedtea-plugin 1.1~20110420-0ubuntu1.1
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANGUAGE=es_ES:en
 LANG=es_ES.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox
UpgradeStatus: Upgraded to natty on 2011-06-18 (21 days ago)

** Affects: firefox (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/808258

Title:
  plugin-container consumes a lot of CPU

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

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


[Bug 808258] Re: plugin-container consumes a lot of CPU

2011-07-10 Thread Jose Ramon Huerga
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808258

Title:
  plugin-container consumes a lot of CPU

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

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


[Bug 808259] [NEW] package gnome-accessibility-themes-extras (not installed) failed to install/upgrade: próba nadpisania /usr/share/themes/LowContrast/index.theme, który istnieje także w pakiecie gn

2011-07-10 Thread Robert Stryjski
Public bug reported:

installation problem

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: gnome-accessibility-themes-extras (not installed)
ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
Uname: Linux 2.6.38-10-generic i686
AptOrdering:
 gnome-accessibility-themes-extras: Install
 gnome-accessibility-themes-extras: Configure
Architecture: i386
Date: Sun Jul 10 10:17:55 2011
DpkgTerminalLog:
 Rozpakowanie gnome-accessibility-themes-extras (z 
.../gnome-accessibility-themes-extras_2.32.1-0ubuntu1_all.deb) ...
 dpkg: błąd przetwarzania 
/var/cache/apt/archives/gnome-accessibility-themes-extras_2.32.1-0ubuntu1_all.deb
 (--unpack):
  próba nadpisania /usr/share/themes/LowContrast/index.theme, który istnieje 
także w pakiecie gnome-themes-standard 2.91.93-1
ErrorMessage: próba nadpisania /usr/share/themes/LowContrast/index.theme, 
który istnieje także w pakiecie gnome-themes-standard 2.91.93-1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
SourcePackage: gnome-themes
Title: package gnome-accessibility-themes-extras (not installed) failed to 
install/upgrade: próba nadpisania /usr/share/themes/LowContrast/index.theme, 
który istnieje także w pakiecie gnome-themes-standard 2.91.93-1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-themes (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package 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/808259

Title:
  package gnome-accessibility-themes-extras (not installed) failed to
  install/upgrade: próba nadpisania
  /usr/share/themes/LowContrast/index.theme, który istnieje także w
  pakiecie gnome-themes-standard 2.91.93-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-themes/+bug/808259/+subscriptions

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

[Bug 808259] Re: package gnome-accessibility-themes-extras (not installed) failed to install/upgrade: próba nadpisania /usr/share/themes/LowContrast/index.theme, który istnieje także w pakiecie gnom

2011-07-10 Thread Robert Stryjski
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808259

Title:
  package gnome-accessibility-themes-extras (not installed) failed to
  install/upgrade: próba nadpisania
  /usr/share/themes/LowContrast/index.theme, który istnieje także w
  pakiecie gnome-themes-standard 2.91.93-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-themes/+bug/808259/+subscriptions

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

Re: [Bug 676854] users groups clicked from gnome-control-center hangs forever

2011-07-10 Thread Sergei Vorobyov
Hi, Pedro!

I checked it on the i386 Ubuntu 11.04 adding/deleting 6 users, and it
worked fine.
Will now check on the 64 bit version.

Regards,
Sergei

sergei@nash:~$  lsb_release -rd
Description:Ubuntu 11.04
Release:11.04
sergei@nash:~$ apt-cache policy gnome-control-center
gnome-control-center:
  Installed: 1:2.32.1-0ubuntu15
  Candidate: 1:2.32.1-0ubuntu15
  Version table:
 *** 1:2.32.1-0ubuntu15 0
500 http://archive.ubuntu.com/ubuntu/ natty/main i386 Packages
100 /var/lib/dpkg/status
sergei@nash:~$ uname -a
Linux nash 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC
2011 i686 i686 i386 GNU/Linux


On Fri, Jul 8, 2011 at 9:05 PM, Pedro Villavicencio pe...@ubuntu.com wrote:
 Thanks for the report, it has been some time without any response or
 feedback in this bug report and we are wondering if this is still an
 issue for you with the latest release of Ubuntu the Natty Narwhal, May
 you please test with that version and comment back if you're still
 having or not the issue? Please have a look at
 http://www.ubuntu.com/download to know how to install that version.
 Thanks in advance and sorry for the late response.

 ** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided = Low

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

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/676854

 Title:
  users  groups clicked from gnome-control-center hangs forever

 Status in “gnome-control-center” package in Ubuntu:
  Incomplete

 Bug description:
  Binary package hint: gnome-control-center

  1.

  root@tp:~# lsb_release -rd
  Description:  Ubuntu 10.10
  Release:      10.10

  2.

  root@tp:~# apt-cache policy gnome-control-center
  gnome-control-center:
    Installed: 1:2.32.0-0ubuntu2
    Candidate: 1:2.32.0-0ubuntu2
    Version table:
   *** 1:2.32.0-0ubuntu2 0
          500 http://archive.ubuntu.com/ubuntu/ maverick/main amd64 Packages
          100 /var/lib/dpkg/status

  3.

  Expected to add a user

  4.

  The pop-up window User Settings appeared but stayed gray
  (inaccessible) and hanged forever, cannot be killed, even stayed when
  I quit gnome-control-center. The same repeated even after full update
  of the system (new kernel) and reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: gnome-control-center 1:2.32.0-0ubuntu2
  ProcVersionSignature: Ubuntu 2.6.35-23.40-server 2.6.35.7
  Uname: Linux 2.6.35-23-server x86_64
  Architecture: amd64
  Date: Thu Nov 18 07:50:10 2010
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: gnome-control-center

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions


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

Title:
  users  groups clicked from gnome-control-center hangs forever

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions

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

[Bug 535491] Re: Screensaver blocks Fn+F4 to suspend

2011-07-10 Thread Albertas Agejevas
Yes, neither power management nor volume control buttons work when the
screensaver is active in Ubuntu Natty.

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

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

Title:
  Screensaver blocks Fn+F4 to suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-screensaver/+bug/535491/+subscriptions

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


[Bug 808262] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:221: poll_for_event: Assertion `(((long) (event_sequence) - (long) (dpy-request)) = 0)' failed.

2011-07-10 Thread Greg Faith
** 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/808262

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:221: poll_for_event: Assertion `(((long)
  (event_sequence) - (long) (dpy-request)) = 0)' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/808262/+subscriptions

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


[Bug 808261] [NEW] package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade: nvidia-current kernel module failed to build

2011-07-10 Thread Amir Adar
Public bug reported:

I tried installing a new kernel for Ubuntu, and on the Ubuntu forums someone 
recommended me to download kernel 3.0.0 rc6.
When I installed the second part of the kernel according to this article: 
http://ubuntuguide.net/how-to-install-linux-kernel-3-0-rc2-in-ubuntu-11-04-natty-narwhal
 the error popped up after the installation and since then it's just there. I'm 
unable to install the kernel.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: nvidia-current 270.41.06-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
Uname: Linux 2.6.38-10-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Sun Jul 10 11:23:22 2011
DistUpgraded: Fresh install
DistroCodename: natty
DistroVariant: ubuntu
ErrorMessage: nvidia-current kernel module failed to build
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
PackageVersion: 270.41.06-0ubuntu1
SourcePackage: nvidia-graphics-drivers
Title: package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade: 
nvidia-current kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)
version.compiz: compiz 1:0.9.4+bzr20110606-0ubuntu1~natty2
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

** Affects: nvidia-graphics-drivers (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty needs-reassignment regression-update ubuntu

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

Title:
  package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade:
  nvidia-current kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/808261/+subscriptions

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


[Bug 808261] Re: package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade: nvidia-current kernel module failed to build

2011-07-10 Thread Amir Adar
** Description changed:

  I tried installing a new kernel for Ubuntu, and on the Ubuntu forums someone 
recommended me to download kernel 3.0.0 rc6.
- When I installed the second part of the kernel according to this article: 
http://ubuntuguide.net/how-to-install-linux-kernel-3-0-rc2-in-ubuntu-11-04-natty-narwhal
 the error poped up after the installation and since then it's just there. I'm 
unable to install the kernel.
+ When I installed the second part of the kernel according to this article: 
http://ubuntuguide.net/how-to-install-linux-kernel-3-0-rc2-in-ubuntu-11-04-natty-narwhal
 the error popped up after the installation and since then it's just there. I'm 
unable to install the kernel.
  
  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: nvidia-current 270.41.06-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Sun Jul 10 11:23:22 2011
  DistUpgraded: Fresh install
  DistroCodename: natty
  DistroVariant: ubuntu
  ErrorMessage: nvidia-current kernel module failed to build
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageVersion: 270.41.06-0ubuntu1
  SourcePackage: nvidia-graphics-drivers
  Title: package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade: 
nvidia-current kernel module failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)
  version.compiz: compiz 1:0.9.4+bzr20110606-0ubuntu1~natty2
  version.libdrm2: libdrm2 2.4.23-1ubuntu6
  version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
  version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

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

Title:
  package nvidia-current 270.41.06-0ubuntu1 failed to install/upgrade:
  nvidia-current kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/808261/+subscriptions

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


[Bug 783993] Re: unity freezing periodicly

2011-07-10 Thread Fabio Marconi
From Xorg.log.old:
[ 29814.991] (EE) intel(0): Couldn't create pixmap for fbcon

From Kern.log.1:
Jul  2 14:01:00 pern kernel: [29763.670355] [drm:drm_mode_getfb] *ERROR* 
invalid framebuffer id
Jul  2 14:01:52 pern kernel: [29814.991142] [drm:drm_mode_getfb] *ERROR* 
invalid framebuffer id

** Summary changed:

- unity freezing periodicly
+ unity freezing periodicly [drm:drm_mode_getfb] *ERROR* invalid framebuffer id

** Changed in: unity (Ubuntu)
   Status: Incomplete = Invalid

** Changed in: unity
   Status: Incomplete = Invalid

** Also affects: xserver-xorg-video-intel
   Importance: Undecided
   Status: New

** Also affects: linux
   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/783993

Title:
  unity freezing periodicly [drm:drm_mode_getfb] *ERROR* invalid
  framebuffer id

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/783993/+subscriptions

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


Re: [Bug 776439] Re: package bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 3

2011-07-10 Thread bahrar
yes wifi worked on samsung rf510 thinks

2011/7/5 Brian Salzman 776...@bugs.launchpad.net

 @MadMax

 ~$ sudo apt-get --reinstall install bcmwl-kernel-source

 After a reboot, WiFi worked perfectly on Dell E6500

 --
 You received this bug notification because you are subscribed to a
 duplicate bug report (773680).
 https://bugs.launchpad.net/bugs/776439

 Title:
  package bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3 failed to
  install/upgrade: subprocess installed pre-removal script returned
  error exit status 3

 Status in “bcmwl” package in Ubuntu:
  Fix Released
 Status in “bcmwl” source package in Natty:
  In Progress

 Bug description:
  SRU information for this bug:

  Rationale
  The pre-removal script assumes that there are instances of the bcmwl
 module installed in the dkms tree prior to removal. In most cases this would
 be true, but there are instances, such as in this bug, where the bcmwl
 module is not in the tree, likely due to something the user has done. This
 stable update checks to make sure there are instances of the module to
 remove before actually doing so, making sure the package is removable in all
 circumstances.

  Impact
  This bug is likely to affect a low number of users, but does guard against
 further breakage should something on a user's system break in the meantime.

  Regression potential
  The regression potential is low to none, given that an extra check is
 added.

  How to reproduce (can be done on any system, even one without broadcom
 wireless hardware)
  1. Install the bcmwl-kernel-source package.
  2. Remove the module from the dkms tree using sudo dkms remove -m bcmwl
 -v 5.100.82.38+bdcom --all
  3. Remove the bcmwl-kernel-source package.

  You should get the error that the original bug reporter described.

  Once the updated package is installed, you should be able to follow
  the above steps and receive no error.

  Original bug report follows:

  trying to uninstall bcmwl-kernel-source with apt-get remove

  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  The following packages will be REMOVED:
bcmwl-kernel-source
  0 upgraded, 0 newly installed, 1 to remove and 4 not upgraded.
  After this operation, 3,367 kB disk space will be freed.
  Do you want to continue [Y/n]?
  (Reading database ... 163429 files and directories currently installed.)
  Removing bcmwl-kernel-source ...
  Removing all DKMS Modules

  Error! There are no instances of module: bcmwl
  5.100.82.38+bdcom located in the DKMS tree.
  dpkg: error processing bcmwl-kernel-source (--remove):
   subprocess installed pre-removal script returned error exit status 3
  Errors were encountered while processing:
   bcmwl-kernel-source
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: nvidia
  AptOrdering: bcmwl-kernel-source: Remove
  Architecture: i386
  Date: Tue May  3 10:46:33 2011
  ErrorMessage: subprocess installed pre-removal script returned error exit
 status 3
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386
 (20110427.1)
  SourcePackage: bcmwl
  Title: package bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3 failed to
 install/upgrade: subprocess installed pre-removal script returned error exit
 status 3
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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

Title:
  package bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3 failed to
  install/upgrade: subprocess installed pre-removal script returned
  error exit status 3

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

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

[Bug 513523] Re: [i965] 64 bit Webots simulator freezes system with Intel GM965

2011-07-10 Thread Fabio Marconi
** Changed in: linux (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/513523

Title:
  [i965] 64 bit Webots simulator freezes system with Intel GM965

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

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


[Bug 783993] Re: unity freezing periodicly [drm:drm_mode_getfb] *ERROR* invalid framebuffer id

2011-07-10 Thread Fabio Marconi
Hello
Please install the new version of module-init-tools clicking on the follwing 
link and choosing the nearest mirror, when downloaded, double click on it to 
install:
1- http://packages.ubuntu.com/es/oneiric/i386/module-init-tools/download

Then install the newest mainline kernel clicking on the following links:

2- http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.0-rc6-oneiric/linux-
headers-3.0.0-0300rc6_3.0.0-0300rc6.201107050905_all.deb

3- http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.0-rc6-oneiric/linux-
headers-3.0.0-0300rc6-generic_3.0.0-0300rc6.201107050905_i386.deb

4- http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.0-rc6-oneiric/linux-
image-3.0.0-0300rc6-generic_3.0.0-0300rc6.201107050905_i386.deb

And please refere if the issue still present. 
Thanks
Fabio

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

Title:
  unity freezing periodicly [drm:drm_mode_getfb] *ERROR* invalid
  framebuffer id

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/783993/+subscriptions

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


Re: [Bug 676854] users groups clicked from gnome-control-center hangs forever

2011-07-10 Thread Sergei Vorobyov
Hola, Pedro!

It now works for amd64 as well, at least for adding/deleting 5-6 users.

Thanks,
Sergei

sergei@tp:~/Downloads$ uname -a
Linux tp 2.6.38-10-server #46-Ubuntu SMP Tue Jun 28 16:31:00 UTC 2011
x86_64 x86_64 x86_64 GNU/Linux
sergei@tp:~/Downloads$ lsb_release -rd
Description:Ubuntu 11.04
Release:11.04
sergei@tp:~/Downloads$ apt-cache policy gnome-control-center
gnome-control-center:
  Installed: 1:2.32.1-0ubuntu15
  Candidate: 1:2.32.1-0ubuntu15
  Version table:
 *** 1:2.32.1-0ubuntu15 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages
100 /var/lib/dpkg/status
sergei@tp:~/Downloads$


On Sun, Jul 10, 2011 at 10:24 AM, Sergei Vorobyov svorob...@gmail.com wrote:
 Hi, Pedro!

 I checked it on the i386 Ubuntu 11.04 adding/deleting 6 users, and it
 worked fine.
 Will now check on the 64 bit version.

 Regards,
 Sergei

 sergei@nash:~$  lsb_release -rd
 Description:    Ubuntu 11.04
 Release:        11.04
 sergei@nash:~$ apt-cache policy gnome-control-center
 gnome-control-center:
  Installed: 1:2.32.1-0ubuntu15
  Candidate: 1:2.32.1-0ubuntu15
  Version table:
  *** 1:2.32.1-0ubuntu15 0
        500 http://archive.ubuntu.com/ubuntu/ natty/main i386 Packages
        100 /var/lib/dpkg/status
 sergei@nash:~$ uname -a
 Linux nash 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC
 2011 i686 i686 i386 GNU/Linux


 On Fri, Jul 8, 2011 at 9:05 PM, Pedro Villavicencio pe...@ubuntu.com wrote:
 Thanks for the report, it has been some time without any response or
 feedback in this bug report and we are wondering if this is still an
 issue for you with the latest release of Ubuntu the Natty Narwhal, May
 you please test with that version and comment back if you're still
 having or not the issue? Please have a look at
 http://www.ubuntu.com/download to know how to install that version.
 Thanks in advance and sorry for the late response.

 ** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided = Low

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

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/676854

 Title:
  users  groups clicked from gnome-control-center hangs forever

 Status in “gnome-control-center” package in Ubuntu:
  Incomplete

 Bug description:
  Binary package hint: gnome-control-center

  1.

  root@tp:~# lsb_release -rd
  Description:  Ubuntu 10.10
  Release:      10.10

  2.

  root@tp:~# apt-cache policy gnome-control-center
  gnome-control-center:
    Installed: 1:2.32.0-0ubuntu2
    Candidate: 1:2.32.0-0ubuntu2
    Version table:
   *** 1:2.32.0-0ubuntu2 0
          500 http://archive.ubuntu.com/ubuntu/ maverick/main amd64 Packages
          100 /var/lib/dpkg/status

  3.

  Expected to add a user

  4.

  The pop-up window User Settings appeared but stayed gray
  (inaccessible) and hanged forever, cannot be killed, even stayed when
  I quit gnome-control-center. The same repeated even after full update
  of the system (new kernel) and reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: gnome-control-center 1:2.32.0-0ubuntu2
  ProcVersionSignature: Ubuntu 2.6.35-23.40-server 2.6.35.7
  Uname: Linux 2.6.35-23-server x86_64
  Architecture: amd64
  Date: Thu Nov 18 07:50:10 2010
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: gnome-control-center

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions



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

Title:
  users  groups clicked from gnome-control-center hangs forever

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions

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

[Bug 808269] [NEW] Sync jalv 0~svn3409-1 (universe) from Debian unstable (main)

2011-07-10 Thread Alessio Treglia
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu
 status confirmed
 importance wishlist
 subscribe ubuntu-archive
 done

Please sync jalv 0~svn3409-1 (universe) from Debian unstable (main)

All changelog entries:

jalv (0~svn3409-1) unstable; urgency=low

  * New upstream release:
- Build Jalv in top-level build.
- Send control output port updates to UIs (commonly used for metering).
- Add a real URI map implementation.
- Remove unnecessary configure checks for glib and gthread.
- Support control changes from UI.
- Implement instance-access extension (support IR.lv2 UI).

 -- Alessio Treglia ales...@debian.org  Mon, 20 Jun 2011 14:15:39
+0200

jalv (0~svn3395-1) unstable; urgency=low

  * Initial release. (Closes: #630391)

 -- Alessio Treglia ales...@debian.org  Tue, 14 Jun 2011 10:10:23 +0200
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk4ZZYMACgkQRdSMfNz8P9AQWwCfWJ3u0GX4YLtlYUbFmQXN3Atj
iOMAnj67Kq0KR/VZKM8fU/rRnKrD6abg
=S+kl
-END PGP SIGNATURE-

** Affects: ubuntu
 Importance: Wishlist
 Status: Confirmed

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

Title:
  Sync jalv 0~svn3409-1 (universe) from Debian unstable (main)

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

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


[Bug 808268] [NEW] Sync jack-stdio 1.4-1 (universe) from Debian unstable (main)

2011-07-10 Thread Alessio Treglia
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu
 status confirmed
 importance wishlist
 subscribe ubuntu-archive
 done

Please sync jack-stdio 1.4-1 (universe) from Debian unstable (main)

All changelog entries:

jack-stdio (1.4-1) unstable; urgency=low

  * New upstream release.
  * Drop patches, applied upstream.

 -- Alessio Treglia ales...@debian.org  Wed, 08 Jun 2011 12:19:38
+0200

jack-stdio (1.3+20110408.git709becb-1) unstable; urgency=low

  * Initial release (Closes: #627776).

 -- Alessio Treglia ales...@debian.org  Tue, 07 Jun 2011 15:23:05 +0200
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk4ZZW4ACgkQRdSMfNz8P9CungCggFw5B+vYuIpT9eMj8+R6Miw3
yxYAnAr3VuhJFj23qRdVRUS6e1m4nShH
=9EV1
-END PGP SIGNATURE-

** Affects: ubuntu
 Importance: Wishlist
 Status: Confirmed

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

Title:
  Sync jack-stdio 1.4-1 (universe) from Debian unstable (main)

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

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


[Bug 808264] [NEW] Sync ecasound 2.8.1-1 (universe) from Debian unstable (main)

2011-07-10 Thread Alessio Treglia
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu
 status confirmed
 importance wishlist
 subscribe ubuntu-archive
 done

Please sync ecasound 2.8.1-1 (universe) from Debian unstable (main)

All changelog entries:

ecasound (2.8.1-1) unstable; urgency=low

  [ Alessio Treglia ]
  * New upstream release.
  * Disable alsa on non-linux archs.

  [ Alessandro Ghedini ]
  * Remove libecasound23, libecasound-dev and libecasound2.2-dev packages
- Drop build-shared-libecasound patch
  * Drop handle_estrpipe patch (merged upstream)
  * Fix libkvutils4 section (libs, not libedevel)

 -- Alessandro Ghedini al3x...@gmail.com  Tue, 24 May 2011 16:27:44
+0200

ecasound (2.8.0-4) unstable; urgency=low

  * Remove symbols files.

 -- Alessio Treglia ales...@debian.org  Sat, 21 May 2011 10:19:35
+0200

ecasound (2.8.0-3) unstable; urgency=low

  * Set proper Replaces/Breaks fields on ecasound-doc.

 -- Alessio Treglia ales...@debian.org  Fri, 20 May 2011 10:51:30
+0200

ecasound (2.8.0-2) unstable; urgency=low

  [ Alessandro Ghedini ]
  * Add *.symbols for powerpc and sparc architectures (Closes: #627193).

  [ Alessio Treglia ]
  * 0006-handle_estrpipe.patch:
- ESTRPIPE is not defined on kfreebsd, get around FTBFS on those
  architectures (Closes: #627192).
  * 1001-disable_python_tests.patch:
- Disable python tests for now (Closes: #627191) since the Python module
  isn't able to detect the ecasound executable's version; it might
  be related to the terminal emulator as ecasound prints colored
  characters.
  * Add -DOC arch-indep package.
- Build documentation only when Build-Depends-Indep are met.
  * Move ghostscript,hevea to Build-Depends-Indep.
  * Add myself as primary uploader (as-per-spec).

 -- Alessio Treglia ales...@debian.org  Wed, 18 May 2011 22:29:47
+0200

ecasound (2.8.0-1) unstable; urgency=low

  [ Alessandro Ghedini ]
  * New upstream release
  * Fix documentation building/installation
- Remove doxygen and yodl from Build-Depends (not needed anymore)
- Build-Depends on ghostscript (needed for building *.pdf files)
  * New maintainer. (Closes: #520271)
  * Build-Depends on libjack-dev (Closes: #527407)
  * Install upstream changelog (NEWS) with dh_installchangelogs
not dh_installdocs
  * Switch to short-form dh
  * Drop libecasound7 package's files (package no more built)
  * Replace *.dirs with *.install and *.manpages, drop useless files
  * Bump debhelper compat level to 7
  * Fix debhelper dependencies
- Add ${misc:Depends} to binary packages Depends
- Add debhelper to Build-Depends
  * Maintainer is Debian Multimedia maintainers, add myself to Uploaders
  * Update Vcs-* fields, add Homepage field
  * Update binary packages descriptions
  * Drop old Provides and Conflicts (listed packages no more in the archive)
  * Fix packages sections
  * Remove self-Provides
  * Bump Standards-Version to 3.9.2 (no changes needed)
  * Add debian/clean for pyecasound/pyeca.pyc and
pyecasound/ecacontrol.pyc files
  * Preserve file ecasound.spec on clean
  * Add fix-manpages-errors patch
  * Add build-shared-libecasound patch
  * Add libecasound23 package
  * Add build-shared-libecasoundc patch
  * Add libecasoundc1 package
  * Add build-shared-libkvutils patch
  * Add libkvutils4 package
  * Remove python-central Build-Depends (dh_python2 is used)
  * Do not compile pyecasound cext (not installed anyway)
  * Add transitional dummy packages for the old libecasound2.2-dev,
libecasoundc2.2-dev, libkvutils2.2-dev and python-ecasound2.2
  * Move ecatools to standalone package to avoid circular dependency

  [ Joel Roth ]
  * Update debian/copyright
- Unobfuscate email addresses
  * Add 'nama' to Suggests
  * Rename binary packages removing 2.2 suffix
  * Rename Source package, ecasound2.2 - ecasound
  * Build-Depends: add headers for liboil, liblo (OSC) and libaRts support
  * override_dh_fixperms for *.py and *.rb libraries
  * Clarify that largefile support option applies to 32-bit systems
  * Update debian/copyright

  [ IOhannes m zmölnig ]
  * Fixed ecasound.1 manpage
  * One line per dependency for better readability

  [ Alessio Treglia ]
  * Use dh_python2 rather than pysupport.
  * Remove trailing command from the Depends field.
  * Adopt one-dep-per-line style.
  * Fix DH's syntax, otherwise the python2 add-on will be skipped.
  * Enable parallel builds.
  * When moving files, it's better to use Breaks+Replaces versioned fields.
  * Drop arts support.
  * Update symbols.

 -- Alessandro Ghedini al3x...@gmail.com  Thu, 12 May 2011 17:58:03
+0200

ecasound2.2 (2.7.0-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Change dependency on emacs flavours to emacsen; preserv emacs23 as a
non-virtual alternative dependency (Closes: #562039)

 -- Stefano Zacchiroli z...@debian.org  Fri, 12 Mar 2010 11:19:50
+0100

ecasound2.2 (2.7.0-1) unstable; urgency=low

  * New upstream release.
  * Depend on 

[Bug 808263] [NEW] Sync dino 0.2.8-2 (universe) from Debian unstable (main)

2011-07-10 Thread Alessio Treglia
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu
 status confirmed
 importance wishlist
 subscribe ubuntu-archive
 done

Please sync dino 0.2.8-2 (universe) from Debian unstable (main)

All changelog entries:

dino (0.2.8-2) unstable; urgency=low

  * Disable -Werror to avoid build failures with GCC4.6.

 -- Alessio Treglia ales...@debian.org  Wed, 08 Jun 2011 13:00:07
+0200

dino (0.2.8-1) unstable; urgency=low

  * Initial release. (Closes: #629584)

 -- Alessio Treglia ales...@debian.org  Tue, 07 Jun 2011 23:05:51 +0200
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk4ZZO4ACgkQRdSMfNz8P9ArggCfWlf8oAMmBh+gd2hUEnyDiFxd
nQIAnj0e6bHvhLeI3AbKsW59WgAp+qtA
=3i3k
-END PGP SIGNATURE-

** Affects: ubuntu
 Importance: Wishlist
 Status: Confirmed

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

Title:
  Sync dino 0.2.8-2 (universe) from Debian unstable (main)

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

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


Re: [Bug 676854] users groups clicked from gnome-control-center hangs forever

2011-07-10 Thread Sergei Vorobyov
however, it reports a lot of warnings:

sergei@tp:~/Downloads$
** (gnome-control-center:3388): WARNING **:
error raised: [libslab_get_gconf_value: error getting
/desktop/gnome/applications/main-menu/lock-down/user_modifiable_apps]


** (gnome-control-center:3388): WARNING **:
error raised: [load_xbel_store: couldn't load bookmark file [NULL]
]


** (gnome-control-center:3388): WARNING **: get_actions_list() -
PROBLEM - Can't load gtk-theme-selector.desktop


** (gnome-control-center:3388): WARNING **: get_actions_list() -
PROBLEM - Can't load gnome-cups-manager.desktop


(users-admin:3394): GLib-GObject-CRITICAL **: g_object_unref:
assertion `G_IS_OBJECT (object)' failed

(users-admin:3394): GLib-GObject-CRITICAL **: g_object_unref:
assertion `G_IS_OBJECT (object)' failed

(users-admin:3394): GLib-GObject-CRITICAL **: g_object_unref:
assertion `G_IS_OBJECT (object)' failed

(users-admin:3394): GLib-GObject-CRITICAL **: g_object_unref:
assertion `G_IS_OBJECT (object)' failed

(users-admin:3394): GLib-GObject-CRITICAL **: g_object_unref:
assertion `G_IS_OBJECT (object)' failed


On Sun, Jul 10, 2011 at 10:24 AM, Sergei Vorobyov svorob...@gmail.com wrote:
 Hi, Pedro!

 I checked it on the i386 Ubuntu 11.04 adding/deleting 6 users, and it
 worked fine.
 Will now check on the 64 bit version.

 Regards,
 Sergei

 sergei@nash:~$  lsb_release -rd
 Description:    Ubuntu 11.04
 Release:        11.04
 sergei@nash:~$ apt-cache policy gnome-control-center
 gnome-control-center:
  Installed: 1:2.32.1-0ubuntu15
  Candidate: 1:2.32.1-0ubuntu15
  Version table:
  *** 1:2.32.1-0ubuntu15 0
        500 http://archive.ubuntu.com/ubuntu/ natty/main i386 Packages
        100 /var/lib/dpkg/status
 sergei@nash:~$ uname -a
 Linux nash 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC
 2011 i686 i686 i386 GNU/Linux


 On Fri, Jul 8, 2011 at 9:05 PM, Pedro Villavicencio pe...@ubuntu.com wrote:
 Thanks for the report, it has been some time without any response or
 feedback in this bug report and we are wondering if this is still an
 issue for you with the latest release of Ubuntu the Natty Narwhal, May
 you please test with that version and comment back if you're still
 having or not the issue? Please have a look at
 http://www.ubuntu.com/download to know how to install that version.
 Thanks in advance and sorry for the late response.

 ** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided = Low

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

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/676854

 Title:
  users  groups clicked from gnome-control-center hangs forever

 Status in “gnome-control-center” package in Ubuntu:
  Incomplete

 Bug description:
  Binary package hint: gnome-control-center

  1.

  root@tp:~# lsb_release -rd
  Description:  Ubuntu 10.10
  Release:      10.10

  2.

  root@tp:~# apt-cache policy gnome-control-center
  gnome-control-center:
    Installed: 1:2.32.0-0ubuntu2
    Candidate: 1:2.32.0-0ubuntu2
    Version table:
   *** 1:2.32.0-0ubuntu2 0
          500 http://archive.ubuntu.com/ubuntu/ maverick/main amd64 Packages
          100 /var/lib/dpkg/status

  3.

  Expected to add a user

  4.

  The pop-up window User Settings appeared but stayed gray
  (inaccessible) and hanged forever, cannot be killed, even stayed when
  I quit gnome-control-center. The same repeated even after full update
  of the system (new kernel) and reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: gnome-control-center 1:2.32.0-0ubuntu2
  ProcVersionSignature: Ubuntu 2.6.35-23.40-server 2.6.35.7
  Uname: Linux 2.6.35-23-server x86_64
  Architecture: amd64
  Date: Thu Nov 18 07:50:10 2010
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: gnome-control-center

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions



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

Title:
  users  groups clicked from gnome-control-center hangs forever

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/676854/+subscriptions

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

[Bug 682578] Re: vino-server binds twice to same port (and crashes) on dual screen X11 systems

2011-07-10 Thread rojanu
+1

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

Title:
  vino-server binds twice to same port (and crashes) on dual screen X11
  systems

To manage notifications about this bug go to:
https://bugs.launchpad.net/vino/+bug/682578/+subscriptions

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


[Bug 808267] [NEW] unity auto raise windows broken

2011-07-10 Thread Romano Giannetti
Public bug reported:

Hi,

I noticed that one of the recent upgrades of unity (I am not sure which)
broke windows auto-raising. I have focus-follow-mouse set, and it works,
but then I have auto-raise set, with a one second delay, and it does
nothing.

I tried to change to click-to-focus and back, but without success.

(0)romano-asus:~/www/RGTTI/wpstuff% wajig status unity
Package Installed   PreviousNow State
===-===-===-===-=
unity   3.8.16-0ubuntu1~natty1  3.8.16-0ubuntu1~natty1  
3.8.16-0ubuntu1~natty1  install

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

Title:
  unity auto raise windows broken

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

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


[Bug 808273] [NEW] package prelude-lml 0.9.15-1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2011-07-10 Thread Creve
Public bug reported:

En français SVP

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: prelude-lml 0.9.15-1
ProcVersionSignature: Ubuntu 2.6.32-32.62-generic 2.6.32.38+drm33.16
Uname: Linux 2.6.32-32-generic x86_64
Architecture: amd64
Date: Sun Jul 10 10:45:39 2011
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release Candidate amd64 
(20091020)
SourcePackage: prelude-lml
Title: package prelude-lml 0.9.15-1 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1

** Affects: prelude-lml (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/808273

Title:
  package prelude-lml 0.9.15-1 failed to install/upgrade: le sous-
  processus script post-installation installé a retourné une erreur de
  sortie d'état 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/prelude-lml/+bug/808273/+subscriptions

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

[Bug 808273] Re: package prelude-lml 0.9.15-1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2011-07-10 Thread Creve
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808273

Title:
  package prelude-lml 0.9.15-1 failed to install/upgrade: le sous-
  processus script post-installation installé a retourné une erreur de
  sortie d'état 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/prelude-lml/+bug/808273/+subscriptions

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

[Bug 808272] [NEW] Shotwell doesn't find input file(s)

2011-07-10 Thread Thomas Schweikle
Public bug reported:

Double clicking a sony a700 photo file (*.AWR) shotwell starts, then
prints Photo file not found: /home/tps/Bilder/2011/0611 -
Taubensteinhaus/RAW/DSC04451.ARW

given the path and file, calling ls (quoting because of spaces within the 
filename):
~$ ll '/home/tps/Bilder/2011/0611 - Taubensteinhaus/RAW/DSC04451.ARW'
-rw-r--r-- 1 tps tps 13M Jun 12 08:55 /home/tps/Bilder/2011/0611 - 
Taubensteinhaus/RAW/DSC04451.ARW

Same for some other formats. jpg, png, tiff among others are displayed
without this error message.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: shotwell 0.9.3-0ubuntu0.1
Uname: Linux 2.6.39.2 x86_64
Architecture: amd64
Date: Sun Jul 10 10:38:13 2011
ProcEnviron:
 LANGUAGE=de_DE:en
 PATH=(custom, user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: shotwell
UpgradeStatus: Upgraded to natty on 2011-05-21 (50 days ago)

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


** Tags: amd64 apport-bug natty

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

Title:
  Shotwell doesn't find input file(s)

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

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


[Bug 808272] Re: Shotwell doesn't find input file(s)

2011-07-10 Thread Thomas Schweikle
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808272

Title:
  Shotwell doesn't find input file(s)

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

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


[Bug 806024] Re: Pop up dialogues not visible in full screen mode (linux, gnome)

2011-07-10 Thread Alex Valavanis
** Changed in: inkscape (Ubuntu)
   Status: Incomplete = 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/806024

Title:
  Pop up dialogues not visible in full screen mode (linux, gnome)

To manage notifications about this bug go to:
https://bugs.launchpad.net/inkscape/+bug/806024/+subscriptions

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