[Bug 1482512] [NEW] setMonth() and other setXXX() javascript function doesn't work on the date QML object

2015-08-06 Thread Didier Roche
Public bug reported:

>From http://doc.qt.io/qt-5/qml-qtqml-date.html, "The QML Date object
extends the JS Date object with locale aware functions.".

Some of them indeed works, like getMonth(), getDate(), returning
expected value.

However, when change a date property on a object with setMonth() and
other functions, they don't do anything (and worse, fails silently):

Item {
  id: foo
  property date currentDate
}

foo.currentDate having no databinding.

On a click event handler:
console.log("Before setMonth " + foo.currentDate);
currentDate.setMonth(4);
console.log("After setMonth " + foo.currentDate);

returns:
Before setMonth Sat Mar 7 08:13:50 2015 GMT+0100
After setMonth Sat Mar 7 08:13:50 2015 GMT+0100

The date has been unchanged

** Affects: qtdeclarative-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: devexp

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

Title:
  setMonth() and other setXXX() javascript function doesn't work on the
  date QML object

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1482512/+subscriptions

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


[Bug 1482511] Re: openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel module failed to build

2015-08-06 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/1482511

Title:
  openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel
  module failed to build

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

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


[Bug 946339] Re: gedit additional dependancis different from stock GNOME (libzeitgeist)

2015-08-06 Thread xoristzatziki
Additionally we must install libzeitgeist (with whatever  security
issues it includes). Personally I do not like zeitgeist so currently, in
"vivid" which I test in virtualbox,  I have to decide between installing
gedit from source (and be unsecured) or from repositories (and be, maybe
less, unsecured).

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

Title:
  gedit additional dependancis different from stock GNOME (libzeitgeist)

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

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


[Bug 1482511] [NEW] openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel module failed to build

2015-08-06 Thread 2020s2020
Public bug reported:

openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel
module failed to build

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2
ProcVersionSignature: Ubuntu 3.13.0-61.100-generic 3.13.11-ckt22
Uname: Linux 3.13.0-61-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
DKMSKernelVersion: 3.13.0-62-generic
Date: Fri Aug  7 10:32:58 2015
DuplicateSignature: 
dkms:openvswitch-datapath-dkms:2.0.2-0ubuntu0.14.04.2:configure: error: Linux 
kernel in /lib/modules/3.13.0-62-generic/build is version 3.13.11, but version 
newer than 3.12.x is not supported
InstallationDate: Installed on 2014-06-29 (403 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
PackageArchitecture: all
PackageVersion: 2.0.2-0ubuntu0.14.04.2
SourcePackage: openvswitch
Title: openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel 
module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  openvswitch-datapath-dkms 2.0.2-0ubuntu0.14.04.2: openvswitch kernel
  module failed to build

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

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


[Bug 1482504] Re: Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
** Description changed:

  When putting and getting a QML date in the u1db database, the resulting
  strings are stored differently, even if you don't do any type
  conversion.
  
  The result is that the resulting date is shifted by the current
  timezone, rendering an incorrect date.
  
  Small example:
  
- qml: date object to save: "Sat Jan 3 08:26:03 2015 GMT+0100"
+ qml: date object to save: "Fri Aug 7 08:15:36 2015 GMT+0200" (value
+ chosen by the user in a datetime picker: 08:15)
  
- This value is jsonified in var current = {"title":"First 
element","date":"2015-01-03T07:26:03.000Z"}
- (so, it offsetted in UTC)
+ This value is jsonified in var current = {"title":"First 
element","date":"2015-08-07T06:15:36.573Z"}
+ (so, it offsetted correctly in UTC)
  
  console.log("Before save: " + JSON.stringify(tosave));
  db.putDoc(tosave, current.billId);
  var after = db.getDoc(current.billId.toString())
  console.log("After save: " + JSON.stringify(afterSave));
  
  log is:
- qml: Before save: {"title":"First element","date":"2015-01-03T07:26:03.000Z"}
- qml: After save: {"date":"2015-01-03T08:26:03","title":"First element"}
- -> getDoc() reapplied the timezone offset (and then, assigning that to a Date 
variable will reapply again the timezone offest, thinking the string is in UTC).
+ qml: Before save: {"title":"First element","date":"2015-08-07T06:15:36.573Z"}
+ qml: After save: {"date":"2015-08-07T08:15:36","title":"First element"}
+ -> Looking at the sqlite database, indeed, putDoc() saved 
"2015-08-07T08:15:36" and not "2015-08-07T06:15:36.573Z". And then, assigning 
that to a Date variable will reapply again the timezone offest, thinking the 
string is in UTC, and resulting in 10:15 instead of 08.15.
  
  -> Note that the date element has been altered and isn't returned in the
- same format The date should be returned unalterned.h
+ same format The date should be returned unalterned. Then it's up to the
+ user to save the timezone independently if they want.

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

Title:
  Putting and then getting dates in a document are altered by u1db

To manage notifications about this bug go to:
https://bugs.launchpad.net/u1db-qt/+bug/1482504/+subscriptions

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


[Bug 1482503] Re: Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
launchpad seems to continue to report bug twice when clicking on submit,
invalidating.

** Changed in: u1db-qt (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/1482503

Title:
  Putting and then getting dates in a document are altered by u1db

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u1db-qt/+bug/1482503/+subscriptions

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


[Bug 1479407] Re: Unicode in translated dates being lost in app previews

2015-08-06 Thread Richard Somlói
It is weird. It is showing the right string now with the Music app. Did
something change? (You can find the Hungarian language with the name
"magyar“.

** Attachment added: "screenshot20150807_082221233.png"
   
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1479407/+attachment/4440842/+files/screenshot20150807_082221233.png

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

Title:
  Unicode in translated dates being lost in app previews

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1479407/+subscriptions

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

[Bug 1479045] Re: E: Method gave invalid 103 Redirect message

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

** Changed in: apt (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/1479045

Title:
  E: Method gave invalid 103 Redirect message

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

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


[Bug 1482255] Re: screen looks blurry after unlock phone

2015-08-06 Thread Michał Sawicz
This seems to be a side-effect of full-shell rotation.

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

Title:
  screen looks blurry after unlock phone

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

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


[Bug 1482501] Re: Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

2015-08-06 Thread Keith Winstein
The mosh-clients and mosh-servers in Ubuntu 12.04 and 14.04 are
compatible (in both directions). However, you need a UTF-8 locale to run
Mosh.

Before Mosh version 1.2, this was the user's (or SSH's) responsibility.
Debian, Ubuntu, and Mac OS X have shipped with SendEnv LANG LC_* in its
ssh_config for some time, but not forever. Apparently you don't have
this in your SSH config.

Because not everybody was sending these environment variables, in 2012,
Mosh version 1.2 started transferring these variables itself. We also
improved the diagnostic message considerably.

Your options to fix this problem are basically:

(1) Add the SendEnv line (that you have already discovered) to
/etc/ssh/ssh_config. I believe this would have been the default if you
had installed Ubuntu 12.04 fresh.

(2) Upgrade to Mosh 1.2.4 (released in 2013) by using the ubuntu-
backports repository.

(3) Upgrade to the most recent version of Mosh using the ppa:keithw/mosh
repository.

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

** Changed in: mosh (Ubuntu)
 Assignee: (unassigned) => Keith Winstein (keithw)

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

Title:
  Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

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

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


[Bug 1482255] Re: screen looks blurry after unlock phone

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

** Changed in: unity8 (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/1482255

Title:
  screen looks blurry after unlock phone

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

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


[Bug 1408159] Re: [messaging] Too easy to delete whole conversation history with a contact

2015-08-06 Thread Michał Sawicz
@Olga, as I mentioned, this is currently inconsistent between dialer and
messaging apps. In dialer you indeed only delete the day's call history,
in messaging all the history of a contact.

I'm not asking for a third step, but some clarification on which is the
desired approach, and maybe a label on the delete button saying "clear
history" or so. I'm just saying I got bit by this having expected to
delete only a single conversation with a contact, but have deleted all
of them.

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

Title:
  [messaging] Too easy to delete whole conversation history with a
  contact

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

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


[Bug 1482390] Status changed to Confirmed

2015-08-06 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/1482390

Title:
  ASUS UX305LA - Battery state not detected correctly

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

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


[Bug 1482504] Re: Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
** Description changed:

  When putting and getting a QML date in the u1db database, the resulting
  strings are stored differently, even if you don't do any type
  conversion.
  
  The result is that the resulting date is shifted by the current
  timezone, rendering an incorrect date.
  
  Small example:
  
- date is "Sun Jul 5 17:20:46 2015 GMT+0200"
+ qml: date object to save: "Sat Jan 3 08:26:03 2015 GMT+0100"
  
- This value is jsonified in var current = {"title":"First
- element","date":"2015-07-05T15:20:46.000Z"}
+ This value is jsonified in var current = {"title":"First 
element","date":"2015-01-03T07:26:03.000Z"}
+ (so, it offsetted in UTC)
  
  console.log("Before save: " + JSON.stringify(tosave));
  db.putDoc(tosave, current.billId);
  var after = db.getDoc(current.billId.toString())
  console.log("After save: " + JSON.stringify(afterSave));
  
  log is:
- qml: Before save: {"title":"First element","date":"2015-07-05T15:20:46.000Z"}
- qml: After save: {"date":"2015-07-05T17:20:46","title":"First element"}
+ qml: Before save: {"title":"First element","date":"2015-01-03T07:26:03.000Z"}
+ qml: After save: {"date":"2015-01-03T08:26:03","title":"First element"}
+ -> getDoc() reapplied the timezone offset (and then, assigning that to a Date 
variable will reapply again the timezone offest, thinking the string is in UTC).
  
  -> Note that the date element has been altered and isn't returned in the
- same format The date should be returned unalterned.
+ same format The date should be returned unalterned.h

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

Title:
  Putting and then getting dates in a document are altered by u1db

To manage notifications about this bug go to:
https://bugs.launchpad.net/u1db-qt/+bug/1482504/+subscriptions

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


[Bug 1482506] Dependencies.txt

2015-08-06 Thread Sebastian Nohn
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1482506/+attachment/4440836/+files/Dependencies.txt

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

Title:
  ASUS UX305LA, touchpad does not recognize two-finger-tap as middle
  mouse button

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

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


[Bug 1482506] ProcEnviron.txt

2015-08-06 Thread Sebastian Nohn
apport information

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

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

Title:
  ASUS UX305LA, touchpad does not recognize two-finger-tap as middle
  mouse button

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

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


[Bug 1464226] Re: Rotation in between 180 degrees and normal cause black screen

2015-08-06 Thread Timo Aaltonen
*** This bug is a duplicate of bug 1446979 ***
https://bugs.launchpad.net/bugs/1446979

** This bug has been marked a duplicate of bug 1446979
   [bug] screen is black after xrandr  rotate command

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

Title:
  Rotation in between 180 degrees and normal cause black screen

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

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


[Bug 1482501] Re: Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

2015-08-06 Thread Sebastian Nohn
apport information

** Tags added: apport-collected trusty

** Description changed:

  sebastian@client[0r/0s]:~
  $ mosh server.nohn.net 
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  mosh-server: invalid option -- 'l'
  Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- 
COMMAND...]
  setlocale: No such file or directory
  Connection to server.nohn.net closed.
  /usr/bin/mosh: Did not find mosh server startup message.
  
  Locale settings on client:
  
  sebastian@client[0r/0s]:~
  $ locale
  LANG=en_GB.UTF-8
  LANGUAGE=en_GB:en
  LC_CTYPE="en_GB.UTF-8"
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE="en_GB.UTF-8"
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES="en_GB.UTF-8"
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=
  
  Locale settings on server:
  
  $ ssh server.nohn.net locale
  locale: Cannot set LC_ALL to default locale: No such file or directory
  LANG=en_GB.UTF-8
  LANGUAGE=
  LC_CTYPE="en_GB.UTF-8"
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE="en_GB.UTF-8"
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES="en_GB.UTF-8"
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=
  
  Verify locale integrity on client:
  
  sebastian@client[0r/0s]:~
  $ LANG=en_GB.UTF-8 locale
  LANG=en_GB.UTF-8
  LANGUAGE=en_GB:en
  LC_CTYPE="en_GB.UTF-8"
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE="en_GB.UTF-8"
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES="en_GB.UTF-8"
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=
  
  Verify locale integrity on server:
  
  sebastian@server:~$ LANG=en_GB.UTF-8 locale
  LANG=en_GB.UTF-8
  LANGUAGE=en_GB.utf8
  LC_CTYPE="en_GB.utf8"
  LC_NUMERIC="en_GB.utf8"
  LC_TIME="en_GB.utf8"
  LC_COLLATE="en_GB.utf8"
  LC_MONETARY="en_GB.utf8"
  LC_MESSAGES="en_GB.utf8"
  LC_PAPER="en_GB.utf8"
  LC_NAME="en_GB.utf8"
  LC_ADDRESS="en_GB.utf8"
  LC_TELEPHONE="en_GB.utf8"
  LC_MEASUREMENT="en_GB.utf8"
  LC_IDENTIFICATION="en_GB.utf8"
  LC_ALL=en_GB.utf8
  
  It works, when I comment SendEnv LANG LC_* in /etc/ssh/ssh_config.
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3.11
+ Architecture: amd64
+ CurrentDesktop: GNOME
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2015-08-06 (0 days ago)
+ InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
+ Package: mosh 1.2.4a-1ubuntu1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 3.16.0-45.60~14.04.1-generic 3.16.7-ckt14
+ Tags:  trusty
+ Uname: Linux 3.16.0-45-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1482501/+attachment/4440838/+files/Dependencies.txt

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

Title:
  Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

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

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


[Bug 1482501] ProcEnviron.txt

2015-08-06 Thread Sebastian Nohn
apport information

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

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

Title:
  Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

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

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


[Bug 1482506] [NEW] ASUS UX305LA, touchpad does not recognize two-finger-tap as middle mouse button

2015-08-06 Thread Sebastian Nohn
Public bug reported:

After a fresh Ubuntu 14.04 install including all updates, the two-
finger-tap gesture is not recognized as middle mouse button.

A workaround to fix this is this script:

#!/usr/bin/env bash
ID=$(xinput | grep Touchpad | awk '{ print $6 }' | cut -d "=" -f 2)
WHATEVER=$(xinput list-props $ID | grep "Tap Action" | cut -d "(" -f 2 | cut -d 
")" -f 1)

xinput set-int-prop $ID $WHATEVER 8 2 3 0 0 1 2 3
--- 
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
CurrentDesktop: GNOME
DistroRelease: Ubuntu 14.04
InstallationDate: Installed on 2015-08-06 (0 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
Package: xserver-xorg-input-synaptics-lts-utopic 1.8.1-1ubuntu1~trusty1
PackageArchitecture: amd64
ProcVersionSignature: Ubuntu 3.16.0-45.60~14.04.1-generic 3.16.7-ckt14
Tags:  trusty
Uname: Linux 3.16.0-45-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
_MarkForUpload: True

** Affects: xserver-xorg-input-synaptics-lts-utopic (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-collected trusty

** Tags added: apport-collected trusty

** Description changed:

  After a fresh Ubuntu 14.04 install including all updates, the two-
  finger-tap gesture is not recognized as middle mouse button.
  
  A workaround to fix this is this script:
  
  #!/usr/bin/env bash
  ID=$(xinput | grep Touchpad | awk '{ print $6 }' | cut -d "=" -f 2)
  WHATEVER=$(xinput list-props $ID | grep "Tap Action" | cut -d "(" -f 2 | cut 
-d ")" -f 1)
  
  xinput set-int-prop $ID $WHATEVER 8 2 3 0 0 1 2 3
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3.11
+ Architecture: amd64
+ CurrentDesktop: GNOME
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2015-08-06 (0 days ago)
+ InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
+ Package: xserver-xorg-input-synaptics-lts-utopic 1.8.1-1ubuntu1~trusty1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 3.16.0-45.60~14.04.1-generic 3.16.7-ckt14
+ Tags:  trusty
+ Uname: Linux 3.16.0-45-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True

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

Title:
  ASUS UX305LA, touchpad does not recognize two-finger-tap as middle
  mouse button

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

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


[Bug 1482390] Re: ASUS UX305LA - Battery state not detected correctly

2015-08-06 Thread Sebastian Nohn
** Changed in: linux (Ubuntu)
   Status: Incomplete => New

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

Title:
  ASUS UX305LA - Battery state not detected correctly

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

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


[Bug 1482503] [NEW] Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
Public bug reported:

When putting and getting a QML date in the u1db database, the resulting
strings are stored differently, even if you don't do any type
conversion.

The result is that the resulting date is shifted by the current
timezone, rendering an incorrect date.

Small example:

date is "Sun Jul 5 17:20:46 2015 GMT+0200"

This value is jsonified in var current = {"title":"First
element","date":"2015-07-05T15:20:46.000Z"}

console.log("Before save: " + JSON.stringify(tosave));
db.putDoc(tosave, current.billId);
var after = db.getDoc(current.billId.toString())
console.log("After save: " + JSON.stringify(afterSave));

log is:
qml: Before save: {"title":"First element","date":"2015-07-05T15:20:46.000Z"}
qml: After save: {"date":"2015-07-05T17:20:46","title":"First element"}

-> Note that the date element has been altered and isn't returned in the
same format The date should be returned unalterned.

** Affects: u1db-qt (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/1482503

Title:
  Putting and then getting dates in a document are altered by u1db

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u1db-qt/+bug/1482503/+subscriptions

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


[Bug 1482504] [NEW] Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
Public bug reported:

When putting and getting a QML date in the u1db database, the resulting
strings are stored differently, even if you don't do any type
conversion.

The result is that the resulting date is shifted by the current
timezone, rendering an incorrect date.

Small example:

date is "Sun Jul 5 17:20:46 2015 GMT+0200"

This value is jsonified in var current = {"title":"First
element","date":"2015-07-05T15:20:46.000Z"}

console.log("Before save: " + JSON.stringify(tosave));
db.putDoc(tosave, current.billId);
var after = db.getDoc(current.billId.toString())
console.log("After save: " + JSON.stringify(afterSave));

log is:
qml: Before save: {"title":"First element","date":"2015-07-05T15:20:46.000Z"}
qml: After save: {"date":"2015-07-05T17:20:46","title":"First element"}

-> Note that the date element has been altered and isn't returned in the
same format The date should be returned unalterned.

** Affects: u1db-qt
 Importance: Undecided
 Status: New

** Affects: u1db-qt (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: devexp

** Also affects: u1db-qt
   Importance: Undecided
   Status: New

** Tags added: devexp

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

Title:
  Putting and then getting dates in a document are altered by u1db

To manage notifications about this bug go to:
https://bugs.launchpad.net/u1db-qt/+bug/1482504/+subscriptions

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


[Bug 1482501] [NEW] Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

2015-08-06 Thread Sebastian Nohn
Public bug reported:

sebastian@client[0r/0s]:~
$ mosh server.nohn.net 
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
mosh-server: invalid option -- 'l'
Usage: mosh-server new [-s] [-i LOCALADDR] [-p PORT] [-c COLORS] [-- COMMAND...]
setlocale: No such file or directory
Connection to server.nohn.net closed.
/usr/bin/mosh: Did not find mosh server startup message.

Locale settings on client:

sebastian@client[0r/0s]:~
$ locale
LANG=en_GB.UTF-8
LANGUAGE=en_GB:en
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC=de_DE.UTF-8
LC_TIME=de_DE.UTF-8
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY=de_DE.UTF-8
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER=de_DE.UTF-8
LC_NAME=de_DE.UTF-8
LC_ADDRESS=de_DE.UTF-8
LC_TELEPHONE=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_IDENTIFICATION=de_DE.UTF-8
LC_ALL=

Locale settings on server:

$ ssh server.nohn.net locale
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=en_GB.UTF-8
LANGUAGE=
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC=de_DE.UTF-8
LC_TIME=de_DE.UTF-8
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY=de_DE.UTF-8
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER=de_DE.UTF-8
LC_NAME=de_DE.UTF-8
LC_ADDRESS=de_DE.UTF-8
LC_TELEPHONE=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_IDENTIFICATION=de_DE.UTF-8
LC_ALL=

Verify locale integrity on client:

sebastian@client[0r/0s]:~
$ LANG=en_GB.UTF-8 locale
LANG=en_GB.UTF-8
LANGUAGE=en_GB:en
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC=de_DE.UTF-8
LC_TIME=de_DE.UTF-8
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY=de_DE.UTF-8
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER=de_DE.UTF-8
LC_NAME=de_DE.UTF-8
LC_ADDRESS=de_DE.UTF-8
LC_TELEPHONE=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_IDENTIFICATION=de_DE.UTF-8
LC_ALL=

Verify locale integrity on server:

sebastian@server:~$ LANG=en_GB.UTF-8 locale
LANG=en_GB.UTF-8
LANGUAGE=en_GB.utf8
LC_CTYPE="en_GB.utf8"
LC_NUMERIC="en_GB.utf8"
LC_TIME="en_GB.utf8"
LC_COLLATE="en_GB.utf8"
LC_MONETARY="en_GB.utf8"
LC_MESSAGES="en_GB.utf8"
LC_PAPER="en_GB.utf8"
LC_NAME="en_GB.utf8"
LC_ADDRESS="en_GB.utf8"
LC_TELEPHONE="en_GB.utf8"
LC_MEASUREMENT="en_GB.utf8"
LC_IDENTIFICATION="en_GB.utf8"
LC_ALL=en_GB.utf8

It works, when I comment SendEnv LANG LC_* in /etc/ssh/ssh_config.

** Affects: mosh (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/1482501

Title:
  Ubuntu 14.04 mosh client unable to connect to Ubuntu 12.04 mosh server

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

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


[Bug 1482411] Re: Pulseaudio set Kodi sount to 1% each time I change video

2015-08-06 Thread Raymond
There is no hardware volume control when you use ac3 pass through SPDIF
the volume is controlled by your AC3 digital receiver 


index: 2
name: 
driver: 
flags: HARDWARE DECIBEL_VOLUME LATENCY 
state: RUNNING
suspend cause: 
priority: 9958
volume: front-left: 65536 / 100% / 0,00 dB,   front-right: 65536 / 100% 
/ 0,00 dB,   rear-left: 65536 / 100% / 0,00 dB,   rear-right: 65536 / 100% / 
0,00 dB,   front-center: 65536 / 100% / 0,00 dB,   lfe: 65536 / 100% / 0,00 dB
balance 0,00
base volume: 65536 / 100% / 0,00 dB
volume steps: 65537
muted: no
current latency: 96,00 ms
max request: 54 KiB
max rewind: 0 KiB
monitor source: 4
sample spec: s16le 6ch 48000Hz
channel map: 
front-left,front-right,rear-left,rear-right,front-center,lfe
 Surround 5.1
used by: 1
linked by: 1
fixed latency: 96,00 ms
card: 2 
module: 8
properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = ""
alsa.id = ""
alsa.subdevice = "0"
alsa.subdevice_name = ""
alsa.device = "0"
device.string = "a52:0"
device.buffering.buffer_size = "55296"
device.buffering.fragment_size = "18432"
device.access_mode = "mmap"
device.profile.name = "iec958-ac3-surround-51"
device.profile.description = "Surround numérique 5.1 
(IEC958/AC3)"
device.description = "Audio interne Surround numérique 5.1 
(IEC958/AC3)"
alsa.card = "0"
alsa.card_name = "HDA ATI SB"
alsa.long_card_name = "HDA ATI SB at 0xf9ff4000 irq 16"
alsa.driver_name = "snd_hda_intel"
device.bus_path = "pci-:00:14.2"
sysfs.path = "/devices/pci:00/:00:14.2/sound/card0"
device.bus = "pci"
device.vendor.id = "1002"
device.vendor.name = "Advanced Micro Devices, Inc. [AMD/ATI]"
device.product.id = "4383"
device.product.name = "SBx00 Azalia (Intel HDA)"
device.form_factor = "internal"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-pci"
4 source(s) available.


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

Title:
  Pulseaudio set Kodi sount to 1% each time I change video

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

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

[Bug 1482411] Re: Pulseaudio set Kodi sount to 1% each time I change video

2015-08-06 Thread Raymond
you have to turn off IEC958 Default PCM if you are using AC3 passthrough
SPDIF

Simple mixer control 'IEC958 Default PCM',0
  Capabilities: pswitch pswitch-joined
  Playback channels: Mono
  Mono: Playback [on]

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

Title:
  Pulseaudio set Kodi sount to 1% each time I change video

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

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


[Bug 1482333] Re: package linux-image-3.13.0-59-generic 3.13.0-59.98 failed to install/upgrade: package linux-image-3.13.0-59-generic is already installed and configured

2015-08-06 Thread dino99
*** This bug is a duplicate of bug 1407757 ***
https://bugs.launchpad.net/bugs/1407757

** This bug has been marked a duplicate of bug 1407757
   multi-arch packages cannot be installed due to dpkg wrongly detecting them 
as already installed

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

Title:
  package linux-image-3.13.0-59-generic 3.13.0-59.98 failed to
  install/upgrade: package linux-image-3.13.0-59-generic is already
  installed and configured

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

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


[Bug 1482498] [NEW] Can't share webcam to Windows 7 guest from OSX Yosemite host after upgrading to 5.0

2015-08-06 Thread Andrew
Public bug reported:

I've been sharing my webcam with guest machines via Devices -> Webcams
(with the guest running and open), but the Devices menu doesn't seem to
have 'Webcams' after upgrading to 5.0. Is this a bug? Could you please
advise if this functionality has moved?

** Affects: virtualbox (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/1482498

Title:
  Can't share webcam to Windows 7 guest from OSX Yosemite host after
  upgrading to 5.0

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

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


[Bug 1482332] Re: package apache2-bin 2.4.7-1ubuntu4.5 failed to install/upgrade: package apache2-bin is already installed and configured

2015-08-06 Thread dino99
*** This bug is a duplicate of bug 1407757 ***
https://bugs.launchpad.net/bugs/1407757

** This bug has been marked a duplicate of bug 1407757
   multi-arch packages cannot be installed due to dpkg wrongly detecting them 
as already installed

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

Title:
  package apache2-bin 2.4.7-1ubuntu4.5 failed to install/upgrade:
  package apache2-bin is already installed and configured

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

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


[Bug 1482331] Re: Startup - no such directory - package apache2-data 2.4.7-1ubuntu4.5 failed to install/upgrade: package apache2-data is already installed and configured

2015-08-06 Thread dino99
*** This bug is a duplicate of bug 1407757 ***
https://bugs.launchpad.net/bugs/1407757

** This bug has been marked a duplicate of bug 1407757
   multi-arch packages cannot be installed due to dpkg wrongly detecting them 
as already installed

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

Title:
  Startup - no such directory - package apache2-data 2.4.7-1ubuntu4.5
  failed to install/upgrade: package apache2-data is already installed
  and configured

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

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


[Bug 1482434] Re: packages missing in launchpad to report on

2015-08-06 Thread dino99
"ubuntu-bug" is not a package as you think, but an Apport feature


http://manpages.ubuntu.com/manpages/vivid/man1/ubuntu-bug.1.html

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

Title:
  packages missing in launchpad to report on

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

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


[Bug 805651] Re: gvfsd-trash crashed with signal 7 in g_vfs_channel_connection_closed()

2015-08-06 Thread Bug Watch Updater
** Changed in: gvfs
   Status: New => Expired

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

Title:
  gvfsd-trash crashed with signal 7 in g_vfs_channel_connection_closed()

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

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


[Bug 1383184] Re: Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

2015-08-06 Thread Jeric Bryle Dy
not sure how to attach the log file... but here's the link:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1383184/+attachment/4440833/+files/ath10k-1.1.log

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

Title:
  Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1383184/+subscriptions

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


[Bug 1383184] Re: Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

2015-08-06 Thread Jeric Bryle Dy
installation failed for me

** Attachment added: "ath10k-1.1.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1383184/+attachment/4440833/+files/ath10k-1.1.log

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

Title:
  Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1383184/+subscriptions

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


[Bug 1473934] Re: ISST-LTE: pmac-fdisk doesn't work with mpath devices

2015-08-06 Thread bugproxy
--- Comment on attachment From ckuma...@in.ibm.com 2015-07-13 14:13 
EDT---


strace -e open fdisk -l
strace -e open fdisk -l /dev/mapper/mpath0

Both commands gives same results (reading only /dev/sdx and /dev/hdx)
and in unable to read multipath disk. And looking at code it seems it is
meant to be so.

root@dilllp1:/# ll /dev/mapper/
total 0
drwxr-xr-x  2 root root  400 Jul 12 21:03 ./
drwxr-xr-x 13 root root 6400 Jul 12 21:03 ../
crw---  1 root root  10, 236 Jul 12 20:46 control
lrwxrwxrwx  1 root root7 Jul 13 08:41 mpath0 -> ../dm-0
brw---  1 root root 252,   6 Jul 12 20:46 mpath0-part1
brw---  1 root root 252,   7 Jul 12 20:46 mpath0-part2
brw---  1 root root 252,   8 Jul 12 20:46 mpath0-part3
lrwxrwxrwx  1 root root7 Jul 12 20:47 mpath1 -> ../dm-1
brw---  1 root root 252,   9 Jul 12 20:46 mpath1-part1
brw---  1 root root 252,  11 Jul 12 20:46 mpath1-part2
lrwxrwxrwx  1 root root7 Jul 12 20:54 mpath2 -> ../dm-2
brw-rw  1 root disk 252,  16 Jul 12 20:47 mpath2-part1
brw-rw  1 root disk 252,  17 Jul 12 20:47 mpath2-part2
lrwxrwxrwx  1 root root7 Jul 12 21:03 mpath3 -> ../dm-3
brw-rw  1 root disk 252,  13 Jul 12 21:03 mpath3p1
brw-rw  1 root disk 252,  14 Jul 12 21:03 mpath3-part1
lrwxrwxrwx  1 root root7 Jul 12 20:52 mpath4 -> ../dm-4
lrwxrwxrwx  1 root root7 Jul 12 20:47 mpath5 -> ../dm-5
lrwxrwxrwx  1 root root8 Jul 12 20:47 mpath6 -> ../dm-10
lrwxrwxrwx  1 root root8 Jul 12 21:03 mpath7 -> ../dm-12
root@dilllp1:/# 
root@dilllp1:/# 
root@dilllp1:/# ls -l /dev/dm-0 
brw-rw 1 root disk 252, 0 Jul 13 08:41 /dev/dm-0
root@dilllp1:/# 


Looking at code : fdisk.c

---
void try(char *device)
{
disk_device = device;
if (!setjmp(listingbuf)) {
if ((fd = open(disk_device, type_open)) >= 0) {
close(fd);
get_boot();
list_table();
if (partitions > 4)
delete_partition(ext_index);
  } else {
/* Ignore other errors, since we try IDE
   and SCSI hard disks which may not be
   installed on the system. */
 if(errno == EACCES) {
fprintf(stderr, "Cannot open %s\n", device);
exit(1);
 }
  }
}
}


void main(int argc, char **argv)
{
if (argc > 3)
fatal(usage);
if (argc > 1 && *argv[1] == '-') {
switch (*(argv[1] + 1)) {
case 'v':
printf("fdisk v" VERSION "\n");
exit(0);
case 'l':
listing = 1;
type_open = O_RDONLY;
try("/dev/hda");
try("/dev/hdb");
try("/dev/hdc");
try("/dev/hdd");
try("/dev/sda");
try("/dev/sdb");
try("/dev/sdc");
try("/dev/sdd");
try("/dev/sde");
try("/dev/sdf");
try("/dev/sdg");
try("/dev/sdh");
exit(0);
case 's': {



** Tags removed: targetmilestone-inin---
** Tags added: targetmilestone-inin14043

** Attachment added: "Strace Log"
   https://bugs.launchpad.net/bugs/1473934/+attachment/4440834/+files/strace.log

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

Title:
  ISST-LTE: pmac-fdisk doesn't work with mpath devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mac-fdisk/+bug/1473934/+subscriptions

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


[Bug 1468811] Re: headphone volume auto-set to loudest

2015-08-06 Thread Cédric Bellegarde
Happens again this morning, while switching tracks in music app

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

Title:
  headphone volume auto-set to loudest

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468811/+subscriptions

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


[Bug 1482488] Re: package chromium-codecs-ffmpeg-extra 43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package chromium-codecs-ffmpeg-extra is already installed and configured

2015-08-06 Thread dino99
*** This bug is a duplicate of bug 1407757 ***
https://bugs.launchpad.net/bugs/1407757

** This bug has been marked a duplicate of bug 1407757
   multi-arch packages cannot be installed due to dpkg wrongly detecting them 
as already installed

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

Title:
  package chromium-codecs-ffmpeg-extra
  43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package
  chromium-codecs-ffmpeg-extra is already installed and configured

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

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


[Bug 1482487] Re: package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1 failed to install/upgrade: package libgstreamer-plugins-bad0.10-0:amd64 is already installed and configured

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

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

Title:
  package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1
  failed to install/upgrade: package libgstreamer-plugins-
  bad0.10-0:amd64 is already installed and configured

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

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


[Bug 1482488] Re: package chromium-codecs-ffmpeg-extra 43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package chromium-codecs-ffmpeg-extra is already installed and configured

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

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

Title:
  package chromium-codecs-ffmpeg-extra
  43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package
  chromium-codecs-ffmpeg-extra is already installed and configured

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

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


[Bug 1463063] Re: [Ubuntu 14.04.03] ppc64-diag package update

2015-08-06 Thread Adam Conrad
** Changed in: ppc64-diag (Ubuntu)
   Status: Incomplete => 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/1463063

Title:
  [Ubuntu 14.04.03]  ppc64-diag package update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ppc64-diag/+bug/1463063/+subscriptions

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


[Bug 1482487] Re: package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1 failed to install/upgrade: package libgstreamer-plugins-bad0.10-0:amd64 is already installed and configured

2015-08-06 Thread dino99
*** This bug is a duplicate of bug 1407757 ***
https://bugs.launchpad.net/bugs/1407757

** This bug has been marked a duplicate of bug 1407757
   multi-arch packages cannot be installed due to dpkg wrongly detecting them 
as already installed

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

Title:
  package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1
  failed to install/upgrade: package libgstreamer-plugins-
  bad0.10-0:amd64 is already installed and configured

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

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


[Bug 1455644] Re: [MIR] ippusbxd

2015-08-06 Thread Till Kamppeter
I have also tried to replace in6addr_any by in6addr_loopback, but with
this I cannot even access via localhost:6. With in6addr_any I can
access also from my virtual machine, through the hosts IP (like
http://192.168.122.204).

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

Title:
  [MIR] ippusbxd

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

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


[Bug 1482488] [NEW] package chromium-codecs-ffmpeg-extra 43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package chromium-codecs-ffmpeg-extra is already installed and configured

2015-08-06 Thread Bilal Shahid
Public bug reported:

multiple crashes

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: chromium-codecs-ffmpeg-extra 43.0.2357.130-0ubuntu0.14.04.1.1092
ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
Uname: Linux 3.19.0-25-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Fri Aug  7 00:31:18 2015
DuplicateSignature: 
package:chromium-codecs-ffmpeg-extra:43.0.2357.130-0ubuntu0.14.04.1.1092:package
 chromium-codecs-ffmpeg-extra is already installed and configured
ErrorMessage: package chromium-codecs-ffmpeg-extra is already installed and 
configured
InstallationDate: Installed on 2015-08-06 (0 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: chromium-browser
Title: package chromium-codecs-ffmpeg-extra 43.0.2357.130-0ubuntu0.14.04.1.1092 
failed to install/upgrade: package chromium-codecs-ffmpeg-extra is already 
installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: already-installed amd64 apport-package need-duplicate-check trusty

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

Title:
  package chromium-codecs-ffmpeg-extra
  43.0.2357.130-0ubuntu0.14.04.1.1092 failed to install/upgrade: package
  chromium-codecs-ffmpeg-extra is already installed and configured

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

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


[Bug 1482487] [NEW] package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1 failed to install/upgrade: package libgstreamer-plugins-bad0.10-0:amd64 is already installed and configured

2015-08-06 Thread Bilal Shahid
Public bug reported:

installed 14.4.2 and upgraded to 14.4.3  facing this crash on start up.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1
ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
Uname: Linux 3.19.0-25-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Fri Aug  7 00:31:18 2015
DuplicateSignature: 
package:libgstreamer-plugins-bad0.10-0:amd64:0.10.23-7.2ubuntu1.1:package 
libgstreamer-plugins-bad0.10-0:amd64 is already installed and configured
ErrorMessage: package libgstreamer-plugins-bad0.10-0:amd64 is already installed 
and configured
InstallationDate: Installed on 2015-08-06 (0 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: dpkg
Title: package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1 failed 
to install/upgrade: package libgstreamer-plugins-bad0.10-0:amd64 is already 
installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: dpkg (Ubuntu)
 Importance: High
 Status: New


** Tags: already-installed amd64 apport-package need-duplicate-check trusty

** Changed in: dpkg (Ubuntu)
   Importance: Low => High

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

Title:
  package libgstreamer-plugins-bad0.10-0:amd64 0.10.23-7.2ubuntu1.1
  failed to install/upgrade: package libgstreamer-plugins-
  bad0.10-0:amd64 is already installed and configured

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

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


[Bug 484616] Re: Density information not present in bitmap formats

2015-08-06 Thread Launchpad Bug Tracker
** Branch linked: lp:simple-scan/3.4

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

Title:
  Density information not present in bitmap formats

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/484616/+subscriptions

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


[Bug 1383077] Re: Use This Source is disabled.

2015-08-06 Thread Launchpad Bug Tracker
[Expired for software-center (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: software-center (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Use This Source is disabled.

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

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


[Bug 856221] Re: software-center crashed with SIGABRT in raise()

2015-08-06 Thread Launchpad Bug Tracker
[Expired for software-center (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: software-center (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  software-center crashed with SIGABRT in raise()

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

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


[Bug 851616] Re: Regression - software center some texts messed up (RTL)

2015-08-06 Thread Launchpad Bug Tracker
[Expired for software-center (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: software-center (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Regression - software center some texts messed up (RTL)

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

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


[Bug 1482485] Re: booted from wifi net on channel change

2015-08-06 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/1482485/+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/1482485

Title:
  booted from wifi net on channel change

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

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


[Bug 925573] Re: badly positioned progress bar in search list

2015-08-06 Thread Launchpad Bug Tracker
[Expired for software-center (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: software-center (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  badly positioned progress bar in search list

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

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


[Bug 1482486] [NEW] slower than slow repo activity

2015-08-06 Thread rjasmin
Public bug reported:

Im getting dial up speeds from all ubuntu repos even though I am on a
fibre connection with MEGAbit speeds available to me. I can stream TV
just fine and speed test reports show the proper speed as ISP has
guaranteed to me.I have over four devices attached at any one time to
the net and I can fax just fine over VOIP. Browsing the net seems to be
affected as well, but only recently when using ubuntu and derivatives.
Using multiple connections via apt-fast has increased bandwidth somewhat
but not noticeably. Dunno where else to post this issue.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  slower than slow repo activity

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

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


[Bug 1451865] Re: Kwallet is no longer automatically unlocked on login

2015-08-06 Thread Bug Watch Updater
** Changed in: kdelibs
   Status: Unknown => 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/1451865

Title:
  Kwallet is no longer automatically unlocked on login

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

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


[Bug 1455002] Re: Thinkpad x200t backlight settings

2015-08-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Thinkpad x200t backlight settings

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

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


[Bug 1451865]

2015-08-06 Thread 8-kde
(In reply to Cjacker from comment #9)
> pam_kwallet still had some limitions:
> 
> 1, it only handle wallet named 'kdewallet'.
> 
> 2, If you had 'kdewallet' created already, need to set the wallet password
> as same as account password.
> 
> 3, it did not implement 'pam_sm_chauthtok' currently, that's to say, use
> 'passwd' utility  to change account password,  will NOT change 'wallet'
> password, kwallet still use the old password, you need to change it manually.
> 
> I checked kwalletd/kwallet codes and found it is REALLY difficult to change
> runtime kwallet password via pam_sm_chauthtok.  kwallet load everything to
> memory, if password changed via kwalletmanager5, it will sync back via
> kwallet backend.  change 'salt' from outside can not change the password of
> wallet.

This one is true. But good news - the replacement KSecrets Service will
handle that for you automagically.

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

Title:
  Kwallet is no longer automatically unlocked on login

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

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


[Bug 1451865]

2015-08-06 Thread 8-kde
See https://git.reviewboard.kde.org/r/124413/

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

Title:
  Kwallet is no longer automatically unlocked on login

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

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


[Bug 1482485] [NEW] booted from wifi net on channel change

2015-08-06 Thread rjasmin
Public bug reported:

KDE network management (and possibly gnome network-manager) drops
connections if for any reason your router changes channels on you or
gets 2.5Ghz channel jammed. This situation requires a reboot to fix.
Once the channel changes, your network is no longer visible, even if
other devices can find it. Devices should "fix" themselves by auto-
negotiating the connection and detect the channel change or switch to
5Ghz network(usually with same name). This may be an upstream debian
bug.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: 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/1482485

Title:
  booted from wifi net on channel change

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

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


[Bug 1455644] Re: [MIR] ippusbxd

2015-08-06 Thread Till Kamppeter
I have added said printer=less debugging mode to ippusbxd now. Please
update to cups-filters-ippusbxd_1.0.71-1ubuntu3 and run

ippusbxd -d -N -P 6

Then you can access with a web brower, using the URL

http://localhost:6/

This way the TCP/IP interface of ippusbxd is available for any kind of
test, like netstat and so on.

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

Title:
  [MIR] ippusbxd

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

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


[Bug 1479688] Re: ListItem does not swipe with custom MouseAreas

2015-08-06 Thread Zsombor Egri
So as  of stakeholders meeting clarified, there should be no distinction
between touch and mouse handling. Whatever can be done with touch should
be doable with mouse. This policy stays the same, therefore the
implementation we have is right and will stay as is.

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  ListItem does not swipe with custom MouseAreas

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

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


[Bug 1481120] Re: ftbfs with new dh-golang

2015-08-06 Thread Michael Hudson-Doyle
I think the fix is to set DH_GOLANG_INSTALL_ALL to 1, but that's not
quite enough because of https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=794831. That can be worked around too by changing
the the go:generate to //go:generate /bin/sh ../update-pot but let's try
to get that bug fixed first...

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

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

Title:
  ftbfs with new dh-golang

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

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


[Bug 499416] Re: Scanner not detected when connected after program start

2015-08-06 Thread Robert Ancell
@lalo.martins - this bug refers to behaviour in an old version of
simple-scan. Could you please open a new bug if you have issues with
recent versions of simple-scan and your scanner.

** Changed in: simple-scan (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: simple-scan
   Status: New => 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/499416

Title:
  Scanner not detected when connected after program start

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/499416/+subscriptions

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


[Bug 1449748] Re: gedit can't run in root terminal

2015-08-06 Thread fprietog
Is there a workaround for this bug?

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

Title:
  gedit can't run in root terminal

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

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


[Bug 1475205] Re: Random Chinese character missing with Ubuntu font

2015-08-06 Thread Jason Yen
@Ethan,

Please help to verify this fix with arale. Thanks.

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

Title:
  Random Chinese character missing with Ubuntu font

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1475205/+subscriptions

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


[Bug 1482347] Re: [rtirq-init] Broken RTPRIO order

2015-08-06 Thread Len Ovens
Ralf I have noticed the same thing with one of the things I tried to
prioritize. I am wondering if it is a timing issue. That is, if rtirq is
being run too soon before the irq driver is fully operating. It was
obvious to me because the PID for mine is so much higher than any of the
others. Try a sudo /etc/init.d/rtirq restart after boot and things have
settled. Does that make a difference?

With sys v init everything is run in order, that is not the case with
systemd which parallel processes things. It may be that some small delay
in the script would fix things.

Mine: after boot:
  517 FF  90   - 130  0.1 Sirq/17-snd_ice1  
  512 FF  85   - 125  0.0 Sirq/19-snd_ens1  
   47 FF  50   -  90  0.0 Sirq/9-acpi   
   77 FF  50   -  90  0.0 Sirq/20-ehci_hcd  
   78 FF  50   -  90  0.0 Sirq/23-ehci_hcd  
   79 FF  50   -  90  0.0 Sirq/41-xhci_hcd  
   81 FF  50   -  90  0.0 Sirq/12-i8042 
   82 FF  50   -  90  0.0 Sirq/1-i8042  
   83 FF  50   -  90  0.0 Sirq/8-rtc0   
  153 FF  50   -  90  0.0 Sirq/16-pata_jmi  
  160 FF  50   -  90  0.0 Sirq/43-ahci  
  408 FF  50   -  90  0.0 Sirq/44-mei_me
  446 FF  50   -  90  0.0 Sirq/45-i915  
 1315 FF  50   -  90  0.0 Sirq/42-eth0  
Mine after rtirq restart:
  517 FF  90   - 130  0.1 Sirq/17-snd_ice1  
  512 FF  85   - 125  0.0 Sirq/19-snd_ens1  
 1315 FF  80   - 120  0.0 Sirq/42-eth0  
   47 FF  50   -  90  0.0 Sirq/9-acpi   

In your case the PID is sooner than the two cards that did get grabbed,
but it may still take some time to get fully initialized.

I use RTIRQ_NAME_LIST="snd_ice1712 snd eth0" because:
 a) I am too lazy to switch the two sound cards in their physical slots and the 
ensoniq interferes with the ice if higher.

 b) I want to play with AoIP as I have time.

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

Title:
  [rtirq-init] Broken RTPRIO order

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

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


[Bug 1481913] Re: UI volume warnings need revision

2015-08-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~unity-api-team/indicator-sound/lp-1481913-revised-
ui-volume-warnings

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

Title:
  UI volume warnings need revision

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481913/+subscriptions

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


[Bug 1482465] [NEW] Terminal can hang ubuntu if too long of a String is entered as a command

2015-08-06 Thread Axil Therian
Public bug reported:

This only appeared by mistake. i was generating large numbers with
Python, and accidentally hit CTRL-V, pasting the large line of numerical
data into my terminal window. Trying to exit out of the data, i hit
ENTER, where i thought i'd get a  "Argument too long" or some other
error, it failed miserably trying to parse the code.

Output from lsb_release -rd:

Description:Ubuntu 15.04
Release:15.04

Gnome-terminal version

gnome-terminal:
  Installed: 3.14.2-0ubuntu3
  Candidate: 3.14.2-0ubuntu3
  Version table:
 *** 3.14.2-0ubuntu3 0
500 http://us.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
100 /var/lib/dpkg/status

What i expected to happen: not have Terminal parse that big of a string.
I had to generate a second example to record it, sine my desktop hanged
the first time. This new string was trimmed to 1/3rd of it's size.
Current size is 8205 Bytes. i t was generated using the "Break Basic"
While loop.

What happened: Terminal parsed the string, hung ubuntu. it's not like i
have little ram. i have 8 gigs and memtest checked out ok.

the data in question:

327297347144142765931618563958903043804881849168808369381269342237089821345250731847775075054672507924637116206963723698674675984661012062549461364582878982525093626025426924
4209142032135149111401825236948828709869286266048815220994216720935844325754048615330121139508687421576481362860209932853196702574941643703973571152980749763025232111208912912842
1303197378198752590786139159972448373116810055264000611464546696371660310366233399444117543702811511906199818165128100730460751511178936466180790498709896934060548144085844696010
6787994833120133918443981924129535654646997429472480722523306091252343465920084669798256991621927009372861133876986776314085463612523613726380801417914684379957400854435345342269
3686947240980156901499053255978758068907039854282449546577824870398014070516500456497073066277194394427021796216806213335110135668436374117720868672506429343937229414585979749624
260785873572171995696874438184116529290164805265182087487497122427669185344755319341235920173309135042983418341663558312235302994973785418193743676443264977977678866226292643
7896891654879549557230552789365072998117852212841339137727220646047884753878388787753637794489429290095768384545214409682591260854535709630339539663745386839331955609010880967727
0147100257623937473485127124398648561724721757065770167208189253080081390381401628043834839763358878990692334610603887302993930101643335197923917600035430305443357800422637001129
3089105805236637240918637743896771049682626755343098182038480172266234530740219967221128600269010379758623162371982359518250599655128052097295227729905922330519193296454707267764
6742406447761134818419142854390289776167197463992272974026356384732293573410438771745961290397114301708660774479162105729257795533757675015828739921698746414453640580666489277271
9865965420513029019161345647378010094961687791168673542242192274238206394613499981775699839038258706301808959644870568043354623359253561917997879153887689314191556527575059026691
1479484816528544748901282171330148329958450192970356051775696955762651569784037526079903832749626894281126208873041734222048391828925655880205644266800500133869760479166111881513
2542183624637655027004281079570876190376975408161333767149903964783360536246692841293365775580628014500633228491383503531672868428341209165934487199146718582544878110925345729169
175930531432536812495802834216085895795235223321391284038508376738500225052773335660138404624149104322565138015436041287116579880937615888600950984096746441589559678014898238
862612435333754950242807753570848981437895561251653969528465906977718355046348995459318364566512000799880818639185770921381128970813929731635898973387408587203241474615008526
4642039161917614855601422024523450986147462020426532653383392712422797008539358053905192616608741629261418238380493960583691589320450285765326488263507428904621194058206041526953
1959770001972465626150349114324014213241640592888947521187860888387559462405662504164246605947531835196238482659005707259831462691154631640269067597000839152887433091667371806331
3114897785203220472643465920818339594907900990206475483716134025100066913956368234375245198618886938577912115660195519844255613243045561811935055648089423176751375180826873600979
6361662319885518273874587266565533239409495860140492270015936115915877147220058115591080350855678135033017186510640610363651302992943145782306689086957292099061349324797695956352
2198725966999144457173082688144591452758285868773583253964772805187658186151352101544175239936402238497926877853998850468335261984053236271413642373015375433325106379637126675689
783188414902856031240683218219884255224720683691209776708664893671269218676750387787015363721987671913582985387398100157952040975563138967210130654948371703456503173611668788
9349976824915447498925301840382332310519177468597058739838867170290027414688906802529947861771462539152851428

[Bug 1481804] Re: LightDM's guest-account script should disable screen lock universally for guest sessions

2015-08-06 Thread Launchpad Bug Tracker
This bug was fixed in the package lightdm - 1.15.1-0ubuntu2

---
lightdm (1.15.1-0ubuntu2) wily; urgency=medium

  * debian/guest-session-auto.sh:
- Disable screenlocks for guest sessions on MATE, XFCE, Pantheon
  (LP: #1481804)
  * debian/control:
- Switch build-depends from transitional libgcrypt11-dev to libgcrypt20-dev

 -- Robert Ancell   Fri, 07 Aug 2015
12:50:38 +1200

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

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

Title:
  LightDM's guest-account script should disable screen lock universally
  for guest sessions

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

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


[Bug 1367882] Re: linux-firmware-nonfree doesn't properly install firmware.

2015-08-06 Thread varunendra
The recommended method now is "sudo apt-get install
firmware-b43-installer", if a temporary connection can be arranged to
download the firmware from internet.

Alternatively, if the target system can't be connected to internet, the
entire b43 firmware directory can also be extracted and copied from the
linux-firmware-nonfree package itself. That version of the package still
contains the firmware files, only is configured such that it does not
install them in its normal operation. However, the firmware files have
been removed from version 1.16 of the linux-firmware-nonfree package.

Instructions for the alternative (offline) method above in short -

* Download version 1.14 from here : 
http://packages.ubuntu.com/trusty/linux-firmware-nonfree
* Copy it to the target system and right-click > open it with whatever archive 
manager program you have installed (e.g. file-roller, a.k.a. "Archive Manager")
* Extract the entire "b43" directory from the package, for example, on your 
Desktop.
* Copy it to your /lib/firmware directory - "sudo cp -r Desktop/b43 
/lib/firmware"
* Reboot

This method is no better than the one in the post #38 linked by woofer
above, but an official package is more trusted than an attachment by
some user.

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

Title:
  linux-firmware-nonfree doesn't properly install firmware.

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

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


[Bug 1482352] Re: fglrx-updates-core 2:15.200-0ubuntu4.1: fglrx-updates-core kernel module failed to build

2015-08-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1479913 ***
https://bugs.launchpad.net/bugs/1479913

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1479913, so it 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. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1479913
   fglrx-core 2:15.200-0ubuntu4.1: fglrx-core kernel module failed to build 
[FATAL: modpost: GPL-incompatible module fglrx.ko uses GPL-only symbol 
'pci_ignore_hotplug']

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

Title:
  fglrx-updates-core 2:15.200-0ubuntu4.1: fglrx-updates-core kernel
  module failed to build

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

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


[Bug 1482428] Re: nvidia-304 304.125-0ubuntu0.0.2: nvidia-304 kernel module failed to build

2015-08-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 576648 ***
https://bugs.launchpad.net/bugs/576648

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 576648, so it 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. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 576648
   package nvidia-* failed to install/upgrade: nvidia-* kernel module failed to 
build (Unable to determine the target kernel version.)

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

Title:
  nvidia-304 304.125-0ubuntu0.0.2: nvidia-304 kernel module failed to
  build

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

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


[Bug 1482274] Re: GLibMainLoopTest.propagates_exception_from_server_action fails with GCC 5 in armhf

2015-08-06 Thread Daniel van Vugt
** Also affects: mir (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/1482274

Title:
  GLibMainLoopTest.propagates_exception_from_server_action fails with
  GCC 5 in armhf

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

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


[Bug 1482454] Re: gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()

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

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 #1475758, 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/1482454/+attachment/4440793/+files/CoreDump.gz

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

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

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

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

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

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

** This bug has been marked a duplicate of bug 1475758
   gnome-tweak-tool crashed with SIGSEGV in gdk_window_has_impl()

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

Title:
  gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()

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

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


[Bug 1479224] Re: The mesa-x11 driver is not packaged yet

2015-08-06 Thread Daniel van Vugt
** Also affects: mir (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/1479224

Title:
  The mesa-x11 driver is not packaged yet

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

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


[Bug 1437386] Re: Unable to boot LenovoThinkpad W541

2015-08-06 Thread tomzalt
Same problem here on Lenovo W540. I basically can't install Ubuntu or
Kubuntu on my laptop. I can't have Linux. This is horrible. Are you
telling me I have to live with a laptop with Windows 8? What kind of
sick person would that to another human being?

Please help. Let me know if there is any way I can help debug or test
this. 14.04, 14.10 and 15.04 Ubuntu and Kubuntu all fail.

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

Title:
  Unable to boot LenovoThinkpad W541

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

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


[Bug 1482454] [NEW] gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()

2015-08-06 Thread Anders Kaseorg
Public bug reported:

gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()

ProblemType: Crash
DistroRelease: Ubuntu 15.10
Package: gnome-tweak-tool 3.16.2-2
ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
Uname: Linux 4.1.0-3-generic x86_64
NonfreeKernelModules: openafs
ApportVersion: 2.18-0ubuntu5
Architecture: amd64
CurrentDesktop: GNOME
Date: Thu Aug  6 21:53:04 2015
EcryptfsInUse: Yes
ExecutablePath: /usr/bin/gnome-tweak-tool
InstallationDate: Installed on 2015-06-02 (65 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
InterpreterPath: /usr/bin/python2.7
PackageArchitecture: all
ProcCmdline: /usr/bin/python /usr/bin/gnome-tweak-tool
SegvAnalysis:
 Segfault happened at: 0x7f6ac57626d2:  cmp0xd0(%rdi),%rdi
 PC (0x7f6ac57626d2) ok
 source "0xd0(%rdi)" (0x00d0) not located in a known VMA region (needed 
readable region)!
 destination "%rdi" ok
SegvReason: reading NULL VMA
Signal: 11
SourcePackage: gnome-tweak-tool
StacktraceTop:
 ?? () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
 gdk_x11_window_get_xid () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
 ?? () from /usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-xim.so
 ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
 ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
Title: gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()
UpgradeStatus: Upgraded to wily on 2015-06-17 (50 days ago)
UserGroups: adm bumblebee cdrom dip libvirtd lpadmin plugdev sambashare sudo 
wireshark

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


** Tags: amd64 apport-crash need-amd64-retrace wily

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

Title:
  gnome-tweak-tool crashed with SIGSEGV in gdk_x11_window_get_xid()

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

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


[Bug 1481784] Re: right click on touchpad doesn't work

2015-08-06 Thread Daniel van Vugt
Cool, thanks. Technically a two-finger click counts as gesture
recognition. So that's probably a separate task for each shell right
now.

** Changed in: mir
   Status: Incomplete => New

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

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

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

** Summary changed:

- right click on touchpad doesn't work
+ [enhancement] Support two-finger right click on clickpads

** Tags added: enhancement

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

Title:
  [enhancement] Support two-finger right click on clickpads

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

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


[Bug 1481784] Re: [enhancement] Support two-finger right click on clickpads

2015-08-06 Thread Daniel van Vugt
Although we may put common gesture recognition into Mir for all to use.
Maybe with libinput. Maybe further after that.

** Changed in: mir
   Importance: Undecided => Medium

** Changed in: mir (Ubuntu)
   Importance: Undecided => Medium

** Changed in: mir
   Status: New => Triaged

** Changed in: mir (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/1481784

Title:
  [enhancement] Support two-finger right click on clickpads

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

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


[Bug 1482451] [NEW] Use [Seat:*] section for LightDM configuration instead of deprecated [SeatDefaults]

2015-08-06 Thread Robert Ancell
Public bug reported:

Use [Seat:*] section for LightDM configuration instead of deprecated
[SeatDefaults].

** Affects: plasma-workspace (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/1482451

Title:
  Use [Seat:*] section for LightDM configuration instead of deprecated
  [SeatDefaults]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-workspace/+bug/1482451/+subscriptions

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


[Bug 1473934] Comment bridged from LTC Bugzilla

2015-08-06 Thread bugproxy
--- Comment From pt...@cn.ibm.com 2015-08-07 01:39 EDT---
I can confirm that this bug has been fixed with the new packages. Thanks!

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

Title:
  ISST-LTE: pmac-fdisk doesn't work with mpath devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mac-fdisk/+bug/1473934/+subscriptions

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


[Bug 1481804] Re: LightDM's guest-account script should disable screen lock universally for guest sessions

2015-08-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/lightdm

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

Title:
  LightDM's guest-account script should disable screen lock universally
  for guest sessions

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

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


[Bug 1481804] Re: LightDM's guest-account script should disable screen lock universally for guest sessions

2015-08-06 Thread Launchpad Bug Tracker
** Branch linked: lp:lightdm

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

Title:
  LightDM's guest-account script should disable screen lock universally
  for guest sessions

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

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


[Bug 1481804] Re: LightDM's guest-account script should disable screen lock universally for guest sessions

2015-08-06 Thread Robert Ancell
** Also affects: lightdm (Ubuntu)
   Importance: Undecided
   Status: New

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

** Changed in: lightdm
   Status: Triaged => Fix Committed

** Changed in: lightdm (Ubuntu)
   Importance: Undecided => Medium

** Changed in: lightdm
Milestone: None => 1.15.2

** No longer affects: lightdm

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

Title:
  LightDM's guest-account script should disable screen lock universally
  for guest sessions

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

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


[Bug 1449112] Re: can't move files to trash without any owner/permission issues

2015-08-06 Thread Emmanuel
Happens the same to me.  I have two symlinks to two specific folders on my NTFS 
partition, that has all my personal files and data (Dual-Boot PC). When I 
access to this folders via Home Folder using symlink folder and try to delete 
some file that is inside this, the next message appears "... can't be put in 
the trash. Do you want to delete it immediately?". Not happening the same when 
I acces via Data partition to the folder. 
By the way, I had observed that this weird behavior only appears to happens on 
the symlinked folder, and not on the folders that can be contained inside of it.
If, after accessing via Home Folder to you symlinked folder, you create any new 
file and a new folder, put this file on the folder, and try to delete this last 
one, no problem occurs. But if you try the same with any file inside symlinked 
folder, the message appears. I do not know how to explain it well, but what I 
try to said is that there is no problem at all in folders contained (and the 
files this folders contain) inside symlinked folder. The problem is with files 
contained inside symlinked folder.

IE: if my symlink folder is /media/user/Personal Files, any file
contained in Personal Files will have problem if accesing via Home
Folder. But no problems at all will occur with  files contained in
/media/user/Personal Files/Music.

Hope this help to someone to fix this.

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

Title:
  can't move files to trash without any owner/permission issues

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

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


[Bug 1482429] Re: KDE fails to load after adding user data(14.04.3LTS)

2015-08-06 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/1482429/+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/1482429

Title:
  KDE fails to load after adding user data(14.04.3LTS)

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

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


[Bug 1482430] Re: report a bug button failure

2015-08-06 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/1482430/+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/1482430

Title:
  report a bug button failure

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

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


[Bug 1482434] Re: packages missing in launchpad to report on

2015-08-06 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/1482434/+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/1482434

Title:
  packages missing in launchpad to report on

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

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


[Bug 1482433] Re: ubunt-bug aborts

2015-08-06 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/1482433/+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/1482433

Title:
  ubunt-bug aborts

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

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


[Bug 1482435] [NEW] Wi-Fi not working after Sleep

2015-08-06 Thread Gilbert Dion
Public bug reported:

After sleep mode, the Wi-Fi chip is not recognized by the kernel module
and therefore is not available. It is recognized after a reboot or after
hibernating though.

I have tried a lot of possibilities. Someone suggested the following command:
sudo nmcli nm sleep false
But it does nothing.

This has nothing to do with the hardware Wi-Fi switch. I know its
purpose and tried switching on and off.

Also, the output of the command nmcli nm, nmcli c and nmcli d after
coming back from sleep mode is showed below. Notice nmcli d shows no
wlan1 device (which is how my wireless device is identified normally).

mario@mario-Compaq-Presario-laptop:~$ nmcli nm
ÉTAT FONCT. ÉTATMATÉRIEL-WIFI   WIFI   MATÉRIEL-WWAN   WWAN 
 
actif   connectéactivé  activé activé  
activé

mario@mario-Compaq-Presario-laptop:~$ nmcli c
NOM   UUID   TYPE   
   TIMESTAMP-REAL
Connexion filaire 1   cdf0b2eb-484c-4cb9-85fe-ca2d4b717505   802-3-ethernet 
   mar 04 aoû 2015 23:06:56 EDT  
JeLisVosCourriels dcefe472-5b7b-4ae5-9066-0acdf1aec24b   
802-11-wireless   mar 04 aoû 2015 22:57:57 EDT  

mario@mario-Compaq-Presario-laptop:~$ nmcli d
PÉRIPHÉRIQUE TYPE  ÉTAT 
eth1   802-3-ethernetconnecté 

Last but not least, the output of dmesg | grep iwl  (after sleep) is 
[  693.890526] iwl3945 :01:00.0: bad EEPROM signature,EEPROM_GP=0x0007
[  693.890532] iwl3945 :01:00.0: EEPROM not found, EEPROM_GP=0x
[  693.890563] iwl3945 :01:00.0: Unable to init EEPROM
[  693.890713] iwl3945: probe of :01:00.0 failed with error -2

And I think this tells it all.

Ubuntu release 14.04 Ubuntu 14.04.2 LTS
Wi-Fi chip is Intel 3945ABG and module is iwl3945.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.16.0-45-generic 3.16.0-45.60~14.04.1
ProcVersionSignature: Ubuntu 3.16.0-45.60~14.04.1-generic 3.16.7-ckt14
Uname: Linux 3.16.0-45-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Aug  6 19:49:20 2015
InstallationDate: Installed on 2015-07-25 (12 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: linux-lts-utopic
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-lts-utopic (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  Wi-Fi not working after Sleep

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

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

[Bug 1482435] Re: Wi-Fi not working after Sleep

2015-08-06 Thread Gilbert Dion
Someone at Canonical told me it is surely a kernel or module bug. Every
software or command line solution have been tried.

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

Title:
  Wi-Fi not working after Sleep

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

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


[Bug 1482434] [NEW] packages missing in launchpad to report on

2015-08-06 Thread rjasmin
Public bug reported:

Packages like ubuntu-bug are not in the available list to report on, yet
clearly are installed and should be supported. What to do?

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  packages missing in launchpad to report on

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

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


[Bug 1482433] [NEW] ubunt-bug aborts

2015-08-06 Thread rjasmin
Public bug reported:

In a lot of places we are told to use ubunt-bug to trip apport to send
bugged information somewhere. When you use the said app, it panics and
exits out, not reporting anything. It produces no error code.

I tried two different ways to report a kde-session bug and got thrown
back to a terminal one time and told I was using non-standard X packages
another time, which is an outright LIE as I am using kubuntu live
media(14.04.3). Users will find this application difficult to use and
therefore either not use it or not know where to turn to file bugs.

Launchpad is suggested but filing a launchpad bug is bugged in
itself.(another bug report) Then there is the method using
errors.ubuntu.com instead of launchpad. The reporting method and such
needs to be more centralized and standardized.There is no reason why
errors have to sent in seperately, they can be attached to launchpad
reports. Asking a user to reboot after updating is pointless on a live
cd. It accomplishes nothing.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  ubunt-bug aborts

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

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


[Bug 1482429] [NEW] KDE fails to load after adding user data(14.04.3LTS)

2015-08-06 Thread rjasmin
Public bug reported:

Upon installing and after upgrading to latest install, after adding packages 
and adding user data, KDE will no longer load on Tahir. Before loading user 
data everything loaded ok.
I skipped moving back all of the . folders I could think of that would cause 
conflict.

I have removed the .kde folder and the result after rebooting is the
same. There is no crash to report but KDE hangs and the world icon (icon
#3) and refuses to continue. DBUS issue?

I thought at first this may be a SELinux issue, so I unset enforcing
mode but the result is the same.You can kill xorg and restart it and the
problem persists.

As this affects kde-session on kubuntu I dont know where to begin to
report this. Installing MATE for some reason does not result in the
session getting added to the login list, so I am forced to reformat to
add another desktop.

This SIMPLY SHOULD NOT BE NECESSARY.Using MATE Ubuntu results in corrupt
video output and the OS is unusable. As debian is not affected in this
way, I will assume this is an ubuntu bug. Why ubuntu has banned a
perfectly GOOD DE is beyond me, it does not conflict with gnome3 in any
way. MATE is a perfectly good fallback when GNOME3 refuses to load. Yet
I cannot seem to install it alongside any other desktop and get it to
work. The proper packages install, but MATE is not selectable as a login
option.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  KDE fails to load after adding user data(14.04.3LTS)

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

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


[Bug 1482428] [NEW] nvidia-304 304.125-0ubuntu0.0.2: nvidia-304 kernel module failed to build

2015-08-06 Thread deivi
Public bug reported:

I was just updating Nvidia graphics drivers

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: nvidia-304 304.125-0ubuntu0.0.2
Uname: Linux 4.0.5-040005-lowlatency x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
DKMSKernelVersion: 4.0.5-040005-lowlatency
Date: Fri Aug  7 01:46:02 2015
InstallationDate: Installed on 2014-12-30 (219 days ago)
InstallationMedia: Ubuntu-Studio 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.1)
PackageVersion: 304.125-0ubuntu0.0.2
SourcePackage: nvidia-graphics-drivers-304
Title: nvidia-304 304.125-0ubuntu0.0.2: nvidia-304 kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  nvidia-304 304.125-0ubuntu0.0.2: nvidia-304 kernel module failed to
  build

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

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


[Bug 1482430] [NEW] report a bug button failure

2015-08-06 Thread rjasmin
Public bug reported:

Someone needs to reset the bug reporting button to show up by default.
It simply isnt there. I login to launchpad to file a bug but simply
cannot.

Using said button loads a runaround page here:
https://help.ubuntu.com/community/ReportingBugs#Filing_bugs_at_Launchpad.net

Instead it should load the bug reporting form here:
https://bugs.launchpad.net/ubuntu/+filebug/?no-redirect

This information is hard to find and googling the issue only complicates
matters.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  report a bug button failure

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

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


[Bug 244828] A patch has been submitted for review

2015-08-06 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/5061

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

Title:
  Dasher just doesn't work at all

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

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


[Bug 1427311] Re: welcome wizard - no feedback that wifi connection succeeded

2015-08-06 Thread Andreea Pirvu
** Changed in: ubuntu-ux
   Status: Triaged => Fix Committed

** Description changed:

  Preconditions:
  Be in a environment where dozes of wifi access points are available, or at 
least where it has more APs than the wifi list can fit on the screen, so that 
it gets scrollable
  
  Steps:
  1 - boot phone into the Welcome Wizard
  2 - on the wifi connection page, scroll down to some access point and tap on 
it.
  3 - fill in the password in the dialog and tap on connect/ok
  
  Expected outcome:
  Dialog closes and you can see that you're now connected to that wifi AP you 
selected (e.g. you immediately see that the wifi you selected is now green with 
its checkbox ticked).
  
  Actual outcome:
  Dialog closes and you are brought back to the wifi selection list, where you 
cannot see the wifi AP you selected anywhere. You have to scroll the list all 
the way up to finally find your selected wifi there.
+ 
+  UX Design -
+ This bug is covered by the new OOBE design.
+ You can see the new spec here 
https://docs.google.com/a/canonical.com/document/d/1pZ-Ro--2eaRzjZKNRoYAeDvQHMkCuyvVuPFWFQfPW4s/edit?usp=sharing

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

Title:
  welcome wizard - no feedback that wifi connection succeeded

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

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


[Bug 1035122] Re: Package newer glade-gtk2 version

2015-08-06 Thread Jackson Doak
** Changed in: glade-3 (Ubuntu)
   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/1035122

Title:
  Package newer glade-gtk2 version

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glade-3/+bug/1035122/+subscriptions

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


[Bug 1477859] Re: Onboard Audio not working on Dell Venue 11 Pro 7140

2015-08-06 Thread Tudor Holton
Getting closer!  Mainline kernel 4.2.0-rc5 shows the rt286 audio just
like 4.1.3 did, and the touchscreen is back!  However, there's still no
sound. :-(  It behaves like it's playing, tho.  I've checked and
pavucontrol shows everything is there and the sound is showing on the
audiometer.  Nothing appears to be muted.  I've muted and unmuted things
a few times but no go.

I also tried with and without acpi_osi="Windows 2013".  No effect.  I
understand, tho, that from 4.2.0 onwards, this flag is no longer
required?

** Tags added: kernel-bug-exists-upstream-4.2-rc5

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

Title:
  Onboard Audio not working on Dell Venue 11 Pro 7140

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

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


[Bug 1435877] Re: [edge education] tutorial not adapted to desktop mode

2015-08-06 Thread Andreea Pirvu
** Changed in: ubuntu-ux
   Status: Triaged => 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/1435877

Title:
  [edge education] tutorial not adapted to desktop mode

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

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


[Bug 1482427] [NEW] White Screen during WebApp session

2015-08-06 Thread Ilonka
Public bug reported:

Hello,
I recognize since a couple of weeks that sometimes in some WebApps appear 
"white screens". 

This means: for example Google+ WebApp (this one from Oliver Grawert) is
open and suddenly the screen gets white and nothing works. Only reboot
of the App give the screen back. Sometimes then it's ok, other time
after a few minutes it happens again.

This issue I have in some WebApps: Facebook, Spiegel.de. Other WebApps
work without this issue.

I use a BQ4.5 
Ubuntu 15.04 (r24)

If you need further information please tell me.

Greeting and thanks in advance

Ilonka

** Affects: webbrowser-app (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/1482427

Title:
  White Screen during WebApp session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1482427/+subscriptions

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


[Bug 1383184] Re: Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

2015-08-06 Thread dmarbri
Hi Francois:

No, I didn't. But I forgot to mention that I'm using the firmware
described in #124.

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

Title:
  Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1383184/+subscriptions

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


  1   2   3   4   5   6   7   >