[Bug 711162] Re: ubuntuone-login crashed with ValueError in call_async(): Unable to guess signature from an empty dict

2013-03-23 Thread Agus
** Changed in: ubuntuone-client (Ubuntu)
 Assignee: (unassigned) => Agus (aguz-sandband)

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

Title:
  ubuntuone-login crashed with ValueError in call_async(): Unable to
  guess signature from an empty dict

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

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


[Bug 1128226] Re: lightdm accepts weak password although pam says BAD PASSWORD

2013-03-23 Thread Nobuto MURATA
** Description changed:

  Even if libpam-cracklib installed, lightdm accepts too short password.
  This might be a security issue because user can ignore password policy 
defined by root.
  
  How to reproduce:
  
-  1. install libpam-cracklib
-  2. create "user1" with password "foo"
-  3. expire user1's password by root
- $ sudo passwd -e user1
-  4. try to login as user1 on lightdm with password "foo"
-  5. get "You are required to change password" message
- and be prompted to input new password
+  1. install libpam-cracklib
+  2. create "user1" with password "foo"
+  3. expire user1's password by root
+ $ sudo passwd -e user1
+  4. try to login as user1 on lightdm with password "foo"
+  5. get "You are required to change password" message
+ and be prompted to input new password
  
  Expected results:
-   if you input too short password like "bar" in the box,
-   then lightdm rejects it and re-prompt to type stronger password.
+   if you input too short password like "bar" in the box,
+   then lightdm rejects it and re-prompt to type stronger password.
  
  Actual results:
-   if you input too short password like "bar" in the box twice,
-   then lightdm accept it and change password with too short one
-   although saying that "BAD PASSWORD: it is WAY too short" and "BAD PASSWORD: 
is too simple"
+   if you input too short password like "bar" in the box twice,
+   then lightdm accept it and change password with too short one
+   although saying that "BAD PASSWORD: it is WAY too short" and "BAD PASSWORD: 
is too simple"
  
+ WORKAROUND:
+  1. use other display manager like gdm
+  or
+  2. use pam modules which can reject a weak password even if changed by root
+ - libpam-passwdqc(universe) with "enforce=everyone"(default)
+   instead of libpam-cracklib(main)
+ - libpam-pwquality(universe) with "enforce_for_root" in quantal or higher
+   instead of libpam-cracklib(main)
+ - pam_pwhistory remember=N with "enforce_for_root"
+   instead of pam_unix remember=N
+ - (but no replacement of "reject_username" in pam_cracklib AFAIK)
  
  NOTE:
-  passwd command with user privilege, properly reject too short password like 
below:
+  passwd command with user privilege, properly reject too short password like 
below:
  
-  $ passwd
+  $ passwd
  (current) UNIX password: #<- type "foo
  New password: #<- type "bar"
  BAD PASSWORD: it is WAY too short
  New password: #<- type "bar"
  BAD PASSWORD: it is WAY too short
  New password: #<- type "bar"
  BAD PASSWORD: it is WAY too short
  passwd: Have exhausted maximum number of retries for service
  passwd: password unchanged
  Changing password for user1.
  
- ProblemType: Bug
- DistroRelease: Ubuntu 13.04
+ ProblemType: BugDistroRelease: Ubuntu 13.04
  Package: lightdm 1.4.0-0ubuntu4
  ProcVersionSignature: Ubuntu 3.8.0-6.13-generic 3.8.0-rc7
  Uname: Linux 3.8.0-6-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  CasperVersion: 1.330
  Date: Sun Feb 17 16:26:19 2013
  LightdmConfig:
-  [SeatDefaults]
-  user-session=ubuntu
-  greeter-session=unity-greeter
+  [SeatDefaults]
+  user-session=ubuntu
+  greeter-session=unity-greeter
  LiveMediaBuild: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130217)
  MarkForUpload: True
  ProcEnviron:
-  TERM=linux
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
- SourcePackage: lightdm
+  TERM=linux
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bashSourcePackage: lightdm
  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/1128226

Title:
  lightdm accepts weak password although pam says BAD PASSWORD

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

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

[Bug 1045070] Re: byobu interrupts ctrl-a when keybinding is already set to another key

2013-03-23 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: byobu (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/1045070

Title:
  byobu interrupts ctrl-a when keybinding is already set to another key

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

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


[Bug 887387] Re: byobu emacs mode escape key fails

2013-03-23 Thread Dana Goyette
I'm still affected on byobu 5.21 in Ubuntu Quantal.

Looks like there's a duplicate here, as well:
https://bugs.launchpad.net/byobu/+bug/1045070

My observation:

Byobu uses "prefix" instead of "escape" -- see anything wrong in
/usr/bin/byobu-ctrl-a?

Line 35: [ "$BYOBU_BACKEND" = "tmux" ] && keybindings="$keybindings.tmux"
Line 40: grep -qs "^escape" "$keybindings" && bind_to="emacs"

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

Title:
  byobu emacs mode escape key fails

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

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


[Bug 1130101] Re: gvfsd-mtp crashed with SIGSEGV in backend_died()

2013-03-23 Thread Bug Watch Updater
** Changed in: gvfs
   Status: Unknown => In Progress

** Changed in: gvfs
   Importance: Unknown => High

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

Title:
  gvfsd-mtp crashed with SIGSEGV in backend_died()

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

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


Re: [Bug 1084854] Re: upgrade crashes on code 1.

2013-03-23 Thread Sanjay Limbore
On Friday 22 March 2013 11:24 PM, Fabio Marconi wrote:
> Hallo Sanjay
> Can you please attach here, using the button below 'Add attachment or patch'  
> all the files content in /var/log/dist-upgrade/?
> Thanks
> Fabio
> ---
> Ubuntu Bug Squad volunteer triager
> http://wiki.ubuntu.com/BugSquad
>
is this alright?
Sanjay


** Attachment added: "main.log.partial"
   
https://bugs.launchpad.net/bugs/1084854/+attachment/3593380/+files/main.log.partial

** Attachment added: "lspci.txt"
   https://bugs.launchpad.net/bugs/1084854/+attachment/3593381/+files/lspci.txt

** Attachment added: "apt.log"
   https://bugs.launchpad.net/bugs/1084854/+attachment/3593382/+files/apt.log

** Attachment added: "history.log"
   
https://bugs.launchpad.net/bugs/1084854/+attachment/3593383/+files/history.log

** Attachment added: "apt-term.log"
   
https://bugs.launchpad.net/bugs/1084854/+attachment/3593384/+files/apt-term.log

** Attachment added: "xorg_fixup.log"
   
https://bugs.launchpad.net/bugs/1084854/+attachment/3593385/+files/xorg_fixup.log

** Attachment added: "main.log"
   https://bugs.launchpad.net/bugs/1084854/+attachment/3593386/+files/main.log

** Attachment added: "term.log"
   https://bugs.launchpad.net/bugs/1084854/+attachment/3593387/+files/term.log

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

Title:
  upgrade crashes on code 1.

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

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


[Bug 1152251] Re: [USB-Audio - Jabra BIZ 2400 USB, playback] No sound at all

2013-03-23 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

Title:
  [USB-Audio - Jabra BIZ 2400 USB, playback] No sound at all

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

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


[Bug 1159325] Re: electricsheep crashed with SIGSEGV in av_opt_free()

2013-03-23 Thread Apport retracing service
*** This bug is a duplicate of bug 1155173 ***
https://bugs.launchpad.net/bugs/1155173

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1155173, 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.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1159325/+attachment/3593351/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1159325/+attachment/3593353/+files/Disassembly.txt

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

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

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1159325/+attachment/3593356/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1159325/+attachment/3593357/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1159325/+attachment/3593358/+files/ThreadStacktrace.txt

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

** Information type changed from Private to Public

** Tags removed: need-i386-retrace

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

Title:
  electricsheep crashed with SIGSEGV in av_opt_free()

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

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


[Bug 1159327] [NEW] Compiled with too new version of Java (1.7.0_03)

2013-03-23 Thread Disassembler
Public bug reported:

The *.jar file /usr/share/java/wrapper-3.5.3.jar distributed in package 
libservice-wrapper-java is compiled with Java 1.7.0_03, whereas original 
wrapper.jar distributed by Java Service Wrapper community project 
(http://sourceforge.net/projects/wrapper/) is compiled with Java 1.4.2_19-b04.
This causes Java to throw java.lang.UnsupportedClassVersionError and renders 
Ubuntu version of wrapper useless when used by Java version lower than 7.

root@ubuntu-12-10:~# lsb_release -rd
Description:Ubuntu 12.10
Release:12.10

root@ubuntu-12-10:~# apt-cache policy libservice-wrapper-java
libservice-wrapper-java:
  Installed: 3.5.3-4
  Candidate: 3.5.3-4
  Version table:
 *** 3.5.3-4 0
500 http://cz.archive.ubuntu.com/ubuntu/ quantal/universe amd64 Packages
100 /var/lib/dpkg/status

** Affects: service-wrapper-java (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  The *.jar file /usr/share/java/wrapper-3.5.3.jar distributed in package 
libservice-wrapper-java is compiled with Java 1.7.0_03, whereas original 
wrapper.jar distributed by Java Service Wrapper community project 
(http://sourceforge.net/projects/wrapper/) is compiled with Java 1.4.2_19-b04.
  This causes Java to throw java.lang.UnsupportedClassVersionError and renders 
Ubuntu version of wrapper useless when used by Java version lower than 7.
+ 
+ root@ubuntu-12-10:~# lsb_release -rd
+ Description:Ubuntu 12.10
+ Release:12.10
+ 
+ root@ubuntu-12-10:~# apt-cache policy libservice-wrapper-java
+ libservice-wrapper-java:
+   Installed: 3.5.3-4
+   Candidate: 3.5.3-4
+   Version table:
+  *** 3.5.3-4 0
+ 500 http://cz.archive.ubuntu.com/ubuntu/ quantal/universe amd64 
Packages
+ 100 /var/lib/dpkg/status

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

Title:
  Compiled with too new version of Java (1.7.0_03)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/service-wrapper-java/+bug/1159327/+subscriptions

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


[Bug 1130101] Re: gvfsd-mtp crashed with SIGSEGV in backend_died()

2013-03-23 Thread Philip Langdale
** Bug watch added: GNOME Bug Tracker #696479
   https://bugzilla.gnome.org/show_bug.cgi?id=696479

** Also affects: gvfs via
   https://bugzilla.gnome.org/show_bug.cgi?id=696479
   Importance: Unknown
   Status: Unknown

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

Title:
  gvfsd-mtp crashed with SIGSEGV in backend_died()

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

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


[Bug 1158069] Re: Screen suddenly blanked with text output - similar to standby without doing anything

2013-03-23 Thread Charles Ford
There's more pictures that I took, but I think these will give you an
idea.

** Attachment added: "IMG_20130324_011857 (2).jpg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1158069/+attachment/3593350/+files/IMG_20130324_011857%20%282%29.jpg

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

Title:
  Screen suddenly blanked with text output - similar to standby without
  doing anything

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

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


[Bug 1158069] Re: Screen suddenly blanked with text output - similar to standby without doing anything

2013-03-23 Thread Charles Ford
** Attachment added: "IMG_20130324_011833.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1158069/+attachment/3593349/+files/IMG_20130324_011833.jpg

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

Title:
  Screen suddenly blanked with text output - similar to standby without
  doing anything

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

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


[Bug 1158069] Re: Screen suddenly blanked with text output - similar to standby without doing anything

2013-03-23 Thread Charles Ford
This video will hopefully play - if not I can convert it.

** Attachment added: "VID_20130324_011930.3gp"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1158069/+attachment/3593348/+files/VID_20130324_011930.3gp

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

Title:
  Screen suddenly blanked with text output - similar to standby without
  doing anything

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

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


[Bug 1158069] Re: Screen suddenly blanked with text output - similar to standby without doing anything

2013-03-23 Thread Charles Ford
It just happened again. I'll be attaching pictures. I had 2 usb drives
plugged in, if I remember, there was a USB drive plugged in the other
time, too.

Is there a specific place that this output might be accessed? If not,
I'll try and reconstruct what it says through the images.

** Attachment added: "IMG_20130324_011647.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1158069/+attachment/3593347/+files/IMG_20130324_011647.jpg

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

Title:
  Screen suddenly blanked with text output - similar to standby without
  doing anything

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

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


[Bug 1136110] Re: USB Audio Codec choppy playback

2013-03-23 Thread Tyson Tan
Tested with Linux kernel v3.9-rc4, problem remains.

** Description changed:

  1) The release of Ubuntu using
  Ubuntu 12.10 AMD64.
  Ubuntu 13.04 AMD64, daily build as new as 20130314.
  
  2) The version of the package used
  linux-image-3.5.0-26-generic
  linux-image-3.5.7-03050706-generic_3.5.7-03050706.201302221435_amd64.deb
  http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.5.7.6-quantal/
  linux-image-3.7.7-030707-generic_3.7.7-030707.201302111436_amd64.deb
  http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.7.7-raring/
  linux-image-3.8.0-030800rc7-generic_3.8.0-030800rc7.201302081635_amd64.deb
  http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.8-rc7-raring/
  
  This bug had been confirmed appearing after the following kernel upgrade step:
  v3.5.0-25 > v3.5.0-26 ~ v3.5.0-27
  v3.5.7.5 > v3.5.7.6 ~ v3.5.7.8
  v3.7.6 > v3.7.7 ~ v3.7.10
  v3.8.0-rc6 > v3.8.0-rc7 ~ v3.8.4
  The v3.9 branch has been affected since its very first release.
- v3.9-rc1, v3.9-rc2, v3.9-rc3 are affected.
+ v3.9-rc1, v3.9-rc2, v3.9-rc3 v3.9-rc4 are all affected.
  
  3) What you expected to happen
  When using a USB DAC to play audio, the audio should be played normally 
without any interruption.
  
  4) What happened instead
  This bug seems to affect only a certain kind of hardware, which is called 
"Asynchronous USB Digital Audio Codec (DAC)". It's said that such a DAC hosts 
the clock itself (USB Device Host). An ordinary DAC, so called "Synchronous USB 
DAC", uses the clock hosted by the mother board, which is not affected by this 
bug.
  
  When this bug affects an asynchronous USB DAC, the audio played by the
  DAC is constantly interrupted. The playback itself does not stop, but
  the output becomes discontinous, filling with constant crackling noises,
  destroying everything the DAC plays.
  
  Using CLI command grep device.buffering to get the buffer from the
  devices, those affected kernels are reporting back a different number to
  the unaffected devices. The choppy noise is very similar to the
  situation when buffer size is not correctly set.
  
  I have tested four USB DACs, two Asynchronous and two Synchronous. Only
  the Asynchronous ones are affected by this bug.
  
  Affected Devices:
  Arce MDAC5
  Arce MDAC mini
  Ayre Acoustics QB-9
  Musical Fidelity v2 DAC
  
  USB Audio Streaming Controller on affected devices:
  Texas Instrument TAS1020
  http://www.ti.com/product/tas1020
  
  Audio DAC on affected devices:
  Texas Instruments PCM1742
  http://www.ti.com/product/pcm1742
  
  This bug had been confirmed appearing after the following kernel upgrade step:
  3.5.0-25 > 3.5.0-26
  3.5.7.5 > 3.5.7.6 (and all 3.5.7.x above)
  3.7.6 > 3.7.7 (and all 3.7.x above)
  3.8.0-rc6 > 3.8.0-rc7 (and all 3.8.x above)
  I used Kdiff to find the similar patches, and find the following patches 
suspicous:
  USB: XHCI: fix memory leak of URB-private data
  (appeared in 3.5.7.6/3.7.7/3.8.0-rc7)
  USB: EHCI: fix for leaking isochronous data
  (appeared in 3.7.7/3.8.0-rc7)
  usb: Prevent dead ports when xhci is not enabled
  (appeared in 3.5.7.6/3.7.7/3.8.0-rc7)
  usb: Using correct way to clear usb3.0 device's remote wakeup feature
  (appeared in 3.5.7.6/3.7.7/3.8.0-rc7)
  USB: EHCI: remove ASS/PSS polling timeout
  (appeared in 3.7.7/3.8.0-rc7)
  USB: EHCI: unlink one async QH at a time
  (appeared in 3.7.7/3.8.0-rc7)
  USB: EHCI: fix timer bug affecting port resume
  (appeared in 3.5.7.6/3.7.7/3.8.0-rc7)
  USB: EHCI: fix bug in scheduling periodic split transfers
  (appeared in 3.5.7.6/3.7.7/3.8.0-rc7)
  
  Hope someone can look into this bug soon!
  
  ---
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tysontan   2117 F pulseaudio
   /dev/snd/controlC1:  tysontan   2117 F pulseaudio
   /dev/snd/pcmC1D0p:   tysontan   2117 F...m pulseaudio
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  DistroRelease: Ubuntu 12.10
  HibernationDevice: RESUME=UUID=8545c3e2-caba-4eaa-8fa4-2fbebcc2d9bb
  InstallationDate: Installed on 2013-02-15 (14 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  IwConfig:
   eth0  no wireless extensions.
  
   lono wireless extensions.
  MachineType: LENOVO 0053A11
  MarkForUpload: True
  Package: linux 3.5.0.26.32
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-26-generic 
root=UUID=8c60a142-505f-4d74-afa0-37686558e86e ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.5.0-26.40-generic 3.5.7.6
  RelatedPackageVersions:
   linux-restricted-modules-3.5.0-26-generic N/A
   linux-backports-modules-3.5.0-26-generic  N/A
   linux-firmware1.95
  RfKill:
  
  Tags: quantal package-from-proposed running-unity third-

[Bug 1153188]

2013-03-23 Thread Akiro
Well, "Urdu Nastaliq Unicode" seems added by Mandriva guy at
c26344ecfc1d3b85671f5d948a10d5cc27c21c2f. you may need to talk to him
about this change perhaps.

FWIW this is correct metadata for Urdu Nastaliq Unicode:

Pattern has 19 elts (size 32)
family: "Urdu Nastaliq Unicode"(s)
familylang: "en"(s)
style: "Regular"(s)
stylelang: "en"(s)
fullname: "Urdu Nastaliq Unicode"(s)
fullnamelang: "en"(s)
slant: 0(i)(s)
weight: 80(i)(s)
width: 100(i)(s)
foundry: "unknown"(s)
file: "/home/tagoh/Downloads/nastaliq_unicode.ttf"(s)
index: 0(i)(s)
outline: FcTrue(s)
scalable: FcTrue(s)
charset: 
:    7fff    
8000
0006: 88001000 07fffd86 0013cbff 420107ff 01020140 04008200 00341080 

00fb:   03c0 3c0003c0 c03c3f00 ffc0 0180 
f000
00fc:  0880 2000  00010003  0080 
0800
00fd:  3000      

00fe:    3fc3 ffe7f807   
181867ff
(s)
lang: 
fj|ho|ia|ie|io|nr|om|so|ss|st|sw|ts|uz|xh|zu|kj|kwm|ms|ng|rn|rw|sn|za(s)
fontversion: 65536(i)(s)
fontformat: "TrueType"(s)
decorative: FcFalse(s)

and glyph coverage information is:
/home/tagoh/Downloads/nastaliq_unicode.ttf:0 Missing 5 glyph(s) to satisfy the 
coverage for ur language
  0x0623
  0x0624
  0x0626
  0x06be
  0x06c3

For Nafees Nastaleeq:
Pattern has 20 elts (size 32)
family: "Nafees Nastaleeq"(s)
familylang: "en"(s)
style: "Regular"(s)
stylelang: "en"(s)
fullname: "Nafees"(s) "Nafees Nastaleeq"(s)
fullnamelang: "en"(s) "en"(s)
slant: 0(i)(s)
weight: 80(i)(s)
width: 100(i)(s)
foundry: "unknown"(s)
file: "/usr/share/fonts/nafees-nastaleeq/NafeesNastaleeq.ttf"(s)
index: 0(i)(s)
outline: FcTrue(s)
scalable: FcTrue(s)
charset: 
:  ffbf f801 7801  0002  

0006: 883ff00f 07fffdde 01dff976 42011c00 01020140 44008200 001c100e 
03ff
0025:       1000 

00fd:        
2c04
00fe:        
0800
(s)
lang: ur|pa-pk|lah(s)
fontversion: 65667(i)(s)
capability: "otlayout:arab"(s)
fontformat: "TrueType"(s)
decorative: FcFalse(s)

The glyph coverage for Urdu looks like Nafees Nastaleeq is better than Urdu 
Nastaliq Unicode at least. though there seems a lot of fonts that support Urdu 
in the world, DajaVu, Kacst, Nafees, and PakType, and maybe more.
I can't figure out this is really better choice for Urdu and can't settle the 
kind of this issue so I'm always suggesting to have own recipes to give it a 
priority instead of changing the default font here because this is sort of 
subjective matter.

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

Title:
  Urdu with better support:  Default Fonts, Kbd Layout

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

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


[Bug 883960] Re: cannot add m4a picture

2013-03-23 Thread Shouri Chatterjee
Bug is present in precise too.

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

Title:
  cannot add m4a picture

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

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


Re: [Bug 925288] Re: bleachbit.py crashed with SIGABRT in __GI___assert_fail()

2013-03-23 Thread thomas burkholder
After upgrading to the 64 bit version the problem has not repeated.

On Fri, Mar 22, 2013 at 7:47 PM, Luca Falavigna
wrote:

> Could you please check whether this bug is still present or not?
>
> ** Changed in: bleachbit (Ubuntu)
>Status: Confirmed => Incomplete
>
> --
> You received this bug notification because you are subscribed to a
> duplicate bug report (966716).
> https://bugs.launchpad.net/bugs/925288
>
> Title:
>   bleachbit.py crashed with SIGABRT in __GI___assert_fail()
>
> Status in BleachBit: disk space and privacy file cleaner:
>   Confirmed
> Status in “bleachbit” package in Ubuntu:
>   Incomplete
>
> Bug description:
>   crashed while cleaning as a root.
>
>   ProblemType: Crash
>   DistroRelease: Ubuntu 12.04
>   Package: bleachbit 0.9.1-1
>   ProcVersionSignature: Ubuntu 3.2.0-12.21-generic 3.2.2
>   Uname: Linux 3.2.0-12-generic i686
>   ApportVersion: 1.91-0ubuntu1
>   Architecture: i386
>   CrashCounter: 1
>   Date: Thu Feb  2 11:08:01 2012
>   ExecutablePath: /usr/share/bleachbit/bleachbit.py
>   InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386
> (20110427.1)
>   InterpreterPath: /usr/bin/python2.7
>   PackageArchitecture: all
>   ProcCmdline: python /usr/bin/bleachbit
>   Signal: 6
>   SourcePackage: bleachbit
>   StacktraceTop:
>raise () from /lib/i386-linux-gnu/libc.so.6
>abort () from /lib/i386-linux-gnu/libc.so.6
>__assert_fail () from /lib/i386-linux-gnu/libc.so.6
>?? () from /usr/lib/i386-linux-gnu/libX11.so.6
>?? () from /usr/lib/i386-linux-gnu/libX11.so.6
>   Title: bleachbit.py crashed with SIGABRT in raise()
>   UpgradeStatus: Upgraded to precise on 2012-02-01 (1 days ago)
>   UserGroups:
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/bleachbit/+bug/925288/+subscriptions
>

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

Title:
  bleachbit.py crashed with SIGABRT in __GI___assert_fail()

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

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

[Bug 1036921] Re: [needs-packaging] Unyaffs

2013-03-23 Thread Bug Watch Updater
** Changed in: debian
   Status: Unknown => New

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

Title:
  [needs-packaging] Unyaffs

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

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


[Bug 1036075] Re: tp_smapi doesn't support X230

2013-03-23 Thread phil
I found a workaround for setting battery charging levels.  Use TLP -
Linux Advanced Power Management (http://linrunner.de/en/tlp/tlp.html)

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

Title:
  tp_smapi doesn't support X230

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tp-smapi/+bug/1036075/+subscriptions

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


[Bug 1070150] Re: Intermittent black screen or low graphics mode message

2013-03-23 Thread phil
The status in linux (Ubuntu) has been changed to fixed.  What was fixed
and which package version fixes this?

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

Title:
  Intermittent black screen or low graphics mode message

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-03-23 Thread Greg Eden
Quantal is ver 1.14.2-0ubuntu0.1 and Raring is 1.15.4-0ubuntu2. For me
both are now functioning correctly with Samba.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-03-23 Thread Greg Eden
I just updated an Xubuntu Quantal box with Nautilus. I just dumped about
50gb in 6000 files across the network via Samba and it worked without
choking. This is a very good sign.

Anyone else want to test and report? Especially streaming and Rhythymbox
indexing a NAS.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1159319] [NEW] FFe: Sync libnet-twitter-perl 4.00004-1 (universe) from Debian unstable (main)

2013-03-23 Thread Logan Rosen
Public bug reported:

Please sync libnet-twitter-perl 4.4-1 (universe) from Debian
unstable (main)

Explanation of FeatureFreeze exception:
The new version adds support for the new Twitter API, and this is an RC change, 
as Twitter is turning off their old API soon, which would render this package 
unusable. A fuller explanation is available in the Debian bug [1].
[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702486

Changelog entries since current raring version 3.18003-1:

libnet-twitter-perl (4.4-1) unstable; urgency=low

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ Alessandro Ghedini ]
  * Remove myself from Uploaders

  [ gregor herrmann ]
  * New upstream release. Fixes "version 4.x required for new Twitter API".
(Closes: #702486)
  * debian/copyright: update years of upstream and packaging copyright,
remove info about removed third-party files.
  * debian/NEWS: add a note about migrating to the new Twitter API v1.1.
  * Update build and runtime dependencies.
  * Set Standards-Version to 3.9.4 (no changes).
  * debian/rules: remove hashbang from Twitter.pod.

 -- gregor herrmann   Sat, 23 Mar 2013 13:35:22 +0100

** Affects: libnet-twitter-perl (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: libnet-twitter-perl (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  FFe: Sync libnet-twitter-perl 4.4-1 (universe) from Debian
  unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnet-twitter-perl/+bug/1159319/+subscriptions

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


[Bug 1148033] Re: GDBus.Error:org.openobex:Error.Failed: Unable to request session

2013-03-23 Thread Ali Najafi
Me too had this working on all previous versions, but not in 13.04. I recieve 
the same error while sending from PC to phone. Attempting for browsing files on 
the phone doesn’t show up any windows or errors, nothing.
I’ve never been able to set my device visible to others with Ubuntu (I’ve tried 
all versions from 11.04 to 13.04).

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

Title:
  GDBus.Error:org.openobex:Error.Failed: Unable to request session

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

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

[Bug 275902] Re: Very dark screen after return from suspend to memory on Lenovo S10

2013-03-23 Thread Launchpad Bug Tracker
[Expired for acpi (Ubuntu) because there has been no activity for 60
days.]

** Changed in: acpi (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Very dark screen after return from suspend to memory on Lenovo S10

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

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


[Bug 1159285] Re: onscreen keyboard doesnt open, when enabling in universal acces.

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159285/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  onscreen keyboard doesnt open, when enabling in universal acces.

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

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


[Bug 832312] Re: During screen lock windows get moved to other workspaces

2013-03-23 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  During screen lock windows get moved to other workspaces

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

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


[Bug 832312] Re: During screen lock windows get moved to other workspaces

2013-03-23 Thread Launchpad Bug Tracker
[Expired for Compiz because there has been no activity for 60 days.]

** Changed in: compiz
   Status: Incomplete => Expired

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

Title:
  During screen lock windows get moved to other workspaces

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

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


[Bug 912046] Re: 11.10 black screen- nothing seenable on laptop

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  11.10 black screen- nothing seenable on laptop

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

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


[Bug 1019740] Re: Ubuntu 12.04 shuts down unexpectedly

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Ubuntu 12.04 shuts down unexpectedly

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

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


[Bug 968112] Re: Emerald (the original Compiz Window Decorator) not available in Precise and Quantal, while it was working on all Ubuntu versions before [needs-packaging]

2013-03-23 Thread Launchpad Bug Tracker
[Expired for emerald (Ubuntu) because there has been no activity for 60
days.]

** Changed in: emerald (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Emerald (the original Compiz Window Decorator)  not available in
  Precise and Quantal, while it was working on all Ubuntu versions
  before [needs-packaging]

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

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


[Bug 1037362] Re: Fresh install of 12.04 Desktop freezes/unresponsive/goes black after login

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Fresh install of 12.04 Desktop freezes/unresponsive/goes black after
  login

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

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


[Bug 1036921] Re: [needs-packaging] Unyaffs

2013-03-23 Thread Matt Fischer
I'm going to try and get this in Debian first per Wiki:
https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages

** Bug watch added: Debian Bug tracker #703816
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703816

** Also affects: debian via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703816
   Importance: Unknown
   Status: Unknown

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

Title:
  [needs-packaging] Unyaffs

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

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


[Bug 1028702] Re: 3.2.0-27 broke sound

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  3.2.0-27 broke sound

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

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


[Bug 1039516] Re: GUI freezes after laptop lid closed

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  GUI freezes after laptop lid closed

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

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


[Bug 1058346] Re: Touchpad not working on Acer Aspire One 725

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Touchpad not working on Acer Aspire One 725

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

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


[Bug 1073328] Re: [HP g6-2245sg] black screen after resume on

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [HP g6-2245sg] black screen after resume on

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

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


[Bug 1098262] Re: Precise crashes hard when HP array rebuilds

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Precise crashes hard when HP array rebuilds

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

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


[Bug 1076819] Re: Battery status not shown on ubuntu 11.10 - toshiba laptop

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Battery status not shown on ubuntu 11.10 - toshiba laptop

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

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


[Bug 1098739] Re: ubuntu wont let me get past question two of startup survey

2013-03-23 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ubiquity (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  ubuntu wont let me get past question two of startup survey

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

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


[Bug 1098952] Re: grub_efi_secure_boot symbol not found after update to grub 1.99-21ubuntu3.7

2013-03-23 Thread Launchpad Bug Tracker
[Expired for grub2 (Ubuntu) because there has been no activity for 60
days.]

** Changed in: grub2 (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  grub_efi_secure_boot symbol not found after update to grub
  1.99-21ubuntu3.7

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

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


[Bug 1099487] Re: iwlwifi: Microcode SW error detected. Restarting 0x2000000

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  iwlwifi: Microcode SW error detected.  Restarting 0x200

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

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


[Bug 1100826] Re: [MIR] pydoctor and nevow required to build the twisted apidocs

2013-03-23 Thread Launchpad Bug Tracker
[Expired for nevow (Ubuntu) because there has been no activity for 60
days.]

** Changed in: nevow (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [MIR] pydoctor and nevow required to build the twisted apidocs

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

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


[Bug 1101498] Re: suddenly no sound after a few hours

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  suddenly no sound after a few hours

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

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


[Bug 1100887] Re: Broadcom Corporation BCM4313 Wireless Lan Controller Does Not Recognize ZTE ZXV10 W300 Router Connection

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Broadcom Corporation BCM4313 Wireless Lan Controller Does Not
  Recognize ZTE ZXV10 W300 Router Connection

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

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


[Bug 1100826] Re: [MIR] pydoctor and nevow required to build the twisted apidocs

2013-03-23 Thread Launchpad Bug Tracker
[Expired for pydoctor (Ubuntu) because there has been no activity for 60
days.]

** Changed in: pydoctor (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [MIR] pydoctor and nevow required to build the twisted apidocs

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

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


[Bug 1102007] Re: 168c:0032 WiFi doesn't work with 802.11n

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  168c:0032 WiFi doesn't work with 802.11n

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

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


[Bug 1102275] Re: kernel BUG at /build/buildd/linux-3.5.0/fs/btrfs/tree-log.c:3257!

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  kernel BUG at /build/buildd/linux-3.5.0/fs/btrfs/tree-log.c:3257!

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

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


[Bug 1102460] Re: Kernel panic on i7-3610qm Toshiba P875

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Kernel panic on i7-3610qm Toshiba P875

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

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


[Bug 1103094] Re: Wireless Driver is not detected after latest update

2013-03-23 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Wireless Driver is not detected after latest update

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

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


[Bug 1159277] Re: Samsung galaxy s2, unable to open MTP device

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159277/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  Samsung galaxy s2, unable to open MTP device

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

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


[Bug 1159283] Re: store + ubuntu one icons, doesnt have high contrast icons when in high contrastmode..

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159283/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  store + ubuntu one icons, doesnt have high contrast icons when in high
  contrastmode..

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

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


[Bug 1159284] Re: not able to open system settings-->universal acces, and About this PC, together because it replaces each others instance

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159284/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  not able to open system settings-->universal acces, and About this PC,
  together because it replaces each others instance

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

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


[Bug 1159289] Re: screen brightness stutter and cracking sounds, when adjusting with the slider in 'Brighness & Lock'

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159289/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  screen brightness stutter and cracking sounds, when adjusting with the
  slider in 'Brighness & Lock'

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

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


[Bug 1159294] Re: Warning about a faulty disk or DVD when installing Ubuntu

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159294/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  Warning about a faulty disk or DVD when installing Ubuntu

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

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


[Bug 1159295] Re: broken players after upgrade to 13.04

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159295/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  broken players after upgrade to 13.04

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

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


[Bug 1159303] Re: dead link opens in webbrowser after sending apport

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159303/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  dead link opens in webbrowser after sending apport

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

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


[Bug 1159299] Re: Libreoffice's Menustrip not usable with arrow keys, because they wont highlight

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159299/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  Libreoffice's Menustrip not usable with arrow keys, because they wont
  highlight

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

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


[Bug 1159305] Re: cannot start typing for a new filename when made a screenshot

2013-03-23 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1159305/+editstatus and add the
package name in the text box next to the word Package.

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

** Tags added: bot-comment

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

Title:
  cannot start typing for a new filename when made a screenshot

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

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


[Bug 1101804] Re: [needs-packaging] cardpeek

2013-03-23 Thread Matt Fischer
So FYI to anyone working on this. I saw cardpeek in the debian packaging
queue for new packages today. So it will hopefully land there and end in
Ubuntu as a separate request later.

Details:
http://mentors.debian.net/package/cardpeek
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698146

** Bug watch added: Debian Bug tracker #698146
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698146

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

Title:
  [needs-packaging] cardpeek

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

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


[Bug 1159317] [NEW] i think graphic error.(intel.py)

2013-03-23 Thread naing win
Public bug reported:

i want to solve this error.. pls reply to me..

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.5.0-26.42-generic 3.5.7.6
Uname: Linux 3.5.0-26-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.6.1-0ubuntu10
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Sun Mar 24 10:32:33 2013
DistUpgraded: Fresh install
DistroCodename: quantal
DistroVariant: ubuntu
DkmsStatus: i915-3.6-3.5, 0.033.2: added
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0106] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:3977]
InstallationDate: Installed on 2013-01-19 (63 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
MachineType: LENOVO 20195
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-26-generic 
root=UUID=08078bb3-83e5-4e5f-a8d5-f50a81d4e09f ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/25/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: 6DCN20WW(V1.08)
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Product Name
dmi.board.vendor: LENOVO
dmi.board.version: Mainboard version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo IdeaPad S400
dmi.modalias: 
dmi:bvnLENOVO:bvr6DCN20WW(V1.08):bd07/25/2012:svnLENOVO:pn20195:pvrLenovoIdeaPadS400:rvnLENOVO:rnProductName:rvrMainboardversion:cvnLENOVO:ct10:cvrLenovoIdeaPadS400:
dmi.product.name: 20195
dmi.product.version: Lenovo IdeaPad S400
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.8.6-0ubuntu1
version.libdrm2: libdrm2 2.4.40-0ubuntu0~quantal5.1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental 
9.0.2-0ubuntu0.1
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.99.99~git20120913.8637f772-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.20.12-0ubuntu0~quantal5.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.2-0ubuntu3

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


** Tags: apport-bug compiz-0.9 i386 quantal third-party-packages ubuntu

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

Title:
  i think graphic error.(intel.py)

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

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


[Bug 1158937] Re: upgraded ec2 instance fails to init network at boot

2013-03-23 Thread Jey Kottalam
** No longer affects: ubuntu

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

Title:
  upgraded ec2 instance fails to init network at boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1158937/+subscriptions

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


[Bug 1159314] [NEW] Ubuntu Unity completely gone after resetting in compizconfig.

2013-03-23 Thread NoBugs!
Public bug reported:

In Compizconfig, preferences, I set to reset Unity profile. The screen
refreshes, and now there is no top bar, or side bar. Super key no longer
opens dash, and alt doesn't show the menu search thing. I can't even
move or resize windows, even after reboot and log back in.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: unity 6.12.0daily13.03.20-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-13.23-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
NonfreeKernelModules: wl
.tmp.unity.support.test.0:
 
ApportVersion: 2.9.2-0ubuntu2
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,regex,workarounds,gnomecompat,scale,put,move,resize,grid,mousepoll,imgpng,place,session,expo,unityshell]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sat Mar 23 20:41:54 2013
DistUpgraded: 2013-03-23 09:12:22,824 DEBUG enabling apt cron job
DistroCodename: raring
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) 
[8086:2a02] (rev 03) (prog-if 00 [VGA controller])
   Subsystem: Apple Inc. Device [106b:00a1]
   Subsystem: Apple Inc. Device [106b:00a1]
InstallationDate: Installed on 2012-03-07 (382 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
MachineType: Apple Inc. MacBook4,1
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-13-generic 
root=UUID=d7cc0fdf-615d-40c5-9ed5-f42b9add ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: Upgraded to raring on 2013-03-23 (0 days ago)
dmi.bios.date: 02/09/08
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MB41.88Z.00C1.B00.0802091535
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Mac-F22788A9
dmi.board.vendor: Apple Inc.
dmi.board.version: PVT
dmi.chassis.asset.tag: Asset Tag#
dmi.chassis.type: 2
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-F22788A9
dmi.modalias: 
dmi:bvnAppleInc.:bvrMB41.88Z.00C1.B00.0802091535:bd02/09/08:svnAppleInc.:pnMacBook4,1:pvr1.0:rvnAppleInc.:rnMac-F22788A9:rvrPVT:cvnAppleInc.:ct2:cvrMac-F22788A9:
dmi.product.name: MacBook4,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.
version.compiz: compiz 1:0.9.9~daily13.03.20-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.42-0ubuntu2
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.3-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.3-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.3-0ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2b2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.1.0-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.21.5-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.6-0ubuntu3b1
xserver.bootTime: Sat Mar 23 20:36:17 2013
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs: OutputDVI1   LVDS1 
TV1VGA1
xserver.version: 2:1.13.3-0ubuntu3
xserver.video_driver: intel

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


** Tags: amd64 apport-bug compiz-0.9 raring ubuntu

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

Title:
  Ubuntu Unity completely gone after resetting in compizconfig.

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-03-23 Thread Hartwig Kolbe
Today, gvfs was automatically updated via software update.
Is this problem solved, now?
How to check gvfs version?

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


Re: [Bug 1159311] Re: I keep getting the same message

2013-03-23 Thread Stephen Lega
On 3/23/13, dracko <1159...@bugs.launchpad.net> wrote:
> forgot it, which ubuntu version are you using, and in what lenguage, in
> x86 or 64 bits?, could you plz tell us the computer model, have you
> tried with another distro or reinstalling network connections?

I am using Ubuntu 12.10, in English, and the 32-bit version.

According to the "About this Computer", my laptop is a Toshiba
Satellite-C655 with 3.9 GB of memory and the processor is an Intel
Pentium CPU B960 @ 2.20 GHz x2

I have not tried another distro, and I have not reinstalled the
network connections.

> ** Changed in: xorg (Ubuntu)
>  Assignee: dracko (drackolord) => (unassigned)
>
> ** Changed in: xorg (Ubuntu)
>Status: Confirmed => New
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1159311
>
> Title:
>   I keep getting the same message
>
> Status in “xorg” package in Ubuntu:
>   New
>
> Bug description:
>   For the past week or so, I continue to receive the same message as
>   long as I'm logged in under my name and connected to a wifi network.
>
>   "Sorry Ubuntu 12.10 has experienced an internal error
>   If you notice further problems, try restarting the computer."
>
>   When I restart the computer, nothing changes. I get the same message,
>   and I get it repeatedly regardless of whether I tell it to submit a
>   report or ignore it.
>
>   When I click show details, it reads:
>   usr/share/apport/apport-gpu-error-intel.py
>
>   After this message a second window pops up with a question:
>   "Apport has detected a possible GPU hang. Did your system recently lock up
> and/or require a hard reboot?"
>   [I click "No".]
>
>   Then I get another message about the manager log files with another
>   question: "Do you want to includes these logs in your report?" I have
>   clicked both Yes and No at different times.
>
>   Then another window pops up labeled Apport with yet another question:
> "Would you be willing to do addition debugging work?
>   I have clicked "I don't know", "No", and "Yes, if it's not too
> technical."
>
>   Inevitably, a few minutes later, the cycle of message starts again.
>   (In the time in took me to type this message, the cycle happened
>   twice.)
>
>   I have restarted the computer and logged in as a Guest. As a Guest, I
>   do not receive these messages.
>
>   Stephen Lega
>   mistasteve40...@gmail.com
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1159311/+subscriptions
>

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

Title:
  I keep getting the same message

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

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

Re: [Bug 1159311] Re: I keep getting the same message

2013-03-23 Thread Stephen Lega
On 3/23/13, dracko <1159...@bugs.launchpad.net> wrote:
> and ass a guest and in you rnormal account you can connect correctly to
> your wifi network dude?
Yes.

> have you install any new firmware-drivers?
Not that I'm aware of. I have installed software updates as they have
been recommended.

> how do you connect to your wifi network, with a pc-laptop internal
> adapter?
I believe so.

> have you tried to another network of  friedns, neighbor?
I know I can connect to the wifi at my girlfriend's house, although I
haven't had a reason to do so on my laptop since I started getting the
messages. I will test it the next time I visit her.

> have you tried using another wifi adapter, card? or with a normal wire?
No and no.

> tell us plz
> good luck with this im sure it will help u
>
> ** Changed in: xorg (Ubuntu)
>  Assignee: (unassigned) => dracko (drackolord)
>
> ** Changed in: xorg (Ubuntu)
>Status: New => Confirmed
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1159311
>
> Title:
>   I keep getting the same message
>
> Status in “xorg” package in Ubuntu:
>   New
>
> Bug description:
>   For the past week or so, I continue to receive the same message as
>   long as I'm logged in under my name and connected to a wifi network.
>
>   "Sorry Ubuntu 12.10 has experienced an internal error
>   If you notice further problems, try restarting the computer."
>
>   When I restart the computer, nothing changes. I get the same message,
>   and I get it repeatedly regardless of whether I tell it to submit a
>   report or ignore it.
>
>   When I click show details, it reads:
>   usr/share/apport/apport-gpu-error-intel.py
>
>   After this message a second window pops up with a question:
>   "Apport has detected a possible GPU hang. Did your system recently lock up
> and/or require a hard reboot?"
>   [I click "No".]
>
>   Then I get another message about the manager log files with another
>   question: "Do you want to includes these logs in your report?" I have
>   clicked both Yes and No at different times.
>
>   Then another window pops up labeled Apport with yet another question:
> "Would you be willing to do addition debugging work?
>   I have clicked "I don't know", "No", and "Yes, if it's not too
> technical."
>
>   Inevitably, a few minutes later, the cycle of message starts again.
>   (In the time in took me to type this message, the cycle happened
>   twice.)
>
>   I have restarted the computer and logged in as a Guest. As a Guest, I
>   do not receive these messages.
>
>   Stephen Lega
>   mistasteve40...@gmail.com
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1159311/+subscriptions
>

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

Title:
  I keep getting the same message

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

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

[Bug 1113782] Re: compiz crashed with SIGSEGV in g_type_check_instance_cast()

2013-03-23 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: compiz (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/1113782

Title:
  compiz crashed with SIGSEGV in g_type_check_instance_cast()

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

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


[Bug 488247] Re: Inkscape is slow starting

2013-03-23 Thread Aristotelis
I can confirm that the font issue persists on Ubuntu 12.04.2 LTS.
Renaming the ~./fonts directory before starting inkscape dramatically
reduces startup time and startup CPU load.

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

Title:
  Inkscape is slow starting

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

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


[Bug 1145821] Re: 13.04 doesn’t draw user background on login screen

2013-03-23 Thread Ali Najafi
With the latest updates today, March 24th, it’s solved. @David Pabon, please 
update and check if the problem still exists.
I couldn’t recognize which package had the problem, but list of changes to my 
packages are:

Installed:
•  linux-headers-3.8.0-14 (3.8.0-14.24)
•  linux-headers-3.8.0-14-generic (3.8.0-14.24)
•  linux-image-3.8.0-14-generic (3.8.0-14.24)
•  linux-image-extra-3.8.0-14-generic (3.8.0-14.24)

Updated:
•  nautilus (3.6.3-0ubuntu11, 3.6.3-0ubuntu12)
•  linux-headers-generic (3.8.0.13.27, 3.8.0.14.29)
•  libglib2.0-bin (2.35.8-0ubuntu1, 2.35.9-2ubuntu1)
•  linux-image-generic (3.8.0.13.27, 3.8.0.14.29)
•  linux-libc-dev (3.8.0-13.23, 3.8.0-14-24)
•  nautilus-data (3.6.3-0ubuntu11, 3.6.3.-0ubuntu12)
•  gnome-system-monitor (3.7.90-0ubuntu2, 3.7.92-1ubuntu1)
•  libglib2.0-data (2.35.8-0ubuntu1, 2.35.9-2ubuntu1)
•  libnautilus-extension1a (3.6.3-0ubuntu11, 3.6.3-0ubuntu12)
•  libglib2.0-0 (2.35.8-0ubuntu1, 2.35.9-2ubuntu1)
•  linux-generic (3.8.0.13.27, 3.8.0.14.29)

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

Title:
  13.04 doesn’t draw user background on login screen

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

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

[Bug 1159311] Re: I keep getting the same message

2013-03-23 Thread dracko
forgot it, which ubuntu version are you using, and in what lenguage, in
x86 or 64 bits?, could you plz tell us the computer model, have you
tried with another distro or reinstalling network connections?

** Changed in: xorg (Ubuntu)
 Assignee: dracko (drackolord) => (unassigned)

** Changed in: xorg (Ubuntu)
   Status: Confirmed => New

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

Title:
  I keep getting the same message

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

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


[Bug 1159201] Re: Automated "crash" report booting Lubuntu live i386 20130322

2013-03-23 Thread cariboo907
** This bug is no longer a duplicate of private bug 1153342

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

Title:
  Automated "crash" report booting Lubuntu live i386 20130322

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

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


[Bug 1159311] Re: I keep getting the same message

2013-03-23 Thread dracko
and ass a guest and in you rnormal account you can connect correctly to
your wifi network dude?

have you install any new firmware-drivers?

how do you connect to your wifi network, with a pc-laptop internal
adapter?

have you tried to another network of  friedns, neighbor?

have you tried using another wifi adapter, card? or with a normal wire?

tell us plz
good luck with this im sure it will help u

** Changed in: xorg (Ubuntu)
 Assignee: (unassigned) => dracko (drackolord)

** Changed in: xorg (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/1159311

Title:
  I keep getting the same message

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

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


[Bug 1154197] Re: [FFe] [needs packaging] New package libcangjie

2013-03-23 Thread Howard Chan
This package is already approved into the Ubuntu universe repository.
Henceforth setting it as "Fix Released".

** Package changed: ubuntu => libcangjie (Ubuntu)

** Changed in: libcangjie (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/1154197

Title:
  [FFe] [needs packaging] New package libcangjie

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

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


[Bug 1159311] [NEW] I keep getting the same message

2013-03-23 Thread Stephen Lega
Public bug reported:

For the past week or so, I continue to receive the same message as long
as I'm logged in under my name and connected to a wifi network.

"Sorry Ubuntu 12.10 has experienced an internal error
If you notice further problems, try restarting the computer."

When I restart the computer, nothing changes. I get the same message,
and I get it repeatedly regardless of whether I tell it to submit a
report or ignore it.

When I click show details, it reads:
usr/share/apport/apport-gpu-error-intel.py

After this message a second window pops up with a question:
"Apport has detected a possible GPU hang. Did your system recently lock up 
and/or require a hard reboot?"
[I click "No".]

Then I get another message about the manager log files with another
question: "Do you want to includes these logs in your report?" I have
clicked both Yes and No at different times.

Then another window pops up labeled Apport with yet another question: "Would 
you be willing to do addition debugging work?
I have clicked "I don't know", "No", and "Yes, if it's not too technical."

Inevitably, a few minutes later, the cycle of message starts again. (In
the time in took me to type this message, the cycle happened twice.)

I have restarted the computer and logged in as a Guest. As a Guest, I do
not receive these messages.

Stephen Lega
mistasteve40...@gmail.com

** Affects: xorg (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/1159311

Title:
  I keep getting the same message

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

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


[Bug 1157859] Re: [FFe][needs-packaging] nootka

2013-03-23 Thread Scott Kitterman
If Riddell will New it and someone else uploads, I think it's fine.
Approved.

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

Title:
  [FFe][needs-packaging] nootka

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

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


[Bug 1036921] Re: [needs-packaging] Unyaffs

2013-03-23 Thread Matt Fischer
** Changed in: ubuntu
 Assignee: (unassigned) => Matt Fischer (mfisch)

** Changed in: ubuntu
   Status: Confirmed => In Progress

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

Title:
  [needs-packaging] Unyaffs

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

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


[Bug 1157859] Re: [FFe][needs-packaging] nootka

2013-03-23 Thread Howard Chan
** Description changed:

  Please package nootka 0.8.60
  
   Reported by kubotu for IRC user Riddell
  
  To review the package, dget -x
  https://launchpad.net/~smartboyhw/+archive/ppa/+files/nootka_0.8.60
  %7Ebeta-0ubuntu1.dsc
+ 
+ Install log: http://paste.ubuntu.com/5642054/
+ 
+ Screenshot:
+ http://postimg.org/image/c2tu7d4ep/

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

Title:
  [FFe][needs-packaging] nootka

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

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

[Bug 1157859] Re: [FFe][needs-packaging] nootka

2013-03-23 Thread Howard Chan
The Kubuntu Team would like this package to be in Raring Ringtail.
Henceforth I am asking for FeatureFreezeException for this package and
subscribing ubuntu-release. I have also subscribed the MOTU for them to
review my package.

** Summary changed:

- [needs-packaging] nootka
+ [FFe][needs-packaging] nootka

** Description changed:

  Please package nootka 0.8.60
  
+  Reported by kubotu for IRC user Riddell
  
-  Reported by kubotu for IRC user Riddell
+ To review the package, dget -x
+ https://launchpad.net/~smartboyhw/+archive/ppa/+files/nootka_0.8.60
+ %7Ebeta-0ubuntu1.dsc

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

Title:
  [FFe][needs-packaging] nootka

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

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

[Bug 1025935] Re: Thunderbird 14.0 scrollbars have a wrong background [regression]

2013-03-23 Thread Ali Najafi
As Pete Chown mentioned, this bug isn’t related to Thunderbirf itself; I
faced this bug with Opera as well, however it never occurs in Ubuntu
12.10 Qantal or 13.04 Raring.

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

Title:
  Thunderbird 14.0 scrollbars have a wrong background [regression]

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

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

[Bug 1153245] Re: random messages about not being able to recover documents (that are never created) on startup

2013-03-23 Thread Joeri Eilander
dont got this issue anymore after its latest update :)

** Changed in: ubuntu
   Status: Incomplete => Invalid

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

Title:
  random messages about not being able to recover documents (that are
  never created) on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1153245/+subscriptions

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


[Bug 1153236] Re: make users clear how to use to use the unity scopes

2013-03-23 Thread Joeri Eilander
i mean, right clicking to show a files or programs information. is hard
to understand, after 3 years of using unity i accidentally discovered
that you can right click an icon,

also removing applications is also difficult, because it only shows up
in the app lens, and not in the main lens.

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

Title:
  make users clear how to use to use the unity scopes

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

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


[Bug 1147993] Re: system settings navigationbuttons wrong alignment for shadow

2013-03-23 Thread Joeri Eilander
i dont have to, this is just the way it is designed.

** Changed in: gnome-control-center (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/1147993

Title:
  system settings navigationbuttons  wrong alignment for shadow

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

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


[Bug 1152395] Re: system test lots of issues

2013-03-23 Thread Joeri Eilander
still not solved after latest update of it.

** Changed in: checkbox (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/1152395

Title:
  system test lots of issues

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

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


[Bug 1147915] Re: wrong behavior of maximazing when docked on a side

2013-03-23 Thread Joeri Eilander
i opened a libreoffice writer, then docked it to the left side, then i
clicked the maximise button. happans me on every system i tested... you
really must be able to  reproduce. still not solved, only thing solved
is not losing its borders, but stil wont maximise. only centers itself
in my screen...

** Changed in: unity (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/1147915

Title:
  wrong behavior of maximazing when docked on a side

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

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


[Bug 987848] Re: _udisks-ssh service advertised over ahahi by default

2013-03-23 Thread Dmitrijs Ledkovs
udisks advertises itself over avahi by default. Do we really want that
by default on all desktops?

** Information type changed from Public to Public Security

** Changed in: udisks (Ubuntu)
   Status: New => Confirmed

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

** Changed in: udisks (Ubuntu)
 Assignee: (unassigned) => Ubuntu Security Team (ubuntu-security)

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

Title:
  _udisks-ssh service advertised over ahahi by default

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

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


[Bug 1153229] Re: adding a wallpaper twice the same time

2013-03-23 Thread Joeri Eilander
heres the screenshot, i was able to add as much as i want, the same
wallpapers to 1 list... sometimes it really messes up my list.

** Attachment added: "twice"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1153229/+attachment/3593244/+files/twice

** Changed in: gnome-control-center (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/1153229

Title:
  adding a wallpaper twice the same time

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

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


[Bug 1159306] WifiSyslog.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593224/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] UdevLog.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593223/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] RfKill.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1159306/+attachment/3593221/+files/RfKill.txt

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

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] UdevDb.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1159306/+attachment/3593222/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] ProcModules.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593219/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] PulseList.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593220/+files/PulseList.txt

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

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] ProcInterrupts.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593218/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] ProcEnviron.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593217/+files/ProcEnviron.txt

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

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] ProcCpuinfo.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593216/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] Lsusb.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1159306/+attachment/3593215/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] IwConfig.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593212/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] Lspci.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1159306/+attachment/3593214/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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

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


[Bug 1159306] CurrentDmesg.txt

2013-03-23 Thread C de-Avillez
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1159306/+attachment/3593211/+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/1159306

Title:
  WARNING: at /build/buildd/linux-3.8.0/net/wireless/sme.c:642
  cfg80211_roamed+0x9a/0xa0 [cfg80211]()

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