[Bug 1135419] Re: replaygain plugin fails to load

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

** Changed in: rhythmbox (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/1135419

Title:
  replaygain plugin fails to load

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

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


[Bug 883962] Re: cannot add m4a files

2013-03-18 Thread Charlie Shaw
Seeing same problem with gtkpod 2.1.0 installed on Ubuntu 11.10 and
gtkpod 2.1.2 on Lubuntu 12.10; trying to load data to an old iPod Photo

Just before the error dialogue re .m4a files not being recognized, there
is a couple of errors reported related to trying to write to the users
home directory (eg /home/user ) and 'user.ext'.

gtkpod also does not seem to be consistent in terms of the how/when/if
it recognizes the mounted / loaded iPod; dmesg contains complaints about
sending ioctl 2285 to a partition.

Fix described above by keplicz works for me on the Lubuntu system (not
yet tried the 11.10 machine).

NOTE: you need ensure that whatever programme is creating the .m4a
files, the mp3/mp4 'tag fields' are populated with artist name, track
etc (not sure what the minimum requirement is).

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

Title:
  cannot add m4a files

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

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


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-18 Thread Adam Stokes
Updated debdiff to include bug lp in changelog

** Description changed:

  Binary package hint: bash
  
  [Impact]
  Bash-4.2 tries to leave completed directory names as the user typed them,
  without expanding them to a full pathname.  One effect of this is that
  shell variables used in pathnames being completed (e.g., $HOME) are left
  unchanged, but the `$' is quoted by readline because it is a special
  character to the shell.
  
  [Test Case]
  - [Current test case showing expected behavior]
  
  Items to address so far:
-   - that $ is escaped less
-   - that direxpand does not expand as expected
-   - that direxpand option is available and if enabled, expands directories 
with variable names.
+   - that $ is escaped less
+   - that direxpand does not expand as expected
+   - that direxpand option is available and if enabled, expands directories 
with variable names.
+ 
+ zef:~/Projects/precise-amd64$ mkdir -p /tmp/testd/finger/toe
+ zef:~/Projects/precise-amd64$ cd /tmp/testd/
+ zef:/tmp/testd$ td=`pwd`
+ zef:/tmp/testd$ cd ../
+ zef:/tmp$ ls \$td/finger 
+ 
+ zef:/tmp$ shopt -s direxpand
+ zef:/tmp$ ls $td/fingTAB
+ zef:/tmp$ ls /tmp/testd/finger/
+ toe
  
  - [Previous Test Case showing non-working bash installation]
- 
  ~$ mkdir -p /tmp/testd/finger/toe
  /tmp$ cd /tmp/testd
  /tmp/testd$ td=`pwd`
  /tmp/testd$ cd ../
  /tmp$ ls $td/fing
  
  Type a TAB character at this point, and bash completion makes the line:
  /tmp$ ls \$td/finger
  
  Note that while 'fing' has been expanded to 'finger ' (with a space at the 
end), the $td variable reference has had the
  $ character quoted with a backslash.  This prevents further extension of the 
pathname, and in fact makes
  the command invalid; if I type a newline at this point, I get:
  ls: cannot access $td/finger: No such file or directory
  
  This is not useful behavior.  I believe that in Ubuntu 10.10, the $td 
variable would have been expanded
  to  '/tmp/testd', and subsequent completions starting from 
'/tmp/testd/finger' would have worked.
  
  [The version of /etc/bash_completion.d/acroread.sh that is installed
  starts with:
  
  # _filedir : to handle file and directories with spaces in their names.
  if ! type _filedir  /dev/null ; then
  
  so I don't think that file is overriding /etc/bash_completion's _filedir
  ...]
  
  [Regression Potential]
  
- 
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: bash 4.2-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri May  6 09:48:29 2011
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  SourcePackage: bash
  UpgradeStatus: Upgraded to natty on 2011-04-30 (6 days ago)

** Description changed:

  Binary package hint: bash
  
  [Impact]
  Bash-4.2 tries to leave completed directory names as the user typed them,
  without expanding them to a full pathname.  One effect of this is that
  shell variables used in pathnames being completed (e.g., $HOME) are left
  unchanged, but the `$' is quoted by readline because it is a special
  character to the shell.
  
  [Test Case]
  - [Current test case showing expected behavior]
  
  Items to address so far:
    - that $ is escaped less
    - that direxpand does not expand as expected
    - that direxpand option is available and if enabled, expands directories 
with variable names.
  
  zef:~/Projects/precise-amd64$ mkdir -p /tmp/testd/finger/toe
  zef:~/Projects/precise-amd64$ cd /tmp/testd/
  zef:/tmp/testd$ td=`pwd`
  zef:/tmp/testd$ cd ../
- zef:/tmp$ ls \$td/finger 
+ zef:/tmp$ ls \$td/finger
  
  zef:/tmp$ shopt -s direxpand
  zef:/tmp$ ls $td/fingTAB
  zef:/tmp$ ls /tmp/testd/finger/
  toe
  
  - [Previous Test Case showing non-working bash installation]
  ~$ mkdir -p /tmp/testd/finger/toe
  /tmp$ cd /tmp/testd
  /tmp/testd$ td=`pwd`
  /tmp/testd$ cd ../
  /tmp$ ls $td/fing
  
  Type a TAB character at this point, and bash completion makes the line:
  /tmp$ ls \$td/finger
  
  Note that while 'fing' has been expanded to 'finger ' (with a space at the 
end), the $td variable reference has had the
  $ character quoted with a backslash.  This prevents further extension of the 
pathname, and in fact makes
  the command invalid; if I type a newline at this point, I get:
  ls: cannot access $td/finger: No such file or directory
  
  This is not useful behavior.  I believe that in Ubuntu 10.10, the $td 
variable would have been expanded
  to  '/tmp/testd', and subsequent completions starting from 
'/tmp/testd/finger' would have worked.
  
  [The version of /etc/bash_completion.d/acroread.sh that is installed
  starts with:
  
  # _filedir : to handle file and directories with spaces in their names.
  if ! type _filedir  /dev/null ; then
  
  so I don't think that file is overriding /etc/bash_completion's _filedir
  ...]
  
  [Regression 

[Bug 1156881] [NEW] EXIF GPSLatitudeRef tag value setting gets inverted

2013-03-18 Thread SandraLAVixen
Public bug reported:

Try this:

$ exiftool -c %d %d %f -EXIF:GPSLatitude=82 23 43.234 
-EXIF:GPSLatitudeRef=North -EXIF:GPSLongitude=120 48 62.012 
-EXIF:GPSLongitudeRef=West test.jpg
1 image files updated

Then you get:

$ exiftool -c %d %d %f -G -t test.jpg
ExifToolExifTool Version Number 7.89
EXIFGPS Version ID  2.2.0.0
EXIFGPS Longitude Ref   West
Composite   GPS Latitude82 23 43.234000 N
Composite   GPS Latitude RefSouth
Composite   GPS Longitude   120 49 2.012000 W
Composite   GPS Position82 23 43.234000 N, 120 49 2.012000 W

** Affects: libimage-exiftool-perl (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: cardinal exif exiftool gps latituderef

** Attachment added: Sample image file with exhibited tags
   https://bugs.launchpad.net/bugs/1156881/+attachment/3582192/+files/test.jpg

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

Title:
  EXIF GPSLatitudeRef tag value setting gets inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libimage-exiftool-perl/+bug/1156881/+subscriptions

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


[Bug 1156880] [NEW] gthumb can no more send pictures to facebook

2013-03-18 Thread Le Gluon Du Net
Public bug reported:

hello,

ubuntu raring provide an old Gthumb version wich can no more send pictures to 
Facebook album due to a recent api changes. 
But this bug is resolved in the last gthumb version.
More than this, Gthumb could now show Gimp pictures wihout to open them.
Could you upload a more recent in raring to correct this problem?

Thank you for your help.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: gthumb 3:3.0.2-0ubuntu3
ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 23:06:25 2013
InstallationDate: Installed on 2012-07-07 (254 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
MarkForUpload: True
SourcePackage: gthumb
UpgradeStatus: Upgraded to raring on 2013-02-13 (33 days ago)

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


** Tags: amd64 apport-bug raring

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

Title:
  gthumb can no more send pictures to facebook

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

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


[Bug 1156879] [NEW] totem crashed with SIGABRT in raise()

2013-03-18 Thread Len Ovens
Public bug reported:

Crashes when used by firefox to play an MP3 or in context to play video or just 
from the commandline:
joe@studio1304:~$ totem
Fontconfig warning: /etc/fonts/conf.d/50-user.conf, line 9: reading 
configurations from ~/.fonts.conf is deprecated.
totem: nv04_state_frag.c:248: get_texenv_mode: Assertion `0' failed.
Aborted (core dumped)

TNT2 nvidia card
open driver. (nouveau)

ProblemType: Crash
DistroRelease: Ubuntu 13.04
Package: totem 3.6.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.8.0-12.8-lowlatency 3.8.2
Uname: Linux 3.8.0-12-lowlatency i686
ApportVersion: 2.9.1-0ubuntu1
Architecture: i386
Date: Mon Mar 18 14:57:11 2013
ExecutablePath: /usr/bin/totem
InstallationDate: Installed on 2013-03-13 (5 days ago)
InstallationMedia: Ubuntu-Studio 13.04 Raring Ringtail - Alpha i386 (20130312)
MarkForUpload: True
ProcCmdline: totem
Signal: 6
SourcePackage: totem
StacktraceTop:
 raise () from /lib/i386-linux-gnu/libc.so.6
 abort () from /lib/i386-linux-gnu/libc.so.6
 ?? () from /lib/i386-linux-gnu/libc.so.6
 __assert_fail () from /lib/i386-linux-gnu/libc.so.6
 ?? () from /usr/lib/i386-linux-gnu/dri/nouveau_vieux_dri.so
Title: totem crashed with SIGABRT in raise()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm audio cdrom dip lpadmin plugdev sambashare sudo

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


** Tags: apport-crash i386 need-i386-retrace raring

** Information type changed from Private to Public

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

Title:
  totem crashed with SIGABRT in raise()

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

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


[Bug 1135174] Re: linux-ti-omap4: 3.2.0-1427.36 -proposed tracker

2013-03-18 Thread John Johansen
Looks good

** Changed in: kernel-sru-workflow/security-signoff
   Status: In Progress = Fix Released

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

Title:
  linux-ti-omap4: 3.2.0-1427.36 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1135174/+subscriptions

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


[Bug 932177] Re: XFCE (and other non-GNOME) desktops do not initialise gnome-keyring correctly / WARNING: gnome-keyring:: couldn't connect to PKCS11

2013-03-18 Thread martin suc
does exist any solution which works as for desktop as for terminal
commands ?

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

Title:
  XFCE (and other non-GNOME) desktops do not initialise gnome-keyring
  correctly / WARNING: gnome-keyring:: couldn't connect to PKCS11

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

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


[Bug 1155845] Re: Targus Bluetooth 4.0 USB adapter using Broadcom BCM20702A0 not supported, sort of, needs firmware. Kernel regression maybe?

2013-03-18 Thread Nathaniel Homier
Kernel 3.9.0-030900rc3-generic #201303171935 SMP Sun Mar 17 23:36:17 UTC
2013 x86_64 x86_64 x86_64 GNU/Linux fixes the issue.

** Tags added: kernel-fixed-upstream

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

Title:
  Targus Bluetooth 4.0 USB adapter using Broadcom BCM20702A0 not
  supported, sort of, needs firmware.  Kernel regression maybe?

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

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


[Bug 1104476] Re: Network manager cannot connect to Eduroam (worldwide WiFi network for university students)

2013-03-18 Thread hepaly
I have the same problem. I can not connect to wifi network (WPA and WPA2 
Enterprise PEAP, MSCHAPv2 +username/password)
The network manager doesn't accept my password. On last week, it worked well. 
(2013. 03.15.)

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

Title:
  Network manager cannot connect to Eduroam (worldwide WiFi network for
  university students)

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

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


[Bug 1040353] Re: apportcheckresume crashed with AssertionError in _assert_bin_mode(): file stream must be in binary mode

2013-03-18 Thread deskenny
sorry, should have said version, ubuntu 12.10

Intel® Core™2 Duo CPU T7250 @ 2.00GHz × 2

Dell xps 1330

des@des-XPS-M1330:~$ sudo /usr/share/apport/apportcheckresume
[sudo] password for des: 
sudo: /usr/share/apport/apportcheckresu: command not found
des@des-XPS-M1330:~$ sudo /usr/share/apport/apportcheckresume
apportcheckresume failed
Traceback (most recent call last):
  File /usr/share/apport/apportcheckresume, line 90, in module
sys.exit(main())
  File /usr/share/apport/apportcheckresume, line 54, in main
pr['Tags'] = 'resume ' + pr['Failure']
  File /usr/lib/python3.2/collections.py, line 800, in __getitem__
raise KeyError(key)
KeyError: 'Failure'

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

Title:
  apportcheckresume crashed with AssertionError in _assert_bin_mode():
  file stream must be in binary mode

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

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

[Bug 841409] Re: GEdit is the only choice as Calendar application in Default Applications dialog

2013-03-18 Thread Rainer Rohde
Thanks for the feedback, Nekhelesh.

It's a shame that only with Ubuntu Touch is there some movement towards
a calendar app. I wonder why in Ubuntu Touch good old gedit wasn't
chosen as Default Calendar App. ;) Got any insights on that?

Anyway, desktop Ubuntu needs such calendar app asap -- and it should be
customizable to accept many different providers.

BTW - what ever happened to this Gnome Calendar:
https://live.gnome.org/Design/Apps/Calendar  ?

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

Title:
  GEdit is the only choice as Calendar application in Default
  Applications dialog

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

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


[Bug 1156885] [NEW] Banshee freezes and takes 100% on startup

2013-03-18 Thread GonzO
Public bug reported:

Banshee 2.6.0; Raring Ringtail with latest everything as of March 18,
5:23pm CST.

Banshee's main UI opens, but then turns grey.  CPU is at 100%.  This
remains the case until the app is force-closed.

I have found no way to work around this, not even removing plugin DLLs.

The relevant lines from the banshee --debug info are:

[Info  17:18:37.083] GStreamer version 1.0.5.0, gapless: True, replaygain: True
[Info  17:18:37.294] Creating Accessible for 
Banshee.Collection.Gui.TrackListView

(Banshee:15893): GLib-GObject-WARNING **: attempting to add an interface
(AtkComponent) to class (__gtksharp_95_Hyena_Gui_BaseWidgetAccessible)
after class_init

(Banshee:15893): GLib-GObject-WARNING **: attempting to add an interface
(AtkTable) to class
(__gtksharp_96_Hyena_Data_Gui_Accessibility_ListViewAccessible+601+5b+5bBanshee_Collection_TrackInfo+2c+20Banshee_Core+2c+20Version+3d2_6_0_0+2c+20Culture+3dneutral+2c+20PublicKeyToken+3dnull+5d+5d)
after class_init

(Banshee:15893): GLib-GObject-WARNING **: attempting to add an interface 
(AtkSelection) to class 
(__gtksharp_96_Hyena_Data_Gui_Accessibility_ListViewAccessible+601+5b+5bBanshee_Collection_TrackInfo+2c+20Banshee_Core+2c+20Version+3d2_6_0_0+2c+20Culture+3dneutral+2c+20PublicKeyToken+3dnull+5d+5d)
 after class_init
Exception in Gtk# callback delegate
  Note: Applications can use GLib.ExceptionManager.UnhandledException to handle 
the exception.
System.ArgumentException: Invalid signal name: model_changed
  at GLib.Signal.Emit (GLib.Object instance, System.String detailed_signal, 
System.Object[] args) [0x0] in filename unknown:0 
  at 
Hyena.Data.Gui.Accessibility.ListViewAccessible`1[Banshee.Collection.TrackInfo].EmitModelChanged
 () [0x0] in filename unknown:0 
  at Hyena.ThreadAssist.ProxyToMain (Hyena.InvokeHandler handler) [0x0] in 
filename unknown:0 
  at 
Hyena.Data.Gui.Accessibility.ListViewAccessible`1[Banshee.Collection.TrackInfo].OnModelChanged
 (System.Object o, System.EventArgs a) [0x0] in filename unknown:0 
  at 
Hyena.Data.Gui.Accessibility.ListViewAccessible`1[Banshee.Collection.TrackInfo]..ctor
 (GLib.Object widget) [0x0] in filename unknown:0 
  at 
Hyena.Data.Gui.ListViewAccessibleFactory`1[Banshee.Collection.TrackInfo].OnCreateAccessible
 (GLib.Object obj) [0x0] in filename unknown:0 
  at Atk.ObjectFactory+Marshaler.CreateAccessible_cb (IntPtr raw) [0x0] in 
filename unknown:0 
   at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean 
is_terminal)
   at Atk.ObjectFactory+Marshaler.CreateAccessible_cb(IntPtr raw)
   at Gtk.Application.gtk_main()
   at Gtk.Application.Run()
   at Banshee.Gui.GtkBaseClient.Run()
   at Banshee.Gui.GtkBaseClient.Startup()
   at Hyena.Gui.CleanRoomStartup.Startup(Hyena.Gui.StartupInvocationHandler 
startup)
   at Banshee.Gui.GtkBaseClient.Startup()
   at Banshee.Gui.GtkBaseClient.Startup(System.String[] args)
   at Nereid.Client.Main(System.String[] args)
   at System.AppDomain.ExecuteAssembly(System.AppDomain , 
System.Reflection.Assembly , System.String[] )
   at System.AppDomain.ExecuteAssemblyInternal(System.Reflection.Assembly a, 
System.String[] args)
   at System.AppDomain.ExecuteAssembly(System.String assemblyFile, 
System.Security.Policy.Evidence assemblySecurity, System.String[] args)
   at System.AppDomain.ExecuteAssembly(System.String assemblyFile)
   at Booter.Booter.BootClient(System.String clientName)
   at Booter.Booter.Main()

** Affects: banshee (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/1156885

Title:
  Banshee freezes and takes 100% on startup

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

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


[Bug 1096247] Re: [Lenovo E135]: System fails to resume from suspend

2013-03-18 Thread Jeff Marcom
** Tags added: jeff-poked

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

Title:
  [Lenovo E135]: System fails to resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1096247/+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-18 Thread Greg Eden
All the GVFS packages were updated in Raring overnight. Anyone want to
see if it helped?

-- 
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 1030100] Re: [hp Z200 Workstation] Fails Suspend

2013-03-18 Thread Jeff Marcom
** Tags added: jeff-poked

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

Title:
  [hp Z200 Workstation] Fails Suspend

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

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


[Bug 1156888] [NEW] [Lenovo E330]: Accelerometer is not working

2013-03-18 Thread Jeff Marcom
Public bug reported:

Problem: 
Kernel detects presence of accelerometer hardware yet the accelerometer is not 
functional.

Device:
I: Bus=0019 Vendor= Product= Version=
N: Name=Acer BMA150 accelerometer
P: Phys=wmi/input1
S: Sysfs=/devices/virtual/input/input3
U: Uniq=
H: Handlers=event3 js0 
B: PROP=0
B: EV=9
B: ABS=7


Looking in /devices/virtual/input/input3 there should be a position file that 
relays axis data via x, y, z tilt counters.

For lenovo, it seems the hdaps driver is not longer available, nor is
there an opensource equivelant available.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: linux-image-3.5.0-23-generic 3.5.0-23.35~precise1
ProcVersionSignature: Ubuntu 3.5.0-23.35~precise1-generic 3.5.7.2
Uname: Linux 3.5.0-23-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.25.
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: PCH [HDA Intel PCH], device 0: ALC269VC Analog [ALC269VC Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ubuntu 1827 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'PCH'/'HDA Intel PCH at 0x9c61 irq 47'
   Mixer name   : 'Intel PantherPoint HDMI'
   Components   : 'HDA:10ec0269,17aa5006,00100202 
HDA:80862806,80860101,0010'
   Controls  : 24
   Simple ctrls  : 10
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
unknown'
   Mixer name   : 'ThinkPad EC (unknown)'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Mon Mar 18 18:25:24 2013
HibernationDevice: RESUME=UUID=8ebe04d3-41f2-4b51-b2b5-e753af5a45ea
InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
MachineType: LENOVO 335421U
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB:
 0 inteldrmfb
 1 nouveaufb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-23-generic 
root=UUID=2060a7a9-51be-4440-bd16-468ee9100723 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.5.0-23-generic N/A
 linux-backports-modules-3.5.0-23-generic  N/A
 linux-firmware1.79.1
SourcePackage: linux
StagingDrivers: rts_pstor
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/13/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: H3ET31WW(1.14)
dmi.board.asset.tag: Not Available
dmi.board.name: 335421U
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrH3ET31WW(1.14):bd07/13/2012:svnLENOVO:pn335421U:pvrThinkpadEdgeE330:rvnLENOVO:rn335421U:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 335421U
dmi.product.version: Thinkpad Edge E330
dmi.sys.vendor: LENOVO

** Affects: linux (Ubuntu)
 Importance: Undecided
 Assignee: Canonical Hardware Enablement Team (canonical-hwe-team)
 Status: New


** Tags: 201205-11035 amd64 apport-bug precise qa-kernel-lts-testing 
running-unity staging

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) = Canonical Hardware Enablement Team 
(canonical-hwe-team)

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

Title:
  [Lenovo E330]: Accelerometer is not working

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

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


[Bug 982754] Re: ubuntu one, crashes on start up and the details say it's an IPC error.

2013-03-18 Thread Christian A. Bryant
After spending two days trying to solve this issue I finally found the
problem and felt it important to notify the community what I found.
First I thought the problem was a bug in Ubuntu one, so I took these
steps:

I dropped to console and did:

gedit ~/.config/ubuntuone/syncdaemon.conf

files_sync_enabled=True

Saved syncdaemon.conf.

sudo apt-get remove ubuntuone-control-panel-qt
sudo apt-get purge ubuntuone-control-panel-qt
rm -R ~/.config/ubuntuone
rm -R ~/.cache/ubuntuone
rm -R ~/.local/share/ubuntuone
sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak
Used Ubuntu Tweak Janitor to clean old kernel,caches redundant files, etc.
sudo reboot
sudo apt-get install --reinstall python-protobuf
sudo apt-get install ubuntuone-control-panel-qt

Launched Ubuntu One, and yes, same problem IPCError after 20 seconds. I
was angry since I spent over 2 days going through all the scenarios.
Finally I thought to check Ubuntu One through the web interface, this is
what I found:

Launched Mozilla, logged into https://one.ubuntu.com/files/ and thought
maybe we have a problem with one of the folders... and since I have
redundant backups I decided to remove every folder, so I began to click
on the More tab and selected Stop syncing this folder to each
folder, everything was going great until I got to one of my folders
named ~/Downloads - this bugger would stall when I clicked on Stop
syncing this folder and never disappear. Finally after trying several
times I triggered an error in Ubuntu One noticed a little pop-up An
error has occurred. Our engineers have been notified and we will work to
fix this. Ahhh, I thought, now we are getting somewhere! So I began to
select Delete folder inside of the main folder named ~/Downloads,
this was tedious but at this point what did I have to loose, another day
of time lost, why not? I noticed many times Ubuntu One web interface
would stall, almost freeze but I kept diligently removing folder by
folder. After 1.5 hours passed, I was down to two folders that would not
delete but I kept clicking on Delete Folder until the system got the
idea and deleted the folder.

In the end I spent almost all day (again) trying to solve this issue and
concluded Ubuntu One has a serious Bug with the Ubuntu One system
itself, not the client. The system has a real hard time dealing with:

1. Deep files like the example below:
My Storage / ~/Downloads / Zimbra / zdesktop_7_2_1_ga_b11637_linux_i686 / jetty 
/ work / zimbra / jsp / org / apache / jsp / desktop 
I was not able to delete the folder Zimbra even though was only 400KB inside 
the folders at the end desktop. I had to delete all the files in desktop 
then I was able to delete desktop then jsp then apache then org until I 
got to Zimbra then I was able to delete the folder named Zimbra.

Then I moved onto another deep folder. I was unable to delete a folder
named Typo3 and when I looked inside I noticed the same issue as the
above example.

1. Another deep file:
My Storage / ~/Downloads / Typo3 / introductionpackage-6.0.2 / typo3 / sysext 
I was not able to delete the folder named Typo3, I had to remove 36 folder 
inside of sysext, the I was able to delete the folder named sysext. Then I 
could delete Typo3 and finally this allowed me to Stop syncing this folder 
on ~/Downloads.

After I cleared my online storage folders I did the following:

sudo apt-get remove ubuntuone-control-panel-qt
sudo apt-get purge ubuntuone-control-panel-qt
rm -R ~/.config/ubuntuone
rm -R ~/.cache/ubuntuone
rm -R ~/.local/share/ubuntuone

Used Ubuntu Tweak Janitor to clean old kernel,caches redundant files,
etc.

sudo reboot
sudo apt-get install --reinstall python-protobuf
sudo apt-get install ubuntuone-control-panel-qt

Finally Vola! Just like that Ubuntu One works! Yes, no more IPCError! It
works, really worksyahhh.

I hope this helps another end user like myself. I do not mind spending
time to resolve issues as long as I take the time to share what I found
to other users since you have all helped me selflessly many times. If
you use Ubuntu One as your primary backup, I would recommend you install
Dropbox and sync the important files and folders before taking the above
steps just in case you have a crash. You know how this works, the one
time you think this is easy, no problem... will be the time you have
that unrecoverable crash. So backup before taking the above steps. I
used  deja-dup sending the backup to Ubuntu One prior to taking the
above steps.

If you need an alternate backup do:

sudo apt-get install deja-dup
sudo apt-get install python-cloudfiles

The above will allow you to setup Deja-dup to backup to another Cloud
provider while you are clearing Ubuntu One. If you have question or need
more help regarding this issue, you may contact me at
prokennex...@gmail.com - take care.

Then use Deja-dup to backup to Ubuntu One.

-- 
You received this bug notification because you are a member of Ubuntu

[Bug 1156888] Re: [Lenovo E330]: Accelerometer is not working

2013-03-18 Thread Jeff Marcom
** Tags added: 201205-11035

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

Title:
  [Lenovo E330]: Accelerometer is not working

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

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


[Bug 92599] Re: Incorrect (low/stuttering) refresh rate with NVIDIA driver

2013-03-18 Thread Michael Becker
Also tried with 310 and 313 Nvidia-Drivers... Problem still remains. No
Problems in Xsession-Errors.

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

Title:
  Incorrect (low/stuttering) refresh rate with NVIDIA driver

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

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


[Bug 1156891] [NEW] dconf sometimes causes signal 7 (bus error) when homedir is NFS

2013-03-18 Thread Margarita Manterola
Public bug reported:

Hi,

We are using Precise, with dconf version 0.12.0.  Last weekend we had
two users who have their homes in NFS report that their screensavers had
died.  When investigating the issue, it turns out that they died with
the funny left the bus error:

Mar 17 03:51:01 zork gnome-session[4387]: WARNING: Detected that screensaver 
has left the bus
Mar 17 03:51:02 zork gnome-session[4387]: WARNING: Application 
'gnome-settings-daemon.desktop' killed by signal

Mar 18 08:54:07 jan gnome-session[3217]: WARNING: Detected that screensaver has 
left the bus
Mar 18 08:54:14 jan gnome-session[3217]: WARNING: Application 
'gnome-panel.desktop' killed by signal
Mar 18 08:54:23 jan gnome-session[3217]: WARNING: Application 
'gnome-settings-daemon.desktop' killed by signal

I'm attaching the backtrace of the first of these crashes, which shows
that the crash happened when calling gvdb_table_lookup, with
/org/gnome/desktop/interface/clock-format as key.

When discussing this with Ryan Lortie, he told me:

desrt sigbus in dconf code is almost always (maybe _always_) caused by the 
user not having a fully-functional XDG_RUNTIME_DIR
desrt this issue has been known to periodically occur with NFS or ecryptfs 
for a while
desrt basically it happens when a file on the NFS server gets replaced and 
the clients are left looking at a stale copy
desrt with read() or write() you would get ESTALE
desrt but with mmap() you get SIGBUS

We don't seem to have XDG_RUNTIME_DIR variable set in precise.  These
are the XDG variables that I have:

XDG_SESSION_COOKIE=removed
XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg
XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/
XDG_CURRENT_DESKTOP=GNOME

BTW, this has happened both running cinnamon and gnome-classic.

According to what Ryan tells me this issue has been known for a while,
and has even been fixed in the latest versions, but precise is stuck
with a broken version.  Given the fact that an unlocked screen is a
security issue, it would be nice if the fix could be backported to
precise.

-- 
Regards,
Marga

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

** Attachment added: Backtrace of the problem
   
https://bugs.launchpad.net/bugs/1156891/+attachment/3582242/+files/backtrace.txt

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

Title:
  dconf sometimes causes signal 7 (bus error) when homedir is NFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/d-conf/+bug/1156891/+subscriptions

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


[Bug 1156896] [NEW] kernel panic in sync_dirty_buffer

2013-03-18 Thread Clint Byrum
Public bug reported:

Was not doing anything abnormal. HW is an EliteBook 9470m w/ 16GB of
RAM.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: linux-image-3.5.0-25-generic 3.5.0-25.38
ProcVersionSignature: Ubuntu 3.5.0-25.38-generic 3.5.7.4
Uname: Linux 3.5.0-25-generic x86_64
ApportVersion: 2.6.1-0ubuntu10
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  clint  3097 F pulseaudio
Date: Mon Mar 18 15:44:25 2013
HibernationDevice: RESUME=UUID=b753173e-b967-403e-b076-b1cfb5bc6e80
InstallationDate: Installed on 2013-01-14 (63 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64+mac 
(20121017.3)
MachineType: Hewlett-Packard HP EliteBook Folio 9470m
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.5.0-25-generic 
root=/dev/mapper/ubuntu-root ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.5.0-25-generic N/A
 linux-backports-modules-3.5.0-25-generic  N/A
 linux-firmware1.95
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/24/2012
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68IBD Ver. F.30
dmi.board.name: 18DF
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 62.13
dmi.chassis.asset.tag: CNU2439PZT
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68IBDVer.F.30:bd09/24/2012:svnHewlett-Packard:pnHPEliteBookFolio9470m:pvrA1029D1103:rvnHewlett-Packard:rn18DF:rvrKBCVersion62.13:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP EliteBook Folio 9470m
dmi.product.version: A1029D1103
dmi.sys.vendor: Hewlett-Packard

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


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

** Attachment added: photo of kernel panic
   
https://bugs.launchpad.net/bugs/1156896/+attachment/3582245/+files/IMG_2063.JPG

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

Title:
  kernel panic in sync_dirty_buffer

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

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


[Bug 1156895] [NEW] startup applications disappeared

2013-03-18 Thread SoloTurn
Public bug reported:

after upgrading to ubuntu-13.04 pressing unity button changed to search
your computer and online resources and startup applications are not
displayed any more. only files, social, music, .. can be searched. how
could one re-enable finding applications in unity?

** Affects: ubiquity (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/1156895

Title:
  startup applications disappeared

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

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


[Bug 1156893] [NEW] [python] from urllib3.packages.ordered_dict import OrderedDict fails on raring

2013-03-18 Thread Ben Howard
Public bug reported:

from urllib3.packages.ordered_dict import OrderedDict fails to import on
Raring even though the file exists.

This is breaking nearly all the OpenStack CLI tools.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: python-urllib3 1.5-0ubuntu1 [modified: 
usr/share/pyshared/urllib3/packages/__init__.py]
ProcVersionSignature: Ubuntu 3.8.0-12.21-generic 3.8.2
Uname: Linux 3.8.0-12-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 16:39:59 2013
EcryptfsInUse: Yes
InstallationDate: Installed on 2012-08-02 (228 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64+mac 
(20120802.1)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: python-urllib3
UpgradeStatus: Upgraded to raring on 2013-03-05 (13 days ago)

** Affects: python-urllib3 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring

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

Title:
  [python] from urllib3.packages.ordered_dict import OrderedDict fails
  on raring

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-urllib3/+bug/1156893/+subscriptions

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


[Bug 1053163] Re: Unity unit tests take too long to finish

2013-03-18 Thread Brandon Schaefer
** Changed in: unity
 Assignee: (unassigned) = Brandon Schaefer (brandontschaefer)

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) = Brandon Schaefer (brandontschaefer)

** Changed in: unity (Ubuntu)
   Status: Confirmed = In Progress

** Changed in: unity
   Status: Confirmed = In Progress

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

** Description changed:

- Running the unit tests for unity take too long to finish. This should be
- look at.
+ Running the unit tests for unity takes too long to finish. This should
+ be looked at.
  
  [==] 261 tests from 39 test cases ran. (78733 ms total)

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

Title:
  Unity unit tests take too long to finish

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

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


[Bug 778627] Re: In natty, bash completion now quotes shell variable references rather than expanding them

2013-03-18 Thread Dmitrijs Ledkovs
$ dput ubuntu bash_4.2-2ubuntu2.1_source.changes
Uploading to ubuntu (via ftp to upload.ubuntu.com):
  Uploading bash_4.2-2ubuntu2.1.dsc: done.
  Uploading bash_4.2-2ubuntu2.1.diff.gz: done.  
  Uploading bash_4.2-2ubuntu2.1_source.changes: done.
Successfully uploaded packages.

The package was uploaded into precise-proposed unapproved queue, pending
for a member of the SRU team to accept the package into the precise-
proposed archive.

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

Title:
  In natty, bash completion now quotes shell variable references rather
  than expanding them

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

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


[Bug 1156893] Re: [python] from urllib3.packages.ordered_dict import OrderedDict fails on raring

2013-03-18 Thread Ben Howard
Example stack trace:
Traceback (most recent call last):
  File /usr/bin/glance, line 9, in module
load_entry_point('python-glanceclient==0.8.0', 'console_scripts', 
'glance')()
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 343, in 
load_entry_point
return get_distribution(dist).load_entry_point(group, name)
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 2307, in 
load_entry_point
return ep.load()
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 2013, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File /usr/lib/python2.7/dist-packages/glanceclient/shell.py, line 25, in 
module
from keystoneclient.v2_0 import client as ksclient
  File /usr/lib/python2.7/dist-packages/keystoneclient/v2_0/__init__.py, line 
1, in module
from keystoneclient.v2_0.client import Client
  File /usr/lib/python2.7/dist-packages/keystoneclient/v2_0/client.py, line 
18, in module
from keystoneclient import client
  File /usr/lib/python2.7/dist-packages/keystoneclient/client.py, line 16, in 
module
import requests
  File /usr/lib/python2.7/dist-packages/requests/__init__.py, line 52, in 
module
from . import utils
  File /usr/lib/python2.7/dist-packages/requests/utils.py, line 23, in 
module
from .compat import parse_http_list as _parse_list_header
  File /usr/lib/python2.7/dist-packages/requests/compat.py, line 92, in 
module
from urllib3.packages.ordered_dict import OrderedDict

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

Title:
  [python] from urllib3.packages.ordered_dict import OrderedDict fails
  on raring

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-urllib3/+bug/1156893/+subscriptions

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


[Bug 1156880] Re: gthumb can no more send pictures to facebook

2013-03-18 Thread Le Gluon Du Net
The bug report on bugzilla and the answer of the dev that it is fixed:
https://bugzilla.gnome.org/show_bug.cgi?id=689916

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

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

Title:
  gthumb can no more send pictures to facebook

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-03-18 Thread Russell Faull
Franciso, I am using 3.5.0-26, and the my comment at #75 holds true.

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 1108342] Re: keyboard shortcut regression, some pairs of desktop switching keys don't work

2013-03-18 Thread Seth Arnold
In Raring, three diagonal directions work flawlessly every time:
Down+Left, Down+Right, Up+Right.

Up+Left still fails every time.

50% of the way there! :)

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

Title:
  keyboard shortcut regression, some pairs of desktop switching keys
  don't work

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

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


[Bug 1156821] Re: linux: 3.5.0-27.43 -proposed tracker

2013-03-18 Thread Steve Conklin
** Changed in: kernel-sru-workflow/prepare-package
   Status: New = 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/1156821

Title:
  linux: 3.5.0-27.43 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1156821/+subscriptions

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


[Bug 1156899] [NEW] usb-creator-gtk segfaults every time I try making a bootable USB key

2013-03-18 Thread Jeff Lane
Public bug reported:

The latest frustration:
usb-creator-gtk segfaults every time I try making  a bootable 12.04 usb key.  I 
need to install and boot both desktop and server versions of Precise on my test 
machines in order to do my work, and usb-creator is a gate that is causing me 
to not be able to do that work.  Every time (I'm currently running Quantal, but 
the same types of issues happened when I was running Precise as well) I try 
creating a 12.04.1 or 12.04.2 bootable USB key, creator segfaults at some 
point, leaving me with a half-finished usb key that is not bootable, and 
sometimes not umountable, and a mounted ISO image in /tmp. 

In some cases, I've tried over and over to get a working USB key, only
to find that I end up with the same ISO mounted once for each attempt in
/tmp.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: usb-creator-gtk 0.2.40ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-26.42-generic 3.5.7.6
Uname: Linux 3.5.0-26-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.6.1-0ubuntu10
Architecture: amd64
Date: Mon Mar 18 18:47:09 2013
InstallationDate: Installed on 2012-03-15 (368 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 (20120307)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: usb-creator
UpgradeStatus: Upgraded to quantal on 2013-01-24 (53 days ago)

** Affects: usb-creator (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  usb-creator-gtk segfaults every time I try making a bootable USB key

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1156899/+subscriptions

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


[Bug 1156900] [NEW] suspend/resume failure [non-free: nvidia]

2013-03-18 Thread Nathan Murray
Public bug reported:

Message appears while running apps in the Unity GUI.  Appears that the
system has suspend / resume issues.

Also have noticed when this message appears cooling fans in the case are
at an accelerated level.

ProblemType: KernelOops
DistroRelease: Ubuntu 13.04
Package: linux-image-3.8.0-13-generic 3.8.0-13.22
ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
NonfreeKernelModules: nvidia
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  nathan 8774 F pulseaudio
 /dev/snd/controlC0:  nathan 8774 F pulseaudio
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Date: Sun Mar 17 08:40:34 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=76d99b72-ddf0-4ee1-975c-a61fac8df61c
InstallationDate: Installed on 2013-02-28 (18 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130227.1)
InterpreterPath: /usr/bin/python3.3
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: System manufacturer System Product Name
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-13-generic 
root=UUID=a92008c3-0318-4a75-818c-2a2f54cf3712 ro nomodeset noapic nomodeset 
quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-3.8.0-13-generic N/A
 linux-backports-modules-3.8.0-13-generic  N/A
 linux-firmware1.104
RfKill:
 
SourcePackage: linux
Title: [System manufacturer System Product Name] suspend/resume failure 
[non-free: nvidia]
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 03/13/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: ASUS M2NPV-VM ACPI BIOS Revision 0801
dmi.board.name: M2NPV-VM
dmi.board.vendor: ASUSTek Computer INC.
dmi.board.version: 1.xx
dmi.chassis.asset.tag: 123456789000
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2NPV-VMACPIBIOSRevision0801:bd03/13/2007:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTekComputerINC.:rnM2NPV-VM:rvr1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-kerneloops raring resume suspend third-party-packages

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

Title:
  suspend/resume failure [non-free: nvidia]

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

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


[Bug 1156899] Re: usb-creator-gtk segfaults every time I try making a bootable USB key

2013-03-18 Thread Jeff Lane
also, this time around (usb-creator never seems to work quite right for
me) it always seems to crash at the point where it writes boot loader
data.

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

Title:
  usb-creator-gtk segfaults every time I try making a bootable USB key

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1156899/+subscriptions

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


[Bug 1156896] Status changed to Confirmed

2013-03-18 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  kernel panic in sync_dirty_buffer

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

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


[Bug 1156895] Re: startup applications disappeared

2013-03-18 Thread SoloTurn
the following did not help to get it back ...

$ dconf reset -f /org/compiz/
$ setsid unity

compiz (core) - Info: Loading plugin: core
compiz (core) - Info: Starting plugin: core
compiz (core) - Info: Loading plugin: ccp
compiz (core) - Info: Starting plugin: ccp
compizconfig - Info: Backend : gsettings
compizconfig - Info: Integration : true
compizconfig - Info: Profile : unity
compiz (core) - Info: Loading plugin: composite
compiz (core) - Info: Starting plugin: composite
compiz (core) - Info: Loading plugin: opengl
compiz (core) - Info: Unity is fully supported by your hardware.
compiz (core) - Info: Unity is fully supported by your hardware.
compiz (core) - Info: Starting plugin: opengl
compiz (core) - Info: Loading plugin: compiztoolbox
compiz (core) - Info: Starting plugin: compiztoolbox
compiz (core) - Info: Loading plugin: decor
compiz (core) - Info: Starting plugin: decor
compiz (core) - Info: Loading plugin: gnomecompat
compiz (core) - Info: Starting plugin: gnomecompat
compiz (core) - Info: Loading plugin: copytex
compiz (core) - Info: Starting plugin: copytex
compiz (core) - Info: Loading plugin: move
compiz (core) - Info: Starting plugin: move
compiz (core) - Info: Loading plugin: mousepoll
compiz (core) - Info: Starting plugin: mousepoll
compiz (core) - Info: Loading plugin: resize
compiz (core) - Info: Starting plugin: resize
compiz (core) - Info: Loading plugin: place
compiz (core) - Info: Starting plugin: place
compiz (core) - Info: Loading plugin: imgpng
compiz (core) - Info: Starting plugin: imgpng
compiz (core) - Info: Loading plugin: session
compiz (core) - Info: Starting plugin: session
compiz (core) - Info: Loading plugin: vpswitch
compiz (core) - Info: Starting plugin: vpswitch
compiz (core) - Info: Loading plugin: grid
compiz (core) - Info: Starting plugin: grid
compiz (core) - Info: Loading plugin: unitymtgrabhandles
compiz (core) - Info: Starting plugin: unitymtgrabhandles
compiz (core) - Info: Loading plugin: snap
compiz (core) - Info: Starting plugin: snap
compiz (core) - Info: Loading plugin: wall
compiz (core) - Info: Starting plugin: wall
compiz (core) - Info: Loading plugin: regex
compiz (core) - Info: Starting plugin: regex
compiz (core) - Info: Loading plugin: animation
compiz (core) - Info: Starting plugin: animation
compiz (core) - Info: Loading plugin: expo
compiz (core) - Info: Starting plugin: expo
compiz (core) - Info: Loading plugin: ezoom
compiz (core) - Info: Starting plugin: ezoom
compiz (core) - Info: Loading plugin: workarounds
compiz (core) - Info: Starting plugin: workarounds
compiz (core) - Info: Loading plugin: fade
compiz (core) - Info: Starting plugin: fade
compiz (core) - Info: Loading plugin: scale
compiz (core) - Info: Starting plugin: scale
compiz (core) - Info: Loading plugin: unityshell
compiz (core) - Info: Starting plugin: unityshell
WARN  2013-03-18 23:53:04 unity.glib.dbus.server GLibDBusServer.cpp:577 Can't 
register object 'com.canonical.Autopilot.Introspection' yet as we don't have a 
connection, waiting for it...
WARN  2013-03-18 23:53:04 unity.glib.dbus.server GLibDBusServer.cpp:577 Can't 
register object 'com.canonical.Unity.Debug.Logging' yet as we don't have a 
connection, waiting for it...
WARN  2013-03-18 23:53:04 unity.libindicator unknown:0 Desktop file 
'/usr/share/applications/chromium-browser.desktop' is using a deprecated format 
for its actions that will be dropped soon.
WARN  2013-03-18 23:53:04 unity.glib.dbus.server GLibDBusServer.cpp:577 Can't 
register object 'com.canonical.Unity.Launcher' yet as we don't have a 
connection, waiting for it...
WARN  2013-03-18 23:53:04 unity.glib.dbus.server GLibDBusServer.cpp:577 Can't 
register object 'com.canonical.Unity.Dash' yet as we don't have a connection, 
waiting for it...
WARN  2013-03-18 23:53:04 unity.glib.dbus.server GLibDBusServer.cpp:577 Can't 
register object 'org.gnome.SessionManager.EndSessionDialog' yet as we don't 
have a connection, waiting for it...
WARN  2013-03-18 23:53:04 unity unknown:0 Failed to fetch boolean: No such 
interface `org.ayatana.bamf.view' on object at path 
/org/ayatana/bamf/window62915371
WARN  2013-03-18 23:53:05 unity unknown:0 Failed to fetch boolean: No such 
interface `org.ayatana.bamf.view' on object at path 
/org/ayatana/bamf/window62915371
WARN  2013-03-18 23:53:05 unity unknown:0 Failed to fetch view type at 
/org/ayatana/bamf/window62915371: No such interface `org.ayatana.bamf.view' on 
object at path /org/ayatana/bamf/window62915371
WARN  2013-03-18 23:53:05 unity unknown:0 Failed to fetch boolean: No such 
interface `org.ayatana.bamf.view' on object at path 
/org/ayatana/bamf/window62915371
WARN  2013-03-18 23:53:05 unity unknown:0 Failed to fetch type: No such 
interface `org.ayatana.bamf.window' on object at path 
/org/ayatana/bamf/window62915371

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

Title:
  startup 

[Bug 1156893] Re: [python] from urllib3.packages.ordered_dict import OrderedDict fails on raring

2013-03-18 Thread Ben Howard
Resolving. This was caused by locally installed versions of urllib3 via
pip interfering.

** Changed in: python-urllib3 (Ubuntu)
   Status: New = Invalid

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

Title:
  [python] from urllib3.packages.ordered_dict import OrderedDict fails
  on raring

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-urllib3/+bug/1156893/+subscriptions

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


[Bug 1156888] Status changed to Confirmed

2013-03-18 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  [Lenovo E330]: Accelerometer is not working

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

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


[Bug 967229] Re: Text mode shown briefly with various cryptic texts when logging out or shutting down

2013-03-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~brian-murray/lightdm/bug-967229

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

Title:
  Text mode shown briefly with various cryptic texts when logging out
  or shutting down

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/967229/+subscriptions

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


[Bug 967229] Re: Text mode shown briefly with various cryptic texts when logging out or shutting down

2013-03-18 Thread Brian Murray
** Also affects: lightdm (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: lightdm (Ubuntu)
 Assignee: (unassigned) = Brian Murray (brian-murray)

** Changed in: lightdm (Ubuntu)
   Importance: Undecided = High

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

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

Title:
  Text mode shown briefly with various cryptic texts when logging out
  or shutting down

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/967229/+subscriptions

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


[Bug 1053163] Re: Unity unit tests take too long to finish

2013-03-18 Thread Brandon Schaefer
** Branch linked: lp:~brandontschaefer/unity/move-slow-tests-to-gtest-
slow

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

Title:
  Unity unit tests take too long to finish

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

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


[Bug 1156900] Status changed to Confirmed

2013-03-18 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  suspend/resume failure [non-free: nvidia]

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

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


[Bug 1156821] Re: linux: 3.5.0-27.43 -proposed tracker

2013-03-18 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Kernel Team (canonical-kernel-team) = Steve Conklin 
(sconklin)

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

Title:
  linux: 3.5.0-27.43 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1156821/+subscriptions

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


[Bug 1135174] Re: linux-ti-omap4: 3.2.0-1427.36 -proposed tracker

2013-03-18 Thread Brad Figg
** Description changed:

  This bug is for tracking the version to be filled upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 28. February 2013 04:02 UTC
  kernel-stable-master-bug:1134424
  kernel-stable-Certification-testing-end:Thursday, 28. February 2013 05:02 UTC
  kernel-stable-Prepare-package-end:Saturday, 02. March 2013 00:02 UTC
  kernel-stable-Promote-to-proposed-start:Saturday, 02. March 2013 00:02 UTC
  kernel-stable-Promote-to-proposed-end:Saturday, 02. March 2013 01:57 UTC
  kernel-stable-Verification-testing-start:Saturday, 02. March 2013 03:03 UTC
  kernel-stable-phase:Testing
  kernel-stable-Security-signoff-start:Monday, 18. March 2013 17:41 UTC
  kernel-stable-phase-changed:Monday, 18. March 2013 17:41 UTC
  kernel-stable-Verification-testing-end:Monday, 18. March 2013 17:41 UTC
  kernel-stable-Regression-testing-start:Monday, 18. March 2013 17:41 UTC
+ kernel-stable-Security-signoff-end:Monday, 18. March 2013 23:01 UTC

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

Title:
  linux-ti-omap4: 3.2.0-1427.36 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1135174/+subscriptions

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


[Bug 1134477] Re: jockey fails to install new bcmwl in some cases

2013-03-18 Thread Jeff Marcom
Another system, the driver failed to install several times, then jockey
stopped offering any wireless drivers at all:

[  113.683015] eth1: Broadcom BCM4359 802.11 Hybrid Wireless Controller 
6.20.155.1 (r326264)
[  126.571173] eth1: Broadcom BCM4359 802.11 Hybrid Wireless Controller 
6.20.155.1 (r326264)

** Tags added: 201202-10573

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

Title:
  jockey fails to install new bcmwl in some cases

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

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


[Bug 1134477] Re: jockey fails to install new bcmwl in some cases

2013-03-18 Thread Jeff Marcom
Adding jockey log from failed system

** Attachment added: jockey.log
   
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1134477/+attachment/3582267/+files/jockey.log

** Tags removed: 201202-10573
** Tags added: 201202-10574

** Tags removed: 201202-10574
** Tags added: 201202-10573

** Tags removed: 201202-10573

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

Title:
  jockey fails to install new bcmwl in some cases

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

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


[Bug 1032872] Re: port to python 3

2013-03-18 Thread Bug Watch Updater
** Changed in: devscripts (Debian)
   Status: New = Fix Committed

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

Title:
  port to python 3

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

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


[Bug 1143495] Re: udisks reporting input/output error that seems to be nonsense

2013-03-18 Thread Phillip Susi
** Branch linked: lp:~psusi/ubuntu/raring/libatasmart/fix-status

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

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

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

Title:
  udisks reporting input/output error that seems to be nonsense

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

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


[Bug 1116079] Re: Test bzrlib.tests.test_tuned_gzip.TestToGzip.test_enormous_chunk fails - potential regression in python2.7 2.7.3-15ubuntu1

2013-03-18 Thread Robert Collins
Agreed, this is most likely a  bzr bug in obsolete code. I'd want to see
a reproduction on the base gzip class before assessing this as a Python
upstream issue. We'd see rather massive issues if it was an upstream
issue.

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

Title:
  Test bzrlib.tests.test_tuned_gzip.TestToGzip.test_enormous_chunk fails
  - potential regression in python2.7 2.7.3-15ubuntu1

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

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


Re: [Bug 1135418] [NEW] [FFe] Integrate Ubuntu plugin and update to 2.7 RC

2013-03-18 Thread Scott Kitterman
How did it get decided to drop Qt4 support?  Before we update, we ought to 
deal with the current regression.

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

Title:
  [FFe] Integrate Ubuntu plugin and update to 2.7 RC

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

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


[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
** Attachment added: Screenshot of latest master in IE10
   
https://bugs.launchpad.net/horizon/+bug/1156742/+attachment/3582323/+files/ie10.png

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

Title:
  Horizon layout problem on IE 10

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

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


[Bug 1002187] Re: Skype won't start (segmentation fault)

2013-03-18 Thread Yotam Benshalom
Same here, using proprietary nvidia drivers. Problem started after
upgrading 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/1002187

Title:
  Skype won't start (segmentation fault)

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

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


[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
I have tested the latest master against IE10 and it displays exactly as
expected (see screenshot). I'm targeting this against the Ubuntu distro
to see if they have any input on what's amiss in their repo.

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

** Changed in: horizon
   Status: New = Invalid

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

Title:
  Horizon layout problem on IE 10

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

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


[Bug 1156896] Re: kernel panic in sync_dirty_buffer

2013-03-18 Thread Joseph Salisbury
Do you have a way to reproduce the panic, or was it a one time event?

** Changed in: linux (Ubuntu)
   Importance: Undecided = High

** Tags added: kernel-da-key submit-bh

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

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

Title:
  kernel panic in sync_dirty_buffer

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

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


[Bug 1023645] Re: ndiswrapper-dkms 1.57-1ubuntu1: ndiswrapper kernel module failed to build [error: ‘struct kernel_stat’ has no member named ‘cpustat’]

2013-03-18 Thread Dave Lentz
@Daniel Young, IIRC ndiswrapper creates/changes files in
/etc/modprobe.d/, so you may want to look there

@Eric Smeets: bots are fun, no?

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

Title:
  ndiswrapper-dkms 1.57-1ubuntu1: ndiswrapper kernel module failed to
  build [error: ‘struct kernel_stat’ has no member named ‘cpustat’]

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

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

[Bug 1156832] Re: play sound Configured audiosink player-audiosink is not working.

2013-03-18 Thread Andrew Katz
The fix to this is to change the error message.

Make a suggestion to install pulseaudio (use synaptic).

(Lubuntu does not come with pulseaudio installed)

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

Title:
  play sound  Configured audiosink player-audiosink is not working.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alarm-clock-applet/+bug/1156832/+subscriptions

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


[Bug 1156909] [NEW] When viewing a graphic file as if to drag it, my entire graphical session crashes and restarts.

2013-03-18 Thread Daniel Burke
Public bug reported:

I am running the ATi fglrx driver as downloaded from their web site.  I
run a hybrid setup of Intel/Ati 7670M.

Simply open a graphic (png, jpeg) and try to drag the graphic as if to
pan.  Xserver dies and restarts.

daniel@gunari:~$ uname -a
Linux gunari 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:32:08 UTC 2012 i686 
i686 i686 GNU/Linux
[1]+  Donegedit /var/log/Xorg.0.log
daniel@gunari:~$ lsb_release -rd
Description:Ubuntu 12.10
Release:12.10

Hope this provides enough info.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: eog 3.6.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic i686
NonfreeKernelModules: fglrx
ApportVersion: 2.6.1-0ubuntu10
Architecture: i386
Date: Tue Mar 19 10:13:53 2013
ExecutablePath: /usr/bin/eog
InstallationDate: Installed on 2013-03-02 (16 days ago)
InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Release 
i386(20121018)
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SourcePackage: eog
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 quantal

** Attachment added: Xorg log showing crash
   https://bugs.launchpad.net/bugs/1156909/+attachment/3582338/+files/Xorg.0.log

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

Title:
  When viewing a graphic file as if to drag it, my entire graphical
  session crashes and restarts.

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

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


[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread terryg2012
I have turned off the Ubuntu theme by renaming the Ubuntu_theme.py file.
Now the layout is displayed as expected except for the Project-Overview
screen on Windows 7. However, IE 10 on Windows 8 appear to display
everything properly.

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

Title:
  Horizon layout problem on IE 10

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

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


[Bug 1132477] Re: DMA: Out of SW-IOMMU space for xx bytes at device [AR8151 network]

2013-03-18 Thread hyper_ch
Had to revert back to Quantal because KDE just wouldn't let me login
anymore with 3.5 kernel... xserver crash 3.8 no fun with the network
card. So when will that be included as you marked it now as Fix
Committed?

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

Title:
  DMA: Out of SW-IOMMU space for xx bytes at device [AR8151 network]

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

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


[Bug 1085690] Re: upon upgrade to 12.04 perl broken with unmet dependencies package libxml-libxml-perl 1.70.ds-1build1 failed to install/upgrade: subprocess installed pre-removal script returned error

2013-03-18 Thread hugo
** Changed in: libxml-libxml-perl (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/1085690

Title:
  upon upgrade to 12.04 perl broken with unmet dependencies   package
  libxml-libxml-perl 1.70.ds-1build1 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 127

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

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


[Bug 1156912] [NEW] package gconf2 3.2.6-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-18 Thread Joey Stanford
Public bug reported:

Crash during upgrade to Raring

ProblemType: Package
DistroRelease: Ubuntu 13.04
Package: gconf2 3.2.6-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 15:45:11 2013
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2012-05-01 (321 days ago)
InstallationMedia: Ubuntu-Server 12.04 LTS Precise Pangolin - Release amd64 
(20120424.1)
MarkForUpload: True
SourcePackage: gconf
Title: package gconf2 3.2.6-0ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to raring on 2013-03-18 (0 days ago)
mtime.conffile..etc.xdg.autostart.gsettings.data.convert.desktop: 
2012-09-07T16:50:38.825121

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


** Tags: amd64 apport-package raring

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

Title:
  package gconf2 3.2.6-0ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

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


[Bug 1156912] Re: package gconf2 3.2.6-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-18 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package gconf2 3.2.6-0ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

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


[Bug 1153988] Re: keystone starts too early

2013-03-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/keystone/precise-grizzly

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

Title:
  keystone starts too early

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

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


[Bug 1093015] Re: Error: The required module GError is missing.

2013-03-18 Thread wernerml
I've just installed Xubuntu 13.04 beta 1, clean-install, and I was
trying to use the Catfish File Search and when I tryied through the
terminal I saw this error...

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

Title:
  Error: The required module GError is missing.

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

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


[Bug 1156915] Re: mission-control-5 crashed with SIGSEGV in g_object_newv()

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

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 #1144684, 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/1156915/+attachment/3582370/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582372/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582374/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582375/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582376/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582378/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1156915/+attachment/3582379/+files/ThreadStacktrace.txt

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

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  mission-control-5 crashed with SIGSEGV in g_object_newv()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-mission-control-5/+bug/1156915/+subscriptions

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


[Bug 1102045] Re: Pandaboard ES: /usr/lib/arm-linux-gnueabihf/dri/omap_dri.so missing - Only software rendering

2013-03-18 Thread Tom Gall
Actually I misread Olivier is correct omap_dri.so would normally be
needed by OpenGL but it's not something that TI ever provided. Still X
ought to know better and not complain.

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

Title:
  Pandaboard ES: /usr/lib/arm-linux-gnueabihf/dri/omap_dri.so missing -
  Only software rendering

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pvr-omap4/+bug/1102045/+subscriptions

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


[Bug 1156916] Re: nautilus crashed with SIGSEGV

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

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 #102, 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/1156916/+attachment/3582380/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582382/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582384/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582385/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582386/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582387/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1156916/+attachment/3582388/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 102
   nautilus crashed with SIGSEGV

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  nautilus crashed with SIGSEGV

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

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


[Bug 1156919] Re: Compiz does not place Java windows correctly

2013-03-18 Thread Damiön la Bagh
** Attachment added: buttons go missing off the screen due to bad placement 
method
   
https://bugs.launchpad.net/ubuntu/+source/compizconfig-settings-manager/+bug/1156919/+attachment/3582395/+files/BadPlacement_missingButtons_Schermafdruk%20van%202013-03-19%2000.22.59.png

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

Title:
  Compiz does not place Java windows correctly

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

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


[Bug 1156919] [NEW] Compiz does not place Java windows correctly

2013-03-18 Thread Damiön la Bagh
Public bug reported:

http://askubuntu.com/questions/77423/how-can-i-get-java-apps-to-follow-
compiz-window-rules

I have this same issue with my POS terminals. When the employee brings
up a Java dialog screen Compiz does not take over the Swing rules and
place the window.

What ends up happening is that the dialog box moves further and further
down the screen until the buttons are off screen and the dialog box is
un-useable.

I've attached two screenshots of the behavior.

Steps to reproduce: 
1.) Open a Java based application with a pop-up dialog box and open the dialog 
2.) Open Compiz Setting Manager 
3.) Choose Window Placement 
4.) Click Fixed Window Placement 
5.) Click New under Windows with fixed placement mode 
6.) Click on the + 
7.) Course Name 
8.) Choose Get 
9.) Select the window you want centered 
10.) Click add 
11.) Change mode to Centered 
12.) click close 
13.) Open and close the dialog box several times 
14.) box moves towards and eventually off the screen after several open and 
closes. 

What should happen 
Compiz should place the window where it's told to place the window in the 
center of the screen overriding the Java Swing behavior. 

Also Compiz should stop Dialog boxes from ever appearing below the
screen line when automatically placed.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: compizconfig-settings-manager 0.9.5.92-0ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-26.42~precise1-generic 3.5.7.6
Uname: Linux 3.5.0-26-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
Date: Tue Mar 19 00:58:55 2013
InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: compizconfig-settings-manager
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: compizconfig-settings-manager (Ubuntu)
 Importance: Undecided
 Status: New


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

** Attachment added: BadPlacement_Schermafdruk van 2013-03-19 00.21.55.png
   
https://bugs.launchpad.net/bugs/1156919/+attachment/3582393/+files/BadPlacement_Schermafdruk%20van%202013-03-19%2000.21.55.png

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

Title:
  Compiz does not place Java windows correctly

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

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


[Bug 1156925] [NEW] Mouse disabled after selecting server

2013-03-18 Thread Mike Schmitt
Public bug reported:

I am running XQF 1.0.5-2ubuntu1 in Ubuntu 12.04.2 LTS 64-bit.  When you
highlight a server in the favorites menu(any menu?) everything freezes
up.  The mouse cursor moves around but nothing can be selected.
Keyboard keys are still functional.  Please fix as this seems to be the
only good server browser available for quake3!  Thanks.

** Affects: xqf (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/1156925

Title:
  Mouse disabled after selecting server

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

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


[Bug 1156923] [NEW] awk warning message when restarting services

2013-03-18 Thread Seth Arnold
Public bug reported:

When upgrading from 12.10 to Raring, I saw the following warning
message:

Restarting services possibly affected by the upgrade:
  cron: restarting...done.
  atd: restarting...done.
  cups: restarting...done.
  rsync: restarting...done.

Services restarted successfully.
awk: cmd. line:1: warning: escape sequence `\)' treated as plain `)'
Processing triggers for libc-bin ...

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: libc6 2.17-0ubuntu4
ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 17:10:30 2013
InstallationDate: Installed on 2012-10-18 (151 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MarkForUpload: True
ProcEnviron:
 TERM=rxvt-unicode
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: eglibc
UpgradeStatus: Upgraded to raring on 2013-03-18 (0 days ago)

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


** Tags: amd64 apport-bug raring

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

Title:
  awk warning message when restarting services

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

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


[Bug 1156862] Re: Evince on 12.10 printing $ over-writes number

2013-03-18 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/1156862/+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/1156862

Title:
  Evince on 12.10 printing $ over-writes number

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

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


[Bug 1156815] Re: Libbreoffice crashes with annotation

2013-03-18 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/1156815/+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/1156815

Title:
  Libbreoffice crashes with annotation

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

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


[Bug 1156769] Re: Incorporate upstream commit 8a0961482698290713d14d7755d9280397804487 to 3.5 LTS kernel to address wifi issues with BCM4313

2013-03-18 Thread Ubuntu Foundations Team Bug Bot
The attachment Upstream patch to address BCM4313 bug seems to be a
patch.  If it isn't, please remove the patch flag from the attachment,
remove the patch tag, and if you are a member of the ~ubuntu-
reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

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

Title:
  Incorporate upstream commit 8a0961482698290713d14d7755d9280397804487
  to 3.5 LTS kernel to address wifi issues with BCM4313

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

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


[Bug 1155526] Re: crash on exit

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

** Changed in: apport (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/1155526

Title:
  crash on exit

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

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


[Bug 1156926] [NEW] doxygen's latex output requires texlive-fonts-recommended dependency

2013-03-18 Thread p-s
Public bug reported:

its impossible to compile doxygen latex output due to missing helvetica font:
kpathsea: Running mktexmf phvr8t
! I can't find file `phvr8t'.

and one needs to install texlive-fonts-recommended manually.

** Affects: doxygen (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/1156926

Title:
  doxygen's latex output requires texlive-fonts-recommended dependency

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

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


[Bug 1156926] Re: doxygen's latex output requires texlive-fonts-recommended dependency

2013-03-18 Thread p-s
(ubuntu 12.04)

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

Title:
  doxygen's latex output requires texlive-fonts-recommended dependency

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

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


[Bug 1156927] [NEW] Cannot open pixbuf loader module file '/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

2013-03-18 Thread Seth Arnold
Public bug reported:

When upgrading from 12.10 to Raring I saw several of these error
messages scroll past:

Processing triggers for hicolor-icon-theme ...

(gtk-update-icon-cache:2606): GdkPixbuf-WARNING **: Cannot open pixbuf
loader module file '/usr/lib/x86_64-linux-gnu/gdk-
pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

This likely means that your installation is broken.
Try running the command
  gdk-pixbuf-query-loaders  
/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache
to make things work again for the time being.

(gtk-update-icon-cache-3.0:2607): GdkPixbuf-WARNING **: Cannot open
pixbuf loader module file '/usr/lib/x86_64-linux-gnu/gdk-
pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

This likely means that your installation is broken.
Try running the command
  gdk-pixbuf-query-loaders  
/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache
to make things work again for the time being.
Processing triggers for bamfdaemon ...

...

Processing triggers for hicolor-icon-theme ...

(gtk-update-icon-cache:11368): GdkPixbuf-WARNING **: Cannot open pixbuf
loader module file '/usr/lib/x86_64-linux-gnu/gdk-
pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

This likely means that your installation is broken.
Try running the command
  gdk-pixbuf-query-loaders  
/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache
to make things work again for the time being.

(gtk-update-icon-cache-3.0:11369): GdkPixbuf-WARNING **: Cannot open
pixbuf loader module file '/usr/lib/x86_64-linux-gnu/gdk-
pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

This likely means that your installation is broken.
Try running the command
  gdk-pixbuf-query-loaders  
/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache
to make things work again for the time being.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: libgtk2.0-0 2.24.16-1ubuntu2
ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3
Uname: Linux 3.8.0-13-generic x86_64
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 17:18:49 2013
InstallationDate: Installed on 2012-10-18 (151 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MarkForUpload: True
ProcEnviron:
 TERM=rxvt-unicode
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gtk+2.0
UpgradeStatus: Upgraded to raring on 2013-03-18 (0 days ago)

** Affects: gtk+2.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring

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

Title:
  Cannot open pixbuf loader module file '/usr/lib/x86_64-linux-gnu/gdk-
  pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

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

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


[Bug 1156929] [NEW] triggers called multiple times in one upgrade

2013-03-18 Thread Seth Arnold
Public bug reported:

Filing against apt, since I think I've seen seen this with plain apt-get
update commands. However, this might be the fault of dpkg or do-release-
upgrade.

When I upgraded from 12.10 to Raring, I found multiple instances of
running kernel triggers. It seemed inefficient to me to see the grub
configuration regenerated over and over again:

Removing linux-headers-3.5.0-22-generic ...
Removing linux-headers-3.5.0-22 ...
Removing linux-headers-3.5.0-23-generic ...
Removing linux-headers-3.5.0-23 ...
Removing linux-headers-3.5.0-24-generic ...
Removing linux-headers-3.5.0-24 ...
Removing linux-headers-3.5.0-25-generic ...
Removing linux-headers-3.5.0-25 ...
Removing linux-image-extra-3.5.0-22-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.5.0-22-generic 
/boot/vmlinuz-3.5.0-22-generic
update-initramfs: Deleting /boot/initrd.img-3.5.0-22-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.5.0-22-generic 
/boot/vmlinuz-3.5.0-22-generic
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.8.0-13-generic
Found initrd image: /boot/initrd.img-3.8.0-13-generic
Found linux image: /boot/vmlinuz-3.5.0-25-generic
Found initrd image: /boot/initrd.img-3.5.0-25-generic
Found linux image: /boot/vmlinuz-3.5.0-24-generic
Found initrd image: /boot/initrd.img-3.5.0-24-generic
Found linux image: /boot/vmlinuz-3.5.0-23-generic
Found initrd image: /boot/initrd.img-3.5.0-23-generic
Found linux image: /boot/vmlinuz-3.5.0-22-generic
Found linux image: /boot/vmlinuz-3.2.0-35-generic
Found initrd image: /boot/initrd.img-3.2.0-35-generic
Found memtest86+ image: /boot/memtest86+.bin
File descriptor 59 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 4440: /bin/sh
File descriptor 60 (/dev/pts/12) leaked on lvs invocation. Parent PID 4440: 
/bin/sh
File descriptor 63 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 4440: /bin/sh
File descriptor 117 (/dev/pts/12) leaked on lvs invocation. Parent PID 4440: 
/bin/sh
File descriptor 119 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 4440: /bin/sh
File descriptor 170 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 4440: /bin/sh
File descriptor 171 (/dev/pts/12) leaked on lvs invocation. Parent PID 4440: 
/bin/sh
File descriptor 172 (/dev/pts/12) leaked on lvs invocation. Parent PID 4440: 
/bin/sh
  No volume groups found
done
Removing linux-image-3.5.0-22-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.5.0-22-generic 
/boot/vmlinuz-3.5.0-22-generic
update-initramfs: Deleting /boot/initrd.img-3.5.0-22-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.5.0-22-generic 
/boot/vmlinuz-3.5.0-22-generic
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.8.0-13-generic
Found initrd image: /boot/initrd.img-3.8.0-13-generic
Found linux image: /boot/vmlinuz-3.5.0-25-generic
Found initrd image: /boot/initrd.img-3.5.0-25-generic
Found linux image: /boot/vmlinuz-3.5.0-24-generic
Found initrd image: /boot/initrd.img-3.5.0-24-generic
Found linux image: /boot/vmlinuz-3.5.0-23-generic
Found initrd image: /boot/initrd.img-3.5.0-23-generic
Found linux image: /boot/vmlinuz-3.2.0-35-generic
Found initrd image: /boot/initrd.img-3.2.0-35-generic
Found memtest86+ image: /boot/memtest86+.bin
File descriptor 59 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 5475: /bin/sh
File descriptor 60 (/dev/pts/12) leaked on lvs invocation. Parent PID 5475: 
/bin/sh
File descriptor 63 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 5475: /bin/sh
File descriptor 117 (/dev/pts/12) leaked on lvs invocation. Parent PID 5475: 
/bin/sh
File descriptor 119 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 5475: /bin/sh
File descriptor 170 (/var/log/dist-upgrade/apt.log) leaked on lvs invocation. 
Parent PID 5475: /bin/sh
File descriptor 171 (/dev/pts/12) leaked on lvs invocation. Parent PID 5475: 
/bin/sh
File descriptor 172 (/dev/pts/12) leaked on lvs invocation. Parent PID 5475: 
/bin/sh
  No volume groups found
done
Removing linux-image-extra-3.5.0-23-generic ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.5.0-23-generic 
/boot/vmlinuz-3.5.0-23-generic
update-initramfs: Deleting /boot/initrd.img-3.5.0-23-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.5.0-23-generic 
/boot/vmlinuz-3.5.0-23-generic
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.8.0-13-generic
Found initrd image: /boot/initrd.img-3.8.0-13-generic
Found linux image: /boot/vmlinuz-3.5.0-25-generic
Found initrd image: /boot/initrd.img-3.5.0-25-generic
Found linux image: /boot/vmlinuz-3.5.0-24-generic
Found initrd image: /boot/initrd.img-3.5.0-24-generic
Found linux image: /boot/vmlinuz-3.5.0-23-generic
Found linux image: /boot/vmlinuz-3.2.0-35-generic
Found initrd 

[Bug 1075719] Re: python2.7 crashed with SIGSEGV in __GI___pthread_mutex_lock()

2013-03-18 Thread jablko
*** This bug is a duplicate of bug 1013798 ***
https://bugs.launchpad.net/bugs/1013798

** This bug has been marked a duplicate of bug 1013798
   Blink SIP client segfaults with libgcrypt11 1.5.0-3ubuntu0.1

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

Title:
  python2.7 crashed with SIGSEGV in __GI___pthread_mutex_lock()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-gnutls/+bug/1075719/+subscriptions

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


[Bug 1068492] Re: Firefox ends up with 2 different copies of sqlite loaded in to memory

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

** Changed in: libunity-webapps (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/1068492

Title:
  Firefox ends up with 2 different copies of sqlite loaded in to memory

To manage notifications about this bug go to:
https://bugs.launchpad.net/libunity-webapps/+bug/1068492/+subscriptions

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


[Bug 1068492] Re: Firefox ends up with 2 different copies of sqlite loaded in to memory

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

** Changed in: libunity-webapps (Ubuntu Quantal)
   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/1068492

Title:
  Firefox ends up with 2 different copies of sqlite loaded in to memory

To manage notifications about this bug go to:
https://bugs.launchpad.net/libunity-webapps/+bug/1068492/+subscriptions

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


[Bug 1156931] [NEW] Unity FTBFS xgettext unicode TrashLauncherIcon.cpp:91

2013-03-18 Thread Brandon Schaefer
Public bug reported:

xgettext fails on non-ascii code that was added to
TrashLauncherIcon.cpp.

xgettext: [  1%] Non-ASCII string at launcher/TrashLauncherIcon.cpp:91.
   Please specify the source encoding through --from-code.

** Affects: unity
 Importance: Critical
 Assignee: Brandon Schaefer (brandontschaefer)
 Status: In Progress

** Affects: unity (Ubuntu)
 Importance: Critical
 Status: In Progress

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

** Changed in: unity
   Status: New = In Progress

** Changed in: unity (Ubuntu)
   Status: New = In Progress

** Changed in: unity (Ubuntu)
   Importance: Undecided = Critical

** Changed in: unity
   Importance: Undecided = Critical

** Changed in: unity
 Assignee: (unassigned) = Brandon Schaefer (brandontschaefer)

** Changed in: unity
Milestone: None = 7.0.0

** Branch linked: lp:~brandontschaefer/unity/xgettest-unity-FTBFS-fix

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

Title:
  Unity FTBFS xgettext unicode TrashLauncherIcon.cpp:91

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

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


[Bug 1104476] Re: Network manager cannot connect to Eduroam (worldwide WiFi network for university students)

2013-03-18 Thread Mathieu Trudel-Lapierre
The certificate authority is missing. You may want to add it to the
configuration in NetworkManager to point to a CA certificate that can be
provided to you by your network administrator:

Jan 24 21:28:21 ubuntu wpa_supplicant[3569]: wlan0: CTRL-EVENT-EAP-METHOD EAP 
vendor 0 method 25 (PEAP) selected
Jan 24 21:28:21 ubuntu wpa_supplicant[3569]: TLS: Certificate verification 
failed, error 20 (unable to get local issuer certificate) depth 1 for 
'/C=SK/L=Bratislava/O=Comenius University/CN=WWW Servers Certification 
Authority/emailAddress=x'
Jan 24 21:28:21 ubuntu wpa_supplicant[3569]: wlan0: 
CTRL-EVENT-EAP-TLS-CERT-ERROR reason=1 depth=1 
subject='/C=SK/L=Bratislava/O=Comenius University/CN=WWW Servers Certification 
Authority/emailAddress=' err='unable to get local issuer certificate'
Jan 24 21:28:21 ubuntu wpa_supplicant[3569]: SSL: SSL3 alert: write (local SSL3 
detected an error):fatal:unknown CA
Jan 24 21:28:21 ubuntu wpa_supplicant[3569]: OpenSSL: openssl_handshake - 
SSL_connect error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate 
verify failed
Jan 24 21:28:22 ubuntu wpa_supplicant[3569]: wlan0: CTRL-EVENT-EAP-FAILURE EAP 
authentication failed

I've noticed this too happening with self-signed certificates in
universities. The alternative is to edit the connection file in
/etc/NetworkManager/system-connections to remove system-ca-certs=true.

** Changed in: network-manager (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Network manager cannot connect to Eduroam (worldwide WiFi network for
  university students)

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

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


[Bug 235202] Re: eject command fails with unable to open error

2013-03-18 Thread Matthew Caron
It is no longer an issue in Precise.

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

Title:
  eject command fails with unable to open error

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

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


[Bug 1062702] Re: reportbug crashed with IOError in ewrite(): [Errno 5] Input/output error

2013-03-18 Thread Logan Rosen
** Information type changed from Private to Public

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

Title:
  reportbug crashed with IOError in ewrite(): [Errno 5] Input/output
  error

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

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


[Bug 1066099] Re: python-gnutls - Segmentation fault running examples

2013-03-18 Thread jablko
*** This bug is a duplicate of bug 1013798 ***
https://bugs.launchpad.net/bugs/1013798

** This bug has been marked a duplicate of bug 1013798
   Blink SIP client segfaults with libgcrypt11 1.5.0-3ubuntu0.1

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

Title:
  python-gnutls - Segmentation fault running examples

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-gnutls/+bug/1066099/+subscriptions

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


[Bug 1052325] Re: reportbug crashed with IOError in ewrite(): [Errno 5] Input/output error

2013-03-18 Thread Logan Rosen
** Information type changed from Private to Public

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

Title:
  reportbug crashed with IOError in ewrite(): [Errno 5] Input/output
  error

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

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


[Bug 536786] Re: reportbug assert failure: *** glibc detected *** /usr/bin/python: double free or corruption (fasttop): 0x0a4eac78 ***

2013-03-18 Thread Logan Rosen
** Information type changed from Private to Public

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

Title:
  reportbug assert failure: *** glibc detected *** /usr/bin/python:
  double free or corruption (fasttop): 0x0a4eac78 ***

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

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


[Bug 440341] Re: reportbug assert failure: *** glibc detected *** /usr/bin/python: double free or corruption (fasttop): 0xb73057f0 ***

2013-03-18 Thread Logan Rosen
** Information type changed from Private to Public

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

Title:
  reportbug assert failure: *** glibc detected *** /usr/bin/python:
  double free or corruption (fasttop): 0xb73057f0 ***

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

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


[Bug 1156383] Re: libudev-dev is missing /usr/lib/i386-linux-gnu/libudev.la

2013-03-18 Thread Chris Halse Rogers
We deliberately strip .la files on the basis that they're worse than
useless; there's obviously some other problem here.

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

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

Title:
  libudev-dev is missing /usr/lib/i386-linux-gnu/libudev.la

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

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


[Bug 1156216] Re: activation of wifi freezes system (Broadcom 4313)

2013-03-18 Thread Timmie
With the mainline kernel (3.9), the system does not freeze, but I cannot
activate wifi:

rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
1: ideapad_wlan: Wireless LAN
Soft blocked: no
Hard blocked: no

What shall I do next?

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

Title:
  activation of wifi freezes system (Broadcom 4313)

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-03-18 Thread Ernie 07
Do not be deceived.  This is a 1210 and 13.04 problem.

64-bit 1204 3.2.0-39-generic #62-Ubuntu SMP Thu Feb 28 00:28:53 UTC 2013
and prior 12.04 64-bit versions work just fine!

It would be quite delightful if someone would correct this problem of
failing to shutdown properly.

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 1001086] Re: ibus-chewing randomly deletes selected texts in LibreOffice Writer and Calc

2013-03-18 Thread yltang
From the experience of using ibus-chewing, I believe this is the
**last** bug to be fixed. After this fix, ibus-chewing would be bugless
(hopefully). Can someone give it a shot to fix this problem? Or how to
get people's attention about this? Thanks.

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

Title:
  ibus-chewing randomly deletes selected texts in LibreOffice Writer and
  Calc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-chewing/+bug/1001086/+subscriptions

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


[Bug 578030] Re: Must be started by upstart to make sure it runs before any networking daemons

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

** Changed in: shorewall (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/578030

Title:
  Must be started by upstart to make sure it runs before any networking
  daemons

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

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


[Bug 1156310] Re: xrandr detects too many displays

2013-03-18 Thread Charles Profitt
dmesg as requested with updated kernel command line.

** Attachment added: dmesg-intel.txt
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1156310/+attachment/3582425/+files/dmesg-intel.txt

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

Title:
  xrandr detects too many displays

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

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


[Bug 1079440] Re: i945: Random complete freeze using dual monitors

2013-03-18 Thread thomas janssen
For me nothing worked. I tried many kernel, even the newest and made
unity and compiz update per ppa and a dist-upgrade to 13.04. Always the
same effect. Freezen System after a few minute or some mouse-Clicks.
There is absolutly no indication in dmesg, kernel.log, syslog or
Xorg.log.  There is no Input between the time of beginning freeze system
and the reboot . Now I'm back to 12.04, because it is working fine with
multiple monitor. It' a pity!

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

Title:
  i945: Random complete freeze using dual monitors

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-03-18 Thread Ernie 07
I repeat. This is a 12.10 and 13.04 problem.

64-bit 1204 3.5.0-26-generic #42~precise1-Ubuntu SMP Mon Mar 11 22:17:58 UTC 
2013 and prior 12.04
64-bit versions work just fine!

A fix for this problem of failing to shutdown properly would be much
appreciated.

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 535065] Re: launcher icon corruption after wake-up from suspend

2013-03-18 Thread Jamie Macdonald
Oh! I didn't realize. Both programs seem to work reliably.

Thanks for this workaround, Matthieu!
Nvidia GeForce 9600m GT with 304.84 Nvidia driver

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

Title:
  launcher icon corruption after wake-up from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/cairo-dock-plug-ins/+bug/535065/+subscriptions

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


[Bug 1156936] [NEW] Diodon - missing scrollbars with large clipboard size

2013-03-18 Thread Rainer Rohde
Public bug reported:

My Diodon clipboard size is set to 50, and when it gets full, it's
missing the scroll-bars that allow you to scroll down all the way to the
Clear option.  I have to exit the history, and then enter it again.
The second time around, I have the scroll-bars and I can scroll.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: diodon 1.0.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-8.17-generic 3.8.0
Uname: Linux 3.8.0-8-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Mon Mar 18 19:35:52 2013
EcryptfsInUse: Yes
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: diodon
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug raring third-party-packages

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

Title:
  Diodon - missing scrollbars with large clipboard size

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

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


<    6   7   8   9   10   11   12   13   >