[Bug 1425972] Re: Firefox no longer supports -remote parameter

2015-03-08 Thread Bug Watch Updater
Launchpad has imported 69 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=1080319.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2014-10-09T02:16:03+00:00 Mh+mozilla wrote:

The -remote option has existed essentially forever, but I question its 
usefulness.
- It requires a running instance to be any useful, so any script actually using 
it should first do -remote 'ping()' and handle the response properly.
- It is not cross-application. The remote service dispatches the -remote 
commands to the command line handler, and, for example, desktop b2g builds 
don't have handlers for -remote (although thunderbird and seamonkey do).
- It is not a cross-platform option, which leads to the following point:
- There are other command line ways to do the same thing (at least in Firefox), 
without having to jump through hoops with -remote 'ping()', because there are 
command line options to do those same things on non-X11 platforms.

For the latter, in Firefox case:
- -remote 'openURL(url)' can be replaced with firefox url
- -remote 'openURL(url,new-tab)' can be replaced with firefox -new-tab url
- -remote 'openURL(url,new-window)' can be replaced with firefox -new-window url
- -remote 'openfile(file,...)' is the same as -remote 'openurl(file,...) so, 
can be replaced as above
- -remote 'xfedocommand(openbrowser)' is inherited from the mozilla suite and 
doesn't make much sense, but can be replaced with firefox -new-window about:home

Thunderbird has:
- openurl
- mailto
- xfedocommand(openinbox)
- xfedocommand(composemessage)

Seamonkey has:
- openurl/openfile
- mailto
- xfedocommand(openbrowser)
- xfedocommand(openinbox)
- xfedocommand(composemessage)

They may not have command line equivalents for all of those, so if they
don't, and until they do, we may want to keep the -remote code in
toolkit/xre/nsAppRunner.cpp behind a #ifdef for them.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/0


On 2014-10-09T02:16:24+00:00 Mh+mozilla wrote:

Benjamin, what do you think?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/1


On 2014-10-09T02:17:33+00:00 Mh+mozilla wrote:

(In reply to Mike Hommey [:glandium] from comment #0)
 - -remote 'xfedocommand(openbrowser)' is inherited from the mozilla suite
 and doesn't make much sense, but can be replaced with firefox -new-window
 about:home

firefox -new-window, in fact (without about:home).

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/2


On 2014-10-09T02:25:01+00:00 Mh+mozilla wrote:

(In reply to Mike Hommey [:glandium] from comment #0)
 The -remote option has existed essentially forever, but I question its
 usefulness.

*nowadays. Well, since bug 280725, 9 years ago.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/3


On 2014-10-09T08:05:28+00:00 Mh+mozilla wrote:

At the same time, we should remove the mozilla-xremote-client binary.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/4


On 2014-10-09T09:00:42+00:00 Neil-httl wrote:

(In reply to Mike Hommey from comment #0)
 Seamonkey has:
 - openurl/openfile
 - mailto
 - xfedocommand(openbrowser)
 - xfedocommand(openinbox)
 - xfedocommand(composemessage)
 
 They may not have command line equivalents for all of those

-remote openfile(file) - -file file
-remote openurl(url) - -url url
-remote openurl(url,new-window) - -new-window url
-remote openurl(url,new-tab) - -new-tab url
-remote xfedocommand(openbrowser,url) - -browser url
-remote xfedocommand(openinbox) - -mail
-remote xfedocommand(composemessage,args) - -compose args

We do have bug 499785 filed on our -remote support... I wonder whether
the reporter still uses -remote after all these years.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/5


On 2014-10-09T15:53:34+00:00 Benjamin Smedberg (Mozilla) [:bs] wrote:

I think this is fine. Even if you were using it previously, using new-
style remoting is not a big change.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1425972/comments/6


On 2014-10-10T02:13:10+00:00 Mh+mozilla wrote:

Created attachment 8502937
Remove the 

[Bug 1429584] [NEW] gnome-terminal doesn't set $COLORTERM from 3.14 onwards

2015-03-08 Thread DipSwitch
Public bug reported:

Gnome terminal has dropped the $COLORTERM workaround for invalid
terminfo/termcap.

References:
https://github.com/GNOME/gnome-terminal/commit/1d5c1b6ca6373c1301494edbc9e43c3e6a9c9aaf
https://bugzilla.redhat.com/show_bug.cgi?id=1165439
https://bugzilla.redhat.com/show_bug.cgi?id=1173688
https://bugzilla.redhat.com/show_bug.cgi?id=1166428

This affects release: Vivid Vervet

Workaround I currently use is `.bashrc`:
 if [ -z $COLORTERM ]  cat /proc/$PPID/exe | grep -q gnome-terminal; then
  export COLORTERM=gnome-terminal
 fi

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

** Description changed:

  Gnome terminal has dropped the $COLORTERM workaround for invalid
  terminfo/termcap.
  
  References:
  
https://github.com/GNOME/gnome-terminal/commit/1d5c1b6ca6373c1301494edbc9e43c3e6a9c9aaf
  https://bugzilla.redhat.com/show_bug.cgi?id=1165439
  https://bugzilla.redhat.com/show_bug.cgi?id=1173688
  https://bugzilla.redhat.com/show_bug.cgi?id=1166428
+ 
+ This affects release: Vivid Vervet
+ 
+ Workaround I currently use is `.bashrc`:
+ 
+   if [ -z $COLORTERM ]  cat /proc/$PPID/exe | grep -q gnome-terminal; 
then
+   export COLORTERM=gnome-terminal
+   fi

** Description changed:

  Gnome terminal has dropped the $COLORTERM workaround for invalid
  terminfo/termcap.
  
  References:
  
https://github.com/GNOME/gnome-terminal/commit/1d5c1b6ca6373c1301494edbc9e43c3e6a9c9aaf
  https://bugzilla.redhat.com/show_bug.cgi?id=1165439
  https://bugzilla.redhat.com/show_bug.cgi?id=1173688
  https://bugzilla.redhat.com/show_bug.cgi?id=1166428
  
  This affects release: Vivid Vervet
  
  Workaround I currently use is `.bashrc`:
- 
-   if [ -z $COLORTERM ]  cat /proc/$PPID/exe | grep -q gnome-terminal; 
then
-   export COLORTERM=gnome-terminal
-   fi
+  if [ -z $COLORTERM ]  cat /proc/$PPID/exe | grep -q gnome-terminal; then
+   export COLORTERM=gnome-terminal
+  fi

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

Title:
  gnome-terminal doesn't set $COLORTERM from 3.14 onwards

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

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

[Bug 1375786] Re: .desktop files can not start apps with kdesu

2015-03-08 Thread Bruno Patri
Possible workaround :

sudo ln -s /usr/bin/kdesudo /usr/bin/kdesu

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

Title:
  .desktop files can not start apps with kdesu

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1375786/+subscriptions

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


[Bug 1366406] Re: Virtualbox capture error webm(vp8)

2015-03-08 Thread bob
I've installed Virtualbox 4.3.22 under my ubuntu 14.04 system: IDEM! My
WEBM video is Green.

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

Title:
  Virtualbox capture error webm(vp8)

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

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


[Bug 1366406] Re: Virtualbox capture error webm(vp8)

2015-03-08 Thread bob
Ooops: I've installed Virtualbox 4.3.24 under my ubuntu 14.04 system:
IDEM! My WEBM video is Green.

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

Title:
  Virtualbox capture error webm(vp8)

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

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


[Bug 1414516] Re: Ubuntu 14.10 sees logitech k810 bluetooth keyboard battery as a system/laptop battery

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

** Changed in: upower (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/1414516

Title:
  Ubuntu 14.10 sees logitech k810 bluetooth keyboard battery as a
  system/laptop battery

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

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


[Bug 1414516] Re: Ubuntu 14.10 sees logitech k810 bluetooth keyboard battery as a system/laptop battery

2015-03-08 Thread scruss
Looks related to: https://bugs.launchpad.net/ubuntu/+source/gnome-power-
manager/+bug/1391555

A fresh reinstall of 14.10 brought this problem back for me; an
effective hard lockout because the system interprets my Magic Mouse
battery as the laptop's one …

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

Title:
  Ubuntu 14.10 sees logitech k810 bluetooth keyboard battery as a
  system/laptop battery

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

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

[Bug 1429171] Re: systemd-fsckd[232]: Couldn't connect to plymouth: Connection refused

2015-03-08 Thread dino99
that systemd-fsck have appeared after having upgraded an other vivid 
installation (64 bits) on its own partition, sharing the swap partition but not 
/home.
Booting back on that vivid 32 bits, systemd-fschk was ran and terminated as 
expected, excepted for that plymouth error.

** Attachment added: journal.txt
   
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1429171/+attachment/4338045/+files/journal.txt

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

Title:
  systemd-fsckd[232]: Couldn't connect to plymouth: Connection refused

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

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


[Bug 1429171] Re: systemd-fsckd[232]: Couldn't connect to plymouth: Connection refused

2015-03-08 Thread dino99
note2: as fschk has not been used since that error, this error has not
then been seen indeed. But i suppose there is an issue connecting to
plymouth in such a case.

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

Title:
  systemd-fsckd[232]: Couldn't connect to plymouth: Connection refused

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

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


[Bug 1289202] Re: archive function does not always work - regression

2015-03-08 Thread Rolf Leggewie
I grepped around my Thunderbird folder to see where that inexplicable
junk is coming from and found the following.

rgrep -li mbox.*archive ~/.mozilla-thunderbird/ is the command I used.
After that I looked more closely at three files.

~/.mozilla-thunderbird/ha2ri4eg.default/ImapMail/192.168.1.10.msf
~/.mozilla-thunderbird/ha2ri4eg.default/panacea.dat
~/.mozilla-thunderbird/ha2ri4eg.default/folderTree.json

quoting some lines from ~/.mozilla-
thunderbird/ha2ri4eg.default/ImapMail/192.168.1.10.msf

(80=1)(8B=#mbox/Sent)(8D=8082014)(94=21788)
{1:^9F {(k^A0:c)(s=9)} 
  [1(^AC=1)(^AF^8B)(^88^8D)(^B0=1)(^A7^8B)(^B3^94)]}

...

(97=#mbox/Sent/#mbox^Sent^Archives)
[-1:^9F(^AC=1)(^AF^97)(^88^8D)(^B0=1)(^A7^97)(^B3^96)]
@$$}B}@

quoting from ~/.mozilla-thunderbird/ha2ri4eg.default/panacea.dat

  (539D=#mbox)(406
=/home/XXX/.thunderbird/ha2ri4eg.default/ImapMail/imap.arcor.de)

...

=/home/XXX/.thunderbird/ha2ri4eg.default/ImapMail/192.168.1.10/75ddfa\
bc.sbd/Archives.msf)(71E09=#mbox/Archives)(74148

~/.mozilla-thunderbird/ha2ri4eg.default/folderTree.json contained among others 
(on a single line):
imap://rolf@192.168.1.10/#mbox
imap://rolf@192.168.1.10/#mbox/Sent
imap://rolf@192.168.1.10/Trash/#mbox/Sent
imap://rolf@192.168.1.10/#mbox/Sent/#mbox^Sent^Archives

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

Title:
  archive function does not always work - regression

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

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


[Bug 1429594] [NEW] Sound card in iBook G4 not detected in 14.04

2015-03-08 Thread golisp
Public bug reported:

Hello,
After installing 14.04, sound card PowerMac Snapper (Dev 38) was not detected. 
I had try to use both combination of drivers (snd-powermac or 
snd-aoa-codec-tas), but without success. Previous LTS version 12.04 worked with 
this sound card without any issue.

Thanks for support,
Peter.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: alsa-base 1.0.25+dfsg-0ubuntu4
ProcVersionSignature: Ubuntu 3.13.0-47.78-powerpc-smp 3.13.11-ckt16
Uname: Linux 3.13.0-47-powerpc-smp ppc
ApportVersion: 2.14.1-0ubuntu3.7
Architecture: powerpc
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
CurrentDesktop: LXDE
Date: Sun Mar  8 16:08:15 2015
InstallationDate: Installed on 2015-03-07 (1 days ago)
InstallationMedia: Lubuntu 14.04.1 LTS Trusty Tahr - Release powerpc 
(20140722.2)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
UpgradeStatus: Upgraded to trusty on 2015-03-07 (0 days ago)

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug powerpc trusty

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

Title:
  Sound card in iBook G4 not detected in 14.04

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

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


[Bug 1429552] Re: 0cf3:3004 - Qualcom Atheros - Ubuntu 14.10 bluetooth not working

2015-03-08 Thread elichai2
(Or I can somehow monitor the Utopic branch and see when they'll add
this commit to Utopic kernel)

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

Title:
  0cf3:3004 - Qualcom Atheros - Ubuntu 14.10 bluetooth not working

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

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


[Bug 1429595] [NEW] pdfchain while installing shows this.

2015-03-08 Thread Pradeep Shanbhogue
Public bug reported:

Fontconfig warning: /etc/fonts/conf.d/65-droid-sans-fonts.conf, line 61: 
Having multiple values in test isn't supported and may not works as expected
Fontconfig warning: /etc/fonts/conf.d/65-droid-sans-fonts.conf, line 96: 
Having multiple values in test isn't supported and may not works as expected
Fontconfig warning: /etc/fonts/conf.d/90-fonts-unfonts-core.conf, line 11: 
Having multiple values in test isn't supported and may not works as expected

** Affects: raccoon (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/1429595

Title:
  pdfchain while installing shows this.

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

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


[Bug 1350012] Re: os-prober does not detect Windows 8.

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

** Changed in: os-prober (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/1350012

Title:
  os-prober does not detect Windows 8.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1350012/+subscriptions

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


[Bug 1429489] Re: Suspend not working when closing lid on ThinkPad T420s

2015-03-08 Thread Pirouette Cacahuète
Except if you have prebuilt packages for bisecting, I won't have time to
do this.

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

Title:
  Suspend not working when closing lid on ThinkPad T420s

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

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


[Bug 1429552] Re: 0cf3:3004 - Qualcom Atheros - Ubuntu 14.10 bluetooth not working

2015-03-08 Thread Jeremy
Kernel 3.19.1 appears to fix the firmware loading issue with ath3k.  I
have done 6 power cycles on my Lenovo with no firmware errors without
the hacks from the askubuntu post linked in comment 5

https://lists.ubuntu.com/archives/kernel-team/2015-February/054314.html
seems to be the fix

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

Title:
  0cf3:3004 - Qualcom Atheros - Ubuntu 14.10 bluetooth not working

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

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


[Bug 607213] Re: pycrust crash when inspecting wx namespace

2015-03-08 Thread Rolf Leggewie
Thank you for reporting back.  I will close this ticket as requested.
Please continue to report any problem you might find in the future.

** Changed in: wxwidgets2.8 (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  pycrust crash when inspecting wx namespace

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

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


[Bug 1429610] Re: notify-osd crashed with signal 5 in _XReply()

2015-03-08 Thread Apport retracing service
*** This bug is a duplicate of bug 1275524 ***
https://bugs.launchpad.net/bugs/1275524

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 #1275524, 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/1429610/+attachment/4338086/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338089/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338096/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338098/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338099/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338100/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1429610/+attachment/4338101/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1275524
   notify-osd crashed with signal 5 in _XReply()

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

Title:
  notify-osd crashed with signal 5 in _XReply()

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

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


[Bug 1428356] Re: USB printer will not print after boot

2015-03-08 Thread chris pollock
Christopher, maybe I'm barking up the wrong tree here.  After booting
yesterday into the 4.0rc kernel without the printer working and then
back to the 3.13.0 kernel with the same result I booted this morning
into 3.13.0-46-generic #77-Ubuntu SMP Mon Mar 2 18:23:39 UTC 2015 x86_64
x86_64 x86_64 GNU/Linux. I had been noticing this during boots but never
paid attention to it:

Mar  8 08:40:10 localhost kernel: [   19.500050] usb 1-3.4: device
descriptor read/64, error -110

With the printer turned on and plugged into my Belkin 7 port USB hub and
an indicator light showing for that port I then run lsusb -v -v -v from
a terminal:

Bus 001 Device 033: ID 03f0:2b17 Hewlett-Packard LaserJet 1020
Device Descriptor:
  bLength18
  bDescriptorType 1
  bcdUSB   2.00
  bDeviceClass0 (Defined at Interface level)
  bDeviceSubClass 0 
  bDeviceProtocol 0 
  bMaxPacketSize064
  idVendor   0x03f0 Hewlett-Packard
  idProduct  0x2b17 LaserJet 1020
  bcdDevice1.00
  iManufacturer   1 Hewlett-Packard
  iProduct2 HP LaserJet 1020
  iSerial 3 JL1F0DC
  bNumConfigurations  1
  Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength   32
bNumInterfaces  1
bConfigurationValue 1
iConfiguration  0 
bmAttributes 0xc0
  Self Powered
MaxPower   98mA
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber0
  bAlternateSetting   0
  bNumEndpoints   2
  bInterfaceClass 7 Printer
  bInterfaceSubClass  1 Printer
  bInterfaceProtocol  2 Bidirectional
  iInterface  0 
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x01  EP 1 OUT
bmAttributes2
  Transfer TypeBulk
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0200  1x 512 bytes
bInterval   0
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81  EP 1 IN
bmAttributes2
  Transfer TypeBulk
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0200  1x 512 bytes
bInterval   0
Device Qualifier (for other device speed):
  bLength10
  bDescriptorType 6
  bcdUSB   2.00
  bDeviceClass0 (Defined at Interface level)
  bDeviceSubClass 0 
  bDeviceProtocol 0 
  bMaxPacketSize064
  bNumConfigurations  1
Device Status: 0x0001
  Self Powered

The printer seems to be recognized however I can't print a test page
from the CUPS web interface nor can I print any documents. The HPLIP
popup shows the job starting and stopping however the CUPS interface
shows the job(s) as being held. So, question is Christopher where do I
jump to in trying to debug this or at least find the answer? I've
Googled and even gone so far as shutting down, removing the computer
power cable and waiting a few minutes then bringing it back up again as
was suggested as a fix on one Ubuntu forum.

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

Title:
  USB printer will not print after boot

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

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


[Bug 1275524] Re: notify-osd crashed with signal 5 in _XReply()

2015-03-08 Thread Apport retracing service
** Tags added: vivid

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

Title:
  notify-osd crashed with signal 5 in _XReply()

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

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


[Bug 1263064] Re: 'Replace' doesn't replace values

2015-03-08 Thread Walter Lapchynski
Maybe it's best while we wait to just call it incomplete until we can
confirm.

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

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

Title:
  'Replace' doesn't replace values

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

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


[Bug 1214352] Re: [SRU] GUINT32/64_SWAP_LE_BE macros do not enclose val argument in parentheses

2015-03-08 Thread LocutusOfBorg
Hi Norbert, did you try to download glib 2.24.1-0ubuntu2 and try to
apply the patch?

I tried, but the file is completely different, so you need to ask
somebody to rebase the patch if you really want the bug fixed in lucid.

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

Title:
  [SRU] GUINT32/64_SWAP_LE_BE macros do not enclose val argument in
  parentheses

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

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


[Bug 936968] Re: rsyslog-gnutls requires rsyslog=4.2.0-2ubuntu8 which is not latest

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

** Changed in: rsyslog (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/936968

Title:
  rsyslog-gnutls requires rsyslog=4.2.0-2ubuntu8 which is not latest

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

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


[Bug 1424526] Re: Unable to boot from installation media

2015-03-08 Thread Christopher M. Penalver
Michael Snoyman, the next step is to fully commit bisect from kernel 3.8
to 3.13 in order to identify the last good kernel commit, followed
immediately by the first bad one. This will allow for a more expedited
analysis of the root cause of your issue. Could you please do this
following https://wiki.ubuntu.com/Kernel/KernelBisection ?

Please note, finding adjacent kernel versions is not fully commit
bisecting.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

** Tags added: needs-bisect

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

Title:
  Unable to boot from installation media

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

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


[Bug 1422521] Re: mmap of ...mir/client-platform/mesa.so DENIED

2015-03-08 Thread Staffan Ulfberg
Thanks -- just to say I can confirm this works now.

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

Title:
  mmap of ...mir/client-platform/mesa.so DENIED

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

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


[Bug 1214352] Re: [SRU] GUINT32/64_SWAP_LE_BE macros do not enclose val argument in parentheses

2015-03-08 Thread Norbert
Dear LocutusOfBorg (costamagnagianfranco)!

I'm on Ubuntu 12.04.5 (Precise Pangolin) LTS, not on 10.04 (Lucid Lynx)
LTS.

I tried to apply patch locally on my 12.04.5, but got into dependency
problems.

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

Title:
  [SRU] GUINT32/64_SWAP_LE_BE macros do not enclose val argument in
  parentheses

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

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


[Bug 1424769] Re: virtualbox-guest-x11 uninstallable with mesa-lts-utopic

2015-03-08 Thread LocutusOfBorg
Hi rv_happy, I'm uploading right now the two new packages

virtualbox-lts-utopic
virtualbox-guest-additions-iso-lts-utopic
that should fix your issue.

I plan to ask -sponsors to upload them as new trusty packages, but only
if you provide me a good feedback about them :)

can you please test them in my ppa?
https://launchpad.net/~costamagnagianfranco/+archive/ubuntu/virtualbox-ppa

thanks!

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

Title:
  virtualbox-guest-x11 uninstallable with mesa-lts-utopic

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

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


[Bug 1426327] Re: some MATE apps don't receive GSettings notifications with GLib = 2.43

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

** Changed in: mate-netbook (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/1426327

Title:
  some MATE apps don't receive GSettings notifications with GLib = 2.43

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

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


[Bug 1426327] Re: some MATE apps don't receive GSettings notifications with GLib = 2.43

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

** Changed in: mate-desktop (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/1426327

Title:
  some MATE apps don't receive GSettings notifications with GLib = 2.43

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

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


[Bug 1255794] Re: package steam (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2015-03-08 Thread Dora
Let's see, this was all reported nearly a year ago, and Steam was
released for Ubuntu in February 2013 - and I just encountered it again
in March 2015.   Why has it not been fixed??

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

Title:
  package steam (not installed) failed to install/upgrade: subprocess
  new pre-installation script returned error exit status 128

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

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


[Bug 1426327] Re: some MATE apps don't receive GSettings notifications with GLib = 2.43

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

** Changed in: mate-user-share (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/1426327

Title:
  some MATE apps don't receive GSettings notifications with GLib = 2.43

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

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


[Bug 1429614] [NEW] [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict anymore with the official packages.

2015-03-08 Thread LocutusOfBorg
Public bug reported:

patch attached.

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

** Affects: virtualbox-guest-additions-iso (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: 
0001-Preventing-installation-of-proprietary-and-open-sour.patch
   
https://bugs.launchpad.net/bugs/1429614/+attachment/4338126/+files/0001-Preventing-installation-of-proprietary-and-open-sour.patch

** Also affects: virtualbox-guest-additions-iso (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/1429614

Title:
  [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict
  anymore with the official packages.

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

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


[Bug 480731] Re: After upgrade to 9.10, Nautilus FTP adds space before some filenames

2015-03-08 Thread Bug Watch Updater
** Changed in: gvfs
   Status: Confirmed = 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/480731

Title:
  After upgrade to 9.10, Nautilus FTP adds space before some filenames

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

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


[Bug 1429614] Re: [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict anymore with the official packages.

2015-03-08 Thread LocutusOfBorg
Hi dear sponsors, the status is tracked in debian (I committed in the
upstream git) and I would like to ask a sync for vivid, and SRU for all
previous ubuntu releases.

the potential impact is *nothing* but it will fix many bugs, e.g.
 (LP: #1371287, LP: #1375018, LP: #1385931, LP: #1386328, LP: #1421926)

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

Title:
  [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict
  anymore with the official packages.

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

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


[Bug 1429614] Re: virtualbox and virtualbox-guest-additions-iso doesn't conflict anymore with the official packages.

2015-03-08 Thread LocutusOfBorg
** Patch added: 
0001-Preventing-installation-of-proprietary-and-open-sour.patch
   
https://bugs.launchpad.net/ubuntu/+source/virtualbox-guest-additions-iso/+bug/1429614/+attachment/4338127/+files/0001-Preventing-installation-of-proprietary-and-open-sour.patch

** Summary changed:

- virtualbox and virtualbox-guest-additions-iso doesn't conflict anymore with 
the official packages.
+ [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict anymore 
with the official packages.

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

Title:
  [SRU] virtualbox and virtualbox-guest-additions-iso doesn't conflict
  anymore with the official packages.

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

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


[Bug 1429475] Re: Kubuntu Vivid 1 Beta 15.04 installation: Slideshow is missing german translation

2015-03-08 Thread Hans Joachim Desserud
 It is not only the string on the bottom, it is the whole side(s of the
slideshow).

Oh, you're right. I only saw the big bold text at first. Is this also
the case for the other slideshow pages?

 To which packages all the bugs in the installation process belong wasn't and 
 isn't really sure for me.
No problem, I've done some digging and will leave comments on a couple of them. 
Found them by searching for the strings to see which translation templates they 
were stored in, so presumably they are the strings in question.

How can I see the translations for previous versions? Maybe I can help
by translating ...

If you click on translations on the top of the page you will see the
various Ubuntu releases with translation templates in all languages for
that particular package. For instance
https://translations.launchpad.net/ubuntu/+source/ubiquity-slideshow-
ubuntu. When starting out, you'll be able to add suggestions for
translations which a member of one of the translation teams will the
review (and hopefully approve).

If you want to get started translating, you might want to take a look at
http://community.ubuntu.com/contribute/translations/ and seek out the
german translation team here on Launchpad (https://launchpad.net
/~ubuntu-l10n-de).

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

Title:
  Kubuntu Vivid 1 Beta 15.04 installation: Slideshow is missing german
  translation

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

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


Re: [Bug 1427672] Re: System doesn't power off when shutting down

2015-03-08 Thread Iain Lane
On Sun, Mar 08, 2015 at 10:33:40AM -, Martin Pitt wrote:
 Indeed rsyslog will stop too early. You might have better luck with
 actually looking at the journal from the last boot, with
 
   sudo journalctl -b -1  /tmp/journal.txt
 
 and attaching that.

I think one of my previous attachments is from journalctl --- anyway,
the journal is also stopped too early. I was suggesting modifying one of the
jobs so that {journal,rsyslog} stays up as long as possible.

 
  poweroff from a vt (as opposed to a debug shell, so there should have
 been an Active=yes session) worked.
 
 poweroff not working from a debug shell is worrying. The debug shell
 runs as root, and poweroff is supposed to work fine there. What happens
 exactly?

It *does* work from a debug shell, which means that it does *not*
reproduce this bug there. It also *does* work from a vt, so having an
Active session isn't enough, there's something in the user session
causing this problem.

-- 
Iain Lane  [ i...@orangesquash.org.uk ]
Debian Developer   [ la...@debian.org ]
Ubuntu Developer   [ la...@ubuntu.com ]

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

Title:
  System doesn't power off when shutting down

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

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


[Bug 1429470] Re: Kubuntu Vivid 1 Beta 15.04 installation: Partition table altered before user agreed according to german text

2015-03-08 Thread Hans Joachim Desserud
Thanks for taking your time to report this issue and help making Ubuntu
better.

From what I can find, the string in question seems to be this one [1],
which also originally states The partition tables of the following
devices are changed:. Though from the context this appears in, I would
guess this is the list of changes which will take place _if_ the user
proceeds.

(Marking confirmed based on your screenshot)


[1] 
https://translations.launchpad.net/ubuntu/utopic/+source/debian-installer/+pots/debian-installer/de/491/+translate

** Package changed: xorg (Ubuntu) = debian-installer (Ubuntu)

** Changed in: debian-installer (Ubuntu)
   Status: New = Confirmed

** Tags added: vivid

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

Title:
  Kubuntu Vivid 1 Beta 15.04 installation: Partition table altered
  before user agreed according to german text

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1429470/+subscriptions

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


<    1   2   3   4   5   6