[Bug 790129] Re: "Windows overview" does not work with Libre Office

2011-10-26 Thread Osman Demirhan
Hi,

This problem also affetcs me. The vidoe given by Bruno shows the exact
problematic behaviour.

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

Title:
  "Windows overview" does not work with Libre Office

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

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


[Bug 848198] Re: Sporadic gconf error messages

2011-10-26 Thread Chris Halse Rogers
Hello Marc, or anyone else affected,

Accepted gconf into oneiric-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!

** Changed in: gconf (Ubuntu Oneiric)
   Status: Triaged => Fix Committed

** Tags added: verification-needed

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

Title:
  Sporadic gconf error messages

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

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


[Bug 873191] Re: Ubuntu starts with lowest brightness on HP G62[regression]

2011-10-26 Thread Ihorko
As workaround I currently use kernel option acpi_brightness=vendor. Now startup 
brightness is equal to 100% :-)
And if display goes dim after inactivity timeout brightness is not restored and 
stayes 0%. But this problem handles keyboard shortcuts for increasing 
brightness with xbacklight.

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

Title:
  Ubuntu starts with lowest brightness on HP G62[regression]

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

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


RE: [Bug 879025] Re: Ubuntu 11.10 upgrade overwrites MBR

2011-10-26 Thread Roland Vossen
*** This bug is a duplicate of bug 882252 ***
https://bugs.launchpad.net/bugs/882252

Hello Phil,

I do not agree that this bug is a duplicate of bug 882252. The situation
is different: the presence of ClearCrypt / PGP WGE is critical. My
theory is that the installer tries to find other OS'es on the HDD, the
installer will not recognize the encrypted Windows partition, and the
installer will (wrongly) conclude that it is OK to overwrite the MBR.

-Original Message-
From: boun...@canonical.com [mailto:boun...@canonical.com] On Behalf Of Phil V
Sent: woensdag 26 oktober 2011 22:32
To: Roland Vossen
Subject: [Bug 879025] Re: Ubuntu 11.10 upgrade overwrites MBR

*** This bug is a duplicate of bug 882252 ***
https://bugs.launchpad.net/bugs/882252

** This bug is no longer a duplicate of bug 878314
   Update to Oneiric Ocelot destroys Truecrypt Bootloader!
** This bug has been marked a duplicate of bug 882252
   11.10 installer doesn't carry-over bootloader old options

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

Title:
  Ubuntu 11.10 upgrade overwrites MBR

Status in Ubuntu:
  New

Bug description:
  Master Boot Record was overwritten without notifying the user when
  upgrading from Ubuntu 11.04 to 11.10. This lead to loss of PGP Whole
  Disk encryption (located on the MBR), so I cannot access my Windows
  partition anymore.

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

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

Title:
  Ubuntu 11.10 upgrade overwrites MBR

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

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


[Bug 879632] Re: 'quick open' and 'file browser panel' conflict

2011-10-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gedit-plugins (Ubuntu)
   Status: New => Confirmed

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

Title:
  'quick open' and  'file browser panel' conflict

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit-plugins/+bug/879632/+subscriptions

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


[Bug 879632] Re: 'quick open' and 'file browser panel' conflict

2011-10-26 Thread Ryan Murphy
I encountered the same issue and found a decent solution. For anyone
else having the same issue it's easy to patch yourself for now.

First I tried changing the QuickOpen code to use the
bus.send_message_sync function, since the convenience function send_sync
disappeared in this version. I had a create a Message object for that.
But it looks like Filebrowser doesn't us the new Message/MessageBus API
either (based on errors and guessing only) and so that was a dead end.


Finally, I found this function at https://github.com/gmate/gmate. It avoid the 
use of the message bus completely.
def get_filebrowser_root(self):
base = u'org.gnome.gedit.plugins.filebrowser'

settings = Gio.Settings.new(base)
root = settings.get_string('virtual-root')

if root is not None:
filter_mode = settings.get_strv('filter-mode')

if 'hide-hidden' in filter_mode:
self._show_hidden = False
else:
self._show_hidden = True

return root


Then I commented out the failing bus/msg code (all the way from getting the bus 
to using the msg) and replaced it with this. Most of this is from the same 
github repo.
fbroot = self.get_filebrowser_root()
if fbroot != "" and fbroot is not None:
paths.append(Gio.file_new_for_uri(fbroot))

And it worked!

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

Title:
  'quick open' and  'file browser panel' conflict

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit-plugins/+bug/879632/+subscriptions

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


[Bug 880642] Re: gnome-terminal doesn't close menubar for new terminals

2011-10-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  gnome-terminal doesn't close menubar for new terminals

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

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


[Bug 882409] [NEW] iPod touch with iOS 5 won't mount: Unhandled Lockdown error (-15)

2011-10-26 Thread Chris Southcott
Public bug reported:

Hi everyone,
I couldn't find anyone with the exact bug, but please excuse me if it already 
exists.
Usually I plug in my iPod and sync it in VirtualBox and Windows XP.
In Ubuntu 11.10 my iPod touch 3 running iOS 5 (final) plugs in and Ubuntu says: 
"Unhandled Lockdown error (-15)".
This means I cannot use it in VirtualBox or Banshee.
This is a major issue and people who are running only on Ubuntu are now unable 
to manage iPod touch's and, I guess, iPads and iPhones with iOS 5.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  iPod touch with iOS 5 won't mount: Unhandled Lockdown error (-15)

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

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


[Bug 282659] Re: evince print problems for double sided, multiple copies

2011-10-26 Thread Martijn van Brummelen
Evince still fails to print multiple copies on Ubuntu Lucid fully
updated.

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

Title:
  evince print problems for double sided, multiple copies

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

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


[Bug 727620] Re: [Radeon HD 5650 and 5470] Kernel BUG during recovery boot and in normal boot (Hybrid graphics)

2011-10-26 Thread Ihorko
I have not such good experience with Oneiric on my HP G62-a35er. First
of all by default startup brightness is 0% (see bug #873191). The second
is that I tried to turn power on discrete card by adding corresponding
command to /etc/rc.local and once some kernel oops occurred at startup
(now I moved this command to startup with delay 10 seconds because of
some problems with snd_hda_intel too). I can attach part of that fail
log next week because of I have only mobile broadband connection from
time to time on my laptop.

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

Title:
  [Radeon HD 5650 and 5470] Kernel BUG during recovery boot and in
  normal boot (Hybrid graphics)

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

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


[Bug 861741] Re: cron error - code 127

2011-10-26 Thread elzo valugi
** Description changed:

- I get this error by email, daily
+ I get this error by email, daily, when there are no updates. When there
+ are I get a regular email.
  
  /etc/cron.daily/apticron:
  /etc/cron.daily/apticron: 3: 52: not found
  run-parts: /etc/cron.daily/apticron exited with return code 127
  
  this is the cron line
  
  52 1 * * * root test -x /usr/sbin/apticron && /usr/sbin/apticron --cron
  
  Is this an error from my part?
  Thanks

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

Title:
  cron error - code 127

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

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


[Bug 881786] Re: Update to 15.0.874.102/106

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~chromium-team/chromium-browser/chromium-
browser.natty

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

Title:
  Update to 15.0.874.102/106

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/881786/+subscriptions

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


[Bug 882408] Re: displaying sound options freeze playback

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

Title:
  displaying  sound options freeze playback

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

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


[Bug 882408] [NEW] displaying sound options freeze playback

2011-10-26 Thread DarkRedman
Public bug reported:

Hello, I'm using gnome-control-center 1:3.2.1-0ubuntu1 on Ubuntu 11.10

at any moment when I play a sound or a video and then I display the
gnome-control-center with sound options I expected it occurs with no
problems but instead the gnome-control-center freeze and the softwares
as totem and banshee that plays any playback freezes too, the gnome-
control-center finally become stable around thirty seconds after but the
others media applications remains freezed until I close the gnome-
control-center (sound options)

It often happens.

Thank you in advance !

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gnome-control-center 1:3.2.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
Date: Thu Oct 27 08:31:33 2011
ExecutablePath: /usr/bin/gnome-control-center
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_gnome-control-center:
 deja-dup   20.1-0ubuntu0.1
 gnome-bluetooth3.2.0-0ubuntu2
 indicator-datetime 0.3.1-0ubuntu1

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


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  displaying  sound options freeze playback

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

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


[Bug 871667] Re: .Xauthority sometimes owned by root, which blocks login

2011-10-26 Thread Walldorf2000
My start screen also shows Xubuntu. Originally I installed Xubuntu some
years ago (I think it was 6.04). But I use ubuntu-desktop for a long
time. Maybe this is somehow related?

Is anybody affected who never used Xubuntu?

Reply for #23:
Unfortunately I can't test the fix since I already changed ownership.

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

Title:
  .Xauthority sometimes owned by root, which blocks login

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

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


[Bug 879674] Re: [Lenovo Thinkpad T420] SD card reader non-functional

2011-10-26 Thread Florian Burger
This bug does also affect the Thinkpad T420s under Oneiric. The card
reader (express card) is not recognized at all.

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

Title:
  [Lenovo Thinkpad T420] SD card reader non-functional

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

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


[Bug 880227] Re: eog fails to start with: GLib-GIO-CRITICAL **: Timeout was reached

2011-10-26 Thread Christopher
** Description changed:

  Whether clicking on a file in nautilus, started from the GNOME shell, or
  from the command line, eog fails to start at all. Error message in
  terminal is
  
  GLib-GIO-CRITICAL **: Timeout was reached
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: eog 3.2.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-13.21-generic 3.0.6
  Uname: Linux 3.0.0-13-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Sun Oct 23 10:55:20 2011
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Beta i386 (20110921.2)
- SourcePackage: eog
+ SourcePackage:  eog
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  eog fails to start with: GLib-GIO-CRITICAL **: Timeout was reached

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

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


[Bug 880672] Re: Clicking panel should raise maximised window with raise-on-click disabled

2011-10-26 Thread James Pharaoh
** Changed in: unity
 Assignee: (unassigned) => Focus Follows Mouse (focus-follows-mouse)

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) => Focus Follows Mouse (focus-follows-mouse)

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

Title:
  Clicking panel should raise maximised window with raise-on-click
  disabled

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

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


[Bug 864071] Re: pulseaudio crashed with SIGABRT in pa_format_info_from_sample_spec()

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/pulseaudio

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

Title:
  pulseaudio crashed with SIGABRT in pa_format_info_from_sample_spec()

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

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


[Bug 867444] Re: [module-jackdbus-detect] pulseaudio crashed with SIGSEGV in pa_hashmap_free()

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/pulseaudio

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

Title:
  [module-jackdbus-detect] pulseaudio crashed with SIGSEGV in
  pa_hashmap_free()

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

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


[Bug 877954] Re: Oneiric regression: Pulseaudio sometimes forgets to set ALSA volumes

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/pulseaudio

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

Title:
  Oneiric regression: Pulseaudio sometimes forgets to set ALSA volumes

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

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


[Bug 674138] Re: "Global" appmenu breaks sloppy focus

2011-10-26 Thread James Pharaoh
** Changed in: unity
 Assignee: (unassigned) => Focus Follows Mouse (focus-follows-mouse)

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) => Focus Follows Mouse (focus-follows-mouse)

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

Title:
  "Global" appmenu breaks sloppy focus

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

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


[Bug 863399] Re: Unity needs a way to switch (tab) between windows on current workspace

2011-10-26 Thread Jason Smith
Alt-tab switcher now has an option to make it workspace aware as
requested. It will only show applications and windows on the current
viewport when this mode is enabled. This will land in 12.04, however is
in trunk today.

** Changed in: unity
   Status: Opinion => Fix Committed

** Changed in: ayatana-design
   Status: Opinion => Fix Released

** Changed in: unity (Ubuntu)
   Status: Opinion => Fix Committed

** Changed in: unity
 Assignee: (unassigned) => Jason Smith (jassmith)

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) => Jason Smith (jassmith)

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

Title:
  Unity needs a way to switch (tab) between windows on current workspace

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/863399/+subscriptions

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


[Bug 880500] Re: Nautilus offers no feedback for launching applications

2011-10-26 Thread Walter Garcia-Fontes
I can also reproduce it in ubuntu 11.10/ Unity. Can you please complete
the bug report by providing the information about your system?, by
running:

apport-collect 880500

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

** Changed in: nautilus (Ubuntu)
   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/880500

Title:
  Nautilus offers no feedback for launching applications

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

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


[Bug 855402] Re: Python lenses segfault with pygobject3

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/pygobject

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

Title:
  Python lenses segfault with pygobject3

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

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


[Bug 882265] Re: libbotan-1.8.13.so was shipped in libbotan-1.8.2, breaking all reverse-dependencies

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/botan1.8

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

Title:
  libbotan-1.8.13.so was shipped in libbotan-1.8.2, breaking all
  reverse-dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/botan1.8/+bug/882265/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
I've uploaded screenshots using all the available themes on my system.
Radiance also shows problems. Adwaita and the high-contrast ones look
fine (in this particular context, only, I mean)

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
** Attachment added: "ambiance.png"
   
https://bugs.launchpad.net/ubuntu/+source/planner/+bug/694190/+attachment/2574841/+files/ambiance.png

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
** Attachment added: "highcontrastinverse.png"
   
https://bugs.launchpad.net/ubuntu/+source/planner/+bug/694190/+attachment/2574840/+files/highcontrastinverse.png

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
** Attachment added: "highcontrast.png"
   
https://bugs.launchpad.net/ubuntu/+source/planner/+bug/694190/+attachment/2574839/+files/highcontrast.png

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
** Attachment added: "radiance.png"
   
https://bugs.launchpad.net/ubuntu/+source/planner/+bug/694190/+attachment/2574838/+files/radiance.png

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 694190] Re: strange/broken theming on 'edit task properties' in Planner

2011-10-26 Thread John Pye
** Attachment added: "adwaita.png"
   
https://bugs.launchpad.net/ubuntu/+source/planner/+bug/694190/+attachment/2574837/+files/adwaita.png

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

Title:
  strange/broken theming on 'edit task properties' in Planner

To manage notifications about this bug go to:
https://bugs.launchpad.net/light-themes/+bug/694190/+subscriptions

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


[Bug 703807] Re: launchpad sometimes serves download files as content-type text/html

2011-10-26 Thread William Grant
** Changed in: launchpad
   Status: Fix Committed => Fix Released

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

Title:
  launchpad sometimes serves download files as content-type text/html

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

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


[Bug 819699] Re: [Satellite T135, Conexant CX20582 (Pebble), Mic, Internal] Does not work - no sound goes in with recording application or skype

2011-10-26 Thread David Henningsson
Hi and thanks for the investigation.
There is an existing quirk in the driver for this model. Can you also try this 
instead:

options snd-hda-intel model=auto

...to see if that works equally well (or better)? Please try all inputs
and outputs.

** Changed in: alsa-driver (Ubuntu)
   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/819699

Title:
  [Satellite T135, Conexant CX20582 (Pebble), Mic, Internal] Does not
  work - no sound goes in with recording application or skype

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

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


[Bug 882398] Re: Contact linking doesn't work

2011-10-26 Thread Hans-Jacob Enemark
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882398

Title:
  Contact linking doesn't work

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

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


[Bug 882398] [NEW] Contact linking doesn't work

2011-10-26 Thread Hans-Jacob Enemark
Public bug reported:

When I try linking contacts they stay disconnected. Hitting the
'link'-button has no effect.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: empathy 3.2.0.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
NonfreeKernelModules: openafs nvidia
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
Date: Thu Oct 27 08:01:59 2011
ExecutablePath: /usr/bin/empathy
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
SourcePackage: empathy
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug apport-lpi oneiric

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

Title:
  Contact linking doesn't work

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

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


[Bug 335383] Re: Add ability to change notify-osd font size

2011-10-26 Thread James Harkins
Allow me to provide another use case for this.

I'm preparing for a performance of live computer music in three days,
and my collaborator and I wanted to use send-notify to display messages
between us on my screen (which will be projected for the audience to
see). The audience will not be able to read the messages unless the text
is fairly large, but... some genius decided that the font size of a
notification should be coupled to the font size of:

- All text in panels.
- All application menu bars.
- This even trickles into the default font size of GUI windows created the 
audio software (SuperCollider).

So, either the notification text is too small to read, or the rest of
the screen looks perfectly ridiculous (and visible to the audience). I
could imagine many in the audience would come away from the performance
thinking, "Jeez, Ubuntu looks really terrible."

I know there are higher priority bugs to fix, and I know not everything
can be fixed, but I just thought I would make you aware of yet one more
user impact that this design "decision" has had.

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

Title:
  Add ability to change notify-osd font size

To manage notifications about this bug go to:
https://bugs.launchpad.net/notify-osd/+bug/335383/+subscriptions

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


[Bug 715438] Re: hermes-I wireless interface will not associate with open access point

2011-10-26 Thread MoLE
I've tested two versions of the mainline kernel, both RC9 and RC10 of
the 3.1 kernel as well as daily builds from 20111022 and 20111217.  Bug
still exists with the same symptoms.  Unfortunately launchpad won't let
up upload an automatic apport update as I'm running a mainline kernel.

Do I also need to remove the kernel-request tags as well as the needs-
upstream-testing tags?


** Tags removed: needs-upstream-testing

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

Title:
  hermes-I wireless interface will not associate with open access point

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

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


[Bug 880696] Re: Problems with ext[34] bad-alignment detection

2011-10-26 Thread Pat Cutty
** Attachment added: "Screenshot of error message."
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/880696/+attachment/2574836/+files/Error%20shot.png

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

Title:
  Problems with ext[34] bad-alignment detection

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

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


[Bug 872044] Re: Bluetooth 'Send files' returns permission denied error

2011-10-26 Thread Florent Mertens
Same problem with my Samsung i5800.


** Attachment added: "Syslog"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-bluetooth/+bug/872044/+attachment/2574835/+files/syslog

** Changed in: gnome-bluetooth (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/872044

Title:
  Bluetooth 'Send files' returns permission denied error

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-bluetooth/+bug/872044/+subscriptions

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


[Bug 873334] Re: the upstart job is missing support for 'text' command

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/plymouth

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

Title:
  the upstart job is missing support for 'text' command

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

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


[Bug 873334] Re: the upstart job is missing support for 'text' command

2011-10-26 Thread Martin Pitt
I also put a corresponding fix into plymouth, to avoid keeping the
plymouth splash around forever if "text" is given:
http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/precise/plymouth/precise/revision/1412

** Changed in: plymouth (Ubuntu)
   Status: New => Fix Committed

** Changed in: plymouth (Ubuntu)
   Importance: Undecided => Low

** Changed in: plymouth (Ubuntu Oneiric)
   Status: New => Triaged

** Changed in: plymouth (Ubuntu Oneiric)
   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/873334

Title:
  the upstart job is missing support for 'text' command

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

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


[Bug 880696] Re: Problems with ext[34] bad-alignment detection

2011-10-26 Thread Pat Cutty
** Attachment added: "partman"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/880696/+attachment/2574834/+files/partman

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

Title:
  Problems with ext[34] bad-alignment detection

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

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


[Bug 880696] Re: Problems with ext[34] bad-alignment detection

2011-10-26 Thread Pat Cutty
** Attachment added: "/var/log/syslog"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/880696/+attachment/2574833/+files/syslog

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

Title:
  Problems with ext[34] bad-alignment detection

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

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


[Bug 881786] Re: Update to 15.0.874.102/106

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~chromium-team/chromium-browser/chromium-
browser.maverick

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

Title:
  Update to 15.0.874.102/106

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/881786/+subscriptions

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


[Bug 873334] Re: the upstart job is missing support for 'text' command

2011-10-26 Thread Martin Pitt
** Changed in: lightdm (Ubuntu Oneiric)
   Status: Triaged => Fix Committed

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

Title:
  the upstart job is missing support for 'text' command

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

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


[Bug 873334] Re: the upstart job is missing support for 'text' command

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-desktop/lightdm/ubuntu

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

Title:
  the upstart job is missing support for 'text' command

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

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


[Bug 873334] Re: the upstart job is missing support for 'text' command

2011-10-26 Thread Martin Pitt
I put the updated lightdm upstart script into the packaging bzr. Upload
to oneiric needs to wait for a bit, as there is another SRU currently
being tested.

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

** Changed in: lightdm (Ubuntu Oneiric)
 Assignee: Martin Pitt (pitti) => (unassigned)

** Changed in: plymouth (Ubuntu)
 Assignee: (unassigned) => Martin Pitt (pitti)

** Changed in: lightdm (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  the upstart job is missing support for 'text' command

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

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


[Bug 877373] Re: Missing support for ALC662 revision 0x100300

2011-10-26 Thread David Henningsson
https://github.com/tiwai/sound/commit/cc667a72d471e79fd8e5e291ea115923cf44dca0

** Changed in: linux (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  Missing support for ALC662 revision 0x100300

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

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


[Bug 880922] Re: SRU tracking bug for rekonq 0.8

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/rekonq

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

Title:
  SRU tracking bug for rekonq 0.8

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

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


[Bug 840806] Re: Unity not running after installing proprietary video drivers

2011-10-26 Thread m0sia
after the latest unity update the bug is fixed for me

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

Title:
  Unity not running after installing proprietary video drivers

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

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


[Bug 872483] Re: laser printer only prints first job correct

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/cups

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

Title:
  laser printer only prints first job correct

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

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


[Bug 877967] Re: avahi leaks dbus connections to the system bus, breaking other apps depending on them

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/cups

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

Title:
  avahi leaks dbus connections to the system bus, breaking other apps
  depending on them

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

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


[Bug 882031] Re: SRU tracking bug for clamav 0.97.3

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/natty-proposed/clamav

** Branch linked: lp:ubuntu/oneiric-proposed/clamav

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

Title:
  SRU tracking bug for clamav 0.97.3

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

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


[Bug 882209] Re: package g++ 4:4.5.2-1ubuntu3 failed to install/upgrade: ErrorMessage: package g is already installed and configured

2011-10-26 Thread Raphaël Hertzog
You had multiple errors including one that is the direct consequence of
lack of memory. Since this one is not a bug but a limitation of your
setup, I ignore it.

However the error below is worth some investigation and I thus reaffect
this bug to adobe-flashplugin.


Removing adobe-flashplugin:i386 ...

update-alternatives: error: no alternatives for iceape-flashplugin.

update-alternatives: error: no alternatives for iceape-flashplugin.

dpkg: error processing adobe-flashplugin:i386 (--remove):

 subprocess installed pre-removal script returned error exit status 2

postinst called with argument `abort-remove'

dpkg: error while cleaning up:

 subprocess installed post-installation script returned error exit
status 1

Errors were encountered while processing:

 adobe-flashplugin:i386

** Package changed: dpkg (Ubuntu) => adobe-flashplugin (Ubuntu)

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

Title:
  package g++ 4:4.5.2-1ubuntu3 failed to install/upgrade: ErrorMessage:
  package g   is already installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/adobe-flashplugin/+bug/882209/+subscriptions

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


[Bug 778953] Re: gnome-screensaver 2.30.2-0ubuntu2 failed to exit

2011-10-26 Thread david6
On older PC (Intel P4 2.8GHz, 1GB ram), I am seeing this lockup with
default settings.

Ubuntu 11.10, Unity-2D, latest patch/updates loaded.


Note: login screen (lightdm) is not susceptible to this issue.

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

Title:
  gnome-screensaver 2.30.2-0ubuntu2 failed to exit

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

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


[Bug 778953] Re: gnome-screensaver 2.30.2-0ubuntu2 failed to exit

2011-10-26 Thread david6
I'm still seeing this behavior in Ubuntu 11.10

That is, for package: gnome-screensaver 3.2.0-0ubuntu1

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

Title:
  gnome-screensaver 2.30.2-0ubuntu2 failed to exit

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

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


[Bug 829221] Re: lightdm crashed with SIGSEGV in initialize_password_db()

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/samba

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

Title:
  lightdm crashed with SIGSEGV in initialize_password_db()

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

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


[Bug 882394] Re: in the installation time package iamerican 3.3.02-5 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-26 Thread Jesus Carrillo Velarde
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882394

Title:
  in the installation time package iamerican 3.3.02-5 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

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

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


[Bug 882394] [NEW] in the installation time package iamerican 3.3.02-5 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-26 Thread Jesus Carrillo Velarde
Public bug reported:

During the installation the error it was showed in the installation
screen

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: iamerican 3.3.02-5
ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
Uname: Linux 2.6.38-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Wed Oct 26 21:38:25 2011
ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
PackageArchitecture: all
SourcePackage: ispell
Title: package iamerican 3.3.02-5 failed to install/upgrade: ErrorMessage: 
dependency problems - leaving unconfigured
UpgradeStatus: Upgraded to oneiric on 2011-10-26 (0 days ago)

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


** Tags: apport-package i386 oneiric

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

Title:
  in the installation time package iamerican 3.3.02-5 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

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

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


[Bug 778953] Re: gnome-screensaver 2.30.2-0ubuntu2 failed to exit

2011-10-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  gnome-screensaver 2.30.2-0ubuntu2 failed to exit

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

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


[Bug 882391] Re: 10.10 Kernel update black screen flash and no mouse

2011-10-26 Thread Brad Figg
** Changed in: linux (Ubuntu)
   Status: New => Confirmed

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

Title:
  10.10 Kernel update black screen flash and no mouse

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

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


[Bug 881786] Re: Update to 15.0.874.102/106

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~chromium-team/chromium-browser/chromium-
browser.lucid

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

Title:
  Update to 15.0.874.102/106

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/881786/+subscriptions

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


[Bug 882391] Re: 10.10 Kernel update black screen flash and no mouse

2011-10-26 Thread seer...@gmail.com
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882391

Title:
  10.10 Kernel update black screen flash and no mouse

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

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


[Bug 882391] [NEW] 10.10 Kernel update black screen flash and no mouse

2011-10-26 Thread seer...@gmail.com
Public bug reported:

After the recent update to the kernel in 10 .10 I noticed that some times my 
screen will flash black.. and then the mouse cursor disappears. I am no wiz in 
here.. so can't give a great deal of info on my system. But the bug fixes for 
such as this stopped last year. 
I can reboot and find  the mouse again.. and I can move the mouse around and 
find stuff , like using a tab key would be .. but you can not see the mouse. 
Sometimes the graphics corrupt ; tool bars end up with multi slurred colors 
pix-elated. again.. a reboot and that is all better. 
I am not one who knows how to update logs or find boot logs or the like.. but 
if there is a beginner description on how to fix this.. I can follow the 
instructions.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-30-generic 2.6.35-30.61
Regression: No
Reproducible: No
ProcVersionSignature: Ubuntu 2.6.35-30.61-generic 2.6.35.13
Uname: Linux 2.6.35-30-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  rj 1250 F pulseaudio
 /dev/snd/pcmC0D0p:   rj 1250 F...m pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'V8237'/'VIA 8237 with ALC655 at 0xb000, irq 22'
   Mixer name   : 'Realtek ALC655 rev 0'
   Components   : 'AC97a:414c4760'
   Controls  : 48
   Simple ctrls  : 29
CurrentDmesg:
 [   22.687213] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
 [   28.896024] eth0: no IPv6 routers present
Date: Wed Oct 26 22:27:57 2011
Frequency: Once a day.
HibernationDevice: RESUME=UUID=b9eadbc3-763d-42eb-9fa3-22fe8a5f7adf
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MachineType: MSI MS-6702
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-30-generic 
root=UUID=03f16e97-1e4a-4a2c-9094-3bc88bf5e5b4 ro quiet splash
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
RelatedPackageVersions: linux-firmware 1.38.6
RfKill:
 
SourcePackage: linux
dmi.bios.date: 04/02/01
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: Version 07.00T
dmi.board.name: MS-6702
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: 0123ABC
dmi.chassis.type: 3
dmi.chassis.vendor: Uknown Chassis Manufacture
dmi.chassis.version: Version 1.00
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrVersion07.00T:bd04/02/01:svnMSI:pnMS-6702:pvr1.0:rvnMSI:rnMS-6702:rvr1.0:cvnUknownChassisManufacture:ct3:cvrVersion1.00:
dmi.product.name: MS-6702
dmi.product.version: 1.0
dmi.sys.vendor: MSI

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


** Tags: apport-bug i386 kernel-graphics maverick needs-upstream-testing

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

Title:
  10.10 Kernel update black screen flash and no mouse

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

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


[Bug 882392] Re: synce-bt-ipdown crashed with error in meth(): [Errno 111] Connection refused

2011-10-26 Thread Apport retracing service
*** This bug is a duplicate of bug 821629 ***
https://bugs.launchpad.net/bugs/821629

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #821629, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Tags removed: need-duplicate-check

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/882392/+attachment/2574820/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/882392/+attachment/2574821/+files/ProcStatus.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of private bug 821629

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

Title:
  synce-bt-ipdown crashed with error in meth(): [Errno 111] Connection
  refused

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/synce-hal/+bug/882392/+subscriptions

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


[Bug 12893] Re: Shouldn't put .Trash-$USER on removable devices

2011-10-26 Thread kao_chen
The bug is still present on a fresh install of ubuntu 11.10

If I delete a file or a folder on my USB key he reappears in the folder 
/media/KAOKEY/.Trash-1000/files/
If I retry to delete him directly from the  .Trash-1000 he reappears with a 
news extenstion, file.txt becomes file.2.txt. It's endless.

Only a "rm -r" or a shift+suppr erase finaly the files.

It's very confusing for new users.
Kind regards

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

Title:
  Shouldn't put .Trash-$USER on removable devices

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

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


Re: [Bug 724369] Re: Port to gnome-panel 3 and gtk 3

2011-10-26 Thread Attila Hammer
This ppa awailable package is wonderful, if this is possible, please 
awailable this version with oneric-updates or next Precise related 
repository.
I added simple my system the ppa:jconti/gnome3 repository, and install 
the indicator-applet-complete package.
After I added my top panel the applet, I access every indicators with 
keyboard without any problem if I press Super+S keystroke. So, wonderful 
this port.
I found some issues for A11y related when I using this applet with Orca 
Screen Reader:
Some main categories not have textual descriptions, only have icons 
without I think tooltips. This situation Orca Screen Reader says me only 
the "menu" role name.
I think have similar issues with Unity related indicators.
In next version development A11Y related milestones have following text 
part:
" * Making sure all indicators have accessible descriptions/labels.
  * Making sure any icons in indicator menus that need accessible 
descriptions/labels"
I read this with following link:
https://blueprints.launchpad.net/ubuntu/+spec/desktop-p-accessibility-polish

Attila

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

Title:
  Port to gnome-panel 3 and gtk 3

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-applet/+bug/724369/+subscriptions

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


[Bug 855402] Re: Python lenses segfault with pygobject3

2011-10-26 Thread Launchpad Bug Tracker
This bug was fixed in the package pygobject - 3.0.2-2

---
pygobject (3.0.2-2) experimental; urgency=low

  * debian/control.in: Add locales build dependency, to ensure that the test
suite's localedef command can succeed.
  * debian/control.in: Bump g-i build deps to >= 1.31.0, as our test suite
needs methods from that version.
  * Add 00git_marshal_gvariant_arrays.patch: Fix marshaling of arrays of
GVariants. Thanks Mikkel Kamstrup Erlandsen! (LP: #855402)
 -- Martin PittThu, 27 Oct 2011 07:25:09 +0200

** Changed in: pygobject (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Python lenses segfault with pygobject3

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

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


[Bug 882390] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Andrew F. R. Rogers
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882390

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882375] Re: gbrainy has incorrect answer to "Two trucks" logic problem

2011-10-26 Thread Jordi Mas
Thanks for the bug report

This has been already fixed in HEAD:

https://bugzilla.gnome.org/show_bug.cgi?id=662041

Thanks,

Jordi,

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

** Bug watch added: GNOME Bug Tracker #662041
   https://bugzilla.gnome.org/show_bug.cgi?id=662041

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

Title:
  gbrainy has incorrect answer to "Two trucks" logic problem

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

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


[Bug 882390] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Andrew F. R. Rogers
Public bug reported:

Samba did not upgrade tp 11.10

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: samba 2:3.5.8~dfsg-1ubuntu2.3
ProcVersionSignature: Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
ApportVersion: 1.23-0ubuntu4
Architecture: i386
BothFailedConnect: Yes
Date: Thu Oct 27 12:18:09 2011
ErrorMessage: ErrorMessage: package samba is not ready for configuration  
cannot configure (current status `half-installed')
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
NmbdLog:
 
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:   getpeername failed. Error was Transport endpoint is not connected
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
ErrorMessage: package samba is not ready for configuration  cannot configure 
(current status `half-installed')
UpgradeStatus: Upgraded to oneiric on 2011-10-26 (0 days ago)

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


** Tags: apport-package i386 oneiric

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 881999] Re: USB flash drives not recognised

2011-10-26 Thread James
apport information

** Tags added: apport-collected

** Description changed:

  What "further information" is needed? 
  I plug in a USB flash drive, and it is not recognised...
  Just to be sure I installed Windows and checked again... guess what? no 
problem... all good...
  
  ProblemType: Package
  Architecture: i386
  Date: Wed Oct 26 12:01:45 2011
  DistroRelease: Ubuntu 9.10
  ErrorMessage:
   ErrorMessage: package openoffice.org-emailmerge is already installed and 
configured
  InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
  NonfreeKernelModules: nvidia
  Package: openoffice.org-emailmerge 1:3.1.1-5ubuntu1
  PackageArchitecture: all
  ProcVersionSignature: Ubuntu 2.6.31-23.75-generic-pae
  SourcePackage: openoffice.org
  Title: package openoffice.org-emailmerge 1:3.1.1-5ubuntu1 failed to 
install/upgrade:
  Uname: Linux 2.6.31-23-generic-pae i686
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
+ AplayDevices:
+   List of PLAYBACK Hardware Devices 
+  card 0: SB [HDA ATI SB], device 0: VT1708S Analog [VT1708S Analog]
+Subdevices: 2/2
+Subdevice #0: subdevice #0
+Subdevice #1: subdevice #1
+ Architecture: i386
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  james  2583 F pulseaudio
+  /dev/snd/controlC0:  james  2583 F pulseaudio
+  /dev/snd/seq:timidity   2323 F timidity
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info:
+  Card hw:0 'SB'/'HDA ATI SB at 0xf9ff4000 irq 16'
+Mixer name : 'VIA VT1708S'
+Components : 'HDA:11064397,18490397,0010'
+Controls  : 23
+Simple ctrls  : 14
+ Card1.Amixer.info:
+  Card hw:1 'U0x93a0x260f'/'USB Device 0x93a:0x260f at usb-:00:13.4-2, 
full speed'
+Mixer name : 'USB Mixer'
+Components : 'USB093a:260f'
+Controls  : 2
+Simple ctrls  : 1
+ Card1.Amixer.values:
+  Simple mixer control 'Mic',0
+Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum
+Capture channels: Mono
+Limits: Capture 0 - 4
+Mono: Capture 0 [0%] [30.00dB] [on]
+ DistroRelease: Ubuntu 10.04
+ HibernationDevice: RESUME=UUID=b4e4972b-5b3d-4674-811e-fdf2a2abb2e9
+ InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
+ LiveMediaBuild: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
+ MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
+ NonfreeKernelModules: nvidia
+ Package: linux (not installed)
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-34-generic-pae 
root=UUID=60c81aa5-5a34-4922-82e0-59c696561e55 ro quiet splash
+ ProcEnviron:
+  LANGUAGE=en_AU:en
+  PATH=(custom, no user)
+  LANG=en_AU.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-34.77-generic-pae 2.6.32.44+drm33.19
+ Regression: Yes
+ RelatedPackageVersions: linux-firmware 1.34.7
+ Reproducible: Yes
+ RfKill:
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
+ Tags: lucid kconfig regression-update needs-upstream-testing
+ Uname: Linux 2.6.32-34-generic-pae i686
+ UserGroups:
+  
+ dmi.bios.date: 12/17/2010
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: P1.30
+ dmi.board.name: M3A UCC
+ dmi.board.vendor: ASRock
+ dmi.chassis.asset.tag: To Be Filled By O.E.M.
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: To Be Filled By O.E.M.
+ dmi.chassis.version: To Be Filled By O.E.M.
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.30:bd12/17/2010:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnM3AUCC:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
+ dmi.product.name: To Be Filled By O.E.M.
+ dmi.product.version: To Be Filled By O.E.M.
+ dmi.sys.vendor: To Be Filled By O.E.M.

** Attachment added: "AlsaDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574775/+files/AlsaDevices.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] PciMultimedia.txt

2011-10-26 Thread James
apport information

** Attachment added: "PciMultimedia.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574784/+files/PciMultimedia.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] ArecordDevices.txt

2011-10-26 Thread James
apport information

** Attachment added: "ArecordDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574776/+files/ArecordDevices.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] ProcInterrupts.txt

2011-10-26 Thread James
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574786/+files/ProcInterrupts.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 882265] Re: libbotan-1.8.13.so was shipped in libbotan-1.8.2, breaking all reverse-dependencies

2011-10-26 Thread Chris Halse Rogers
Hello cxw1985, or anyone else affected,

Accepted botan1.8 into oneiric-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!

** Tags added: verification-needed

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

Title:
  libbotan-1.8.13.so was shipped in libbotan-1.8.2, breaking all
  reverse-dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/botan1.8/+bug/882265/+subscriptions

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


[Bug 881999] ProcCpuinfo.txt

2011-10-26 Thread James
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574785/+files/ProcCpuinfo.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 406142] Re: Grub2 menu doesn't list entries with foreign characters

2011-10-26 Thread Andrew Cranwell
Is this still a problem in a supported release (10.04 onwards)?

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

Title:
  Grub2 menu doesn't list entries with foreign characters

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

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


[Bug 881999] Card0.Codecs.codec.0.txt

2011-10-26 Thread James
apport information

** Attachment added: "Card0.Codecs.codec.0.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574779/+files/Card0.Codecs.codec.0.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] IwConfig.txt

2011-10-26 Thread James
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574781/+files/IwConfig.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] BootDmesg.txt

2011-10-26 Thread James
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574777/+files/BootDmesg.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] Lspci.txt

2011-10-26 Thread James
apport information

** Attachment added: "Lspci.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574782/+files/Lspci.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] Lsusb.txt

2011-10-26 Thread James
apport information

** Attachment added: "Lsusb.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574783/+files/Lsusb.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881014] Re: terminal scrolling glitches

2011-10-26 Thread hdante
To be more precise, I've been having another scrolling problem on other
applications. When scrolling on xterm and gnome editor with page up and
page down, sometimes a rectangle inside the window is not redrawn. In
xterm, that rectangle stays black and in gedit, the text is not
correctly updated. In both cases, a manual refresh is required to fix
the problem.

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

Title:
  terminal scrolling glitches

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

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


[Bug 881999] Card0.Amixer.values.txt

2011-10-26 Thread James
apport information

** Attachment added: "Card0.Amixer.values.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574778/+files/Card0.Amixer.values.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] CurrentDmesg.txt

2011-10-26 Thread James
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574780/+files/CurrentDmesg.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 747014] Re: Wanda is gone from unity

2011-10-26 Thread Dylan McCall
** Changed in: indicator-fish
   Status: In Progress => 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/747014

Title:
  Wanda is gone from unity

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-fish/+bug/747014/+subscriptions

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


[Bug 787465] Re: View->Show MenuBar isn't working in 11.04 and later in gnome-terminal

2011-10-26 Thread Jeffrey Finkelstein
@mdpoole: there is a solution to that problem here:
https://answers.launchpad.net/ubuntu/+source/gnome-
terminal/+question/176160

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

Title:
  View->Show MenuBar isn't working in 11.04 and later in gnome-terminal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/appmenu-gtk/+bug/787465/+subscriptions

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


[Bug 428519] Re: Unable to enable framebuffer modes with grub 2

2011-10-26 Thread Andrew Cranwell
Does this bug still affect any supported release?

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

Title:
  Unable to enable framebuffer modes with grub 2

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

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


[Bug 430659] Re: grub2 cannot find kernel in dual kubuntu/xubuntu 9.10 boot scenario

2011-10-26 Thread Andrew Cranwell
Is this bug still present in any supported release?

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

Title:
  grub2 cannot find kernel in dual kubuntu/xubuntu 9.10 boot scenario

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

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


[Bug 880523] Re: menu options not displayed at top of page after upgrading to 11.10

2011-10-26 Thread Walter Garcia-Fontes
Thanks for reporting this issue. If I interpret your issue correctly,
you are not getting any menu, not only in Nautilus but in general. In
11.10 if your graphics card does not support the default "Ubuntu" option
in the login screen, you can try "Ubuntu 2D" which is supported for all
graphic cards. If instead you want an old "Gnome" experience with menus
in the top bar, you can try to install "gnome-shell" and try the "Gnome"
option in login.

If this is not the issue please excuse me and try to clarify it in your
description.

** Changed in: nautilus (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/880523

Title:
  menu options not displayed at top of page after upgrading to 11.10

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

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


[Bug 881999] WifiSyslog.txt

2011-10-26 Thread James
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574790/+files/WifiSyslog.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] UdevLog.txt

2011-10-26 Thread James
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574789/+files/UdevLog.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] UdevDb.txt

2011-10-26 Thread James
apport information

** Attachment added: "UdevDb.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574788/+files/UdevDb.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 881999] ProcModules.txt

2011-10-26 Thread James
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.edge.launchpad.net/bugs/881999/+attachment/2574787/+files/ProcModules.txt

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

Title:
  USB flash drives not recognised

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

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


[Bug 500863] Re: Problem when copying folders with Nautilus using WebDAV

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/natty-proposed/gvfs

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

Title:
  Problem when copying folders with Nautilus using WebDAV

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

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


[Bug 606134] Re: ubiquity-slideshow-ubuntu package has outdated translations in Ubuntu 10.04.

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/lucid-proposed/ubiquity-slideshow-ubuntu

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

Title:
  ubiquity-slideshow-ubuntu package has outdated translations in Ubuntu
  10.04.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubiquity-slideshow-ubuntu/+bug/606134/+subscriptions

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


[Bug 851044] Re: Banshee.exe crashed with SIGABRT in g_cclosure_marshal_VOID__VOID() / while using Ubuntu 1 Store.

2011-10-26 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/oneiric-proposed/libubuntuone

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

Title:
  Banshee.exe crashed with SIGABRT in g_cclosure_marshal_VOID__VOID() /
  while using Ubuntu 1 Store.

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

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


[Bug 864071] Re: pulseaudio crashed with SIGABRT in pa_format_info_from_sample_spec()

2011-10-26 Thread Chris Halse Rogers
Hello Dmitry, or anyone else affected,

Accepted pulseaudio into oneiric-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!

** Also affects: pulseaudio (Ubuntu Oneiric)
   Importance: Undecided
   Status: New

** Changed in: pulseaudio (Ubuntu Oneiric)
   Status: New => Fix Committed

** Tags added: verification-needed

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

Title:
  pulseaudio crashed with SIGABRT in pa_format_info_from_sample_spec()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/864071/+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   10   >