[Desktop-packages] [Bug 2047912] Re: There is a heap buffer overflow in texlive-bin

2024-02-07 Thread George-Andrei Iosif
I have marked this bug as public because the public domain already
contains information about this TeX Live issue (as seen in the GitHub
issue and upstream changelog).

@dongzhuo, could you please contact the upstream (either in the existing
PR or via their mailing list) to confirm that they (1) recognize this
issue as a vulnerability impacting the security of their software (and
not just a functional bug), and (2) do not have any other CVE ID
assignment process already established? The latter is important because
some projects prefer contacting MITRE for the assignment.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to texlive-bin in Ubuntu.
https://bugs.launchpad.net/bugs/2047912

Title:
  There is a heap buffer overflow in texlive-bin

Status in texlive-bin package in Ubuntu:
  New

Bug description:
  Hello,
I found a heap-buffer overflow in function ttfLoadHDMX; ttfdump can install 
by apt-get texlive-binaries. I compile lastest texlive-source by clone 
https://github.com/TeX-Live/texlive-source/ on unbuntu for debugging.
The overflow content and size are controlled by input. Exploiting  this 
issue can achive any code excuted

The steps for reproducing the vul on unbuntu:
(1) sudo apt-get iunstall texlive-binaries 
(2) ttfdump -i poc.ttf 

  
  The poc.ttf can view the attachment .ttfdump aborted and prompt "malloc(): 
corrupted top size" due memory corrupt.

The issue exist in function ttfLoadHDMX :

  /***function ttfLoadHDMX begin   ***/

  static void ttfLoadHDMX (FILE *fp,HDMXPtr hdmx,ULONG offset)
  {
  int i;

  xfseek(fp, offset, SEEK_SET, "ttfLoadHDMX");
  
  hdmx->version = ttfGetUSHORT(fp);
  hdmx->numDevices = ttfGetUSHORT(fp);
  hdmx->size = ttfGetLONG(fp);

  hdmx->Records = XCALLOC (hdmx->numDevices, DeviceRecord);
  
  for (i=0;inumDevices;i++)
{
hdmx->Records[i].PixelSize = ttfGetBYTE(fp);
hdmx->Records[i].MaxWidth = ttfGetBYTE(fp);
hdmx->Records[i].Width = XCALLOC (hdmx->size, BYTE);  (1)
fread ((hdmx->Records+i)->Width, sizeof(BYTE), 
hdmx->numGlyphs+1,fp); (2)
}
  }

  
  /***function ttfLoadHDMX end   ***/

  
At above code (1) ,allocte heap buffer for Width according to the parsed 
hdmx width. And at above code (2) , copy Width content from file and copy size 
decided by controlled hdmx->numGlyphs. In the poc , hdmx->size eaqual to 1216 
and hdmx->numGlyphs+1 is 4155,which get heap buffer overflow.

  /*** debug info ***/
  (gdb) p hdmx->numGlyphs+1
  $23 = 4155
  (gdb) p hdmx->size
  $24 = 1216
  /*** debug info end ***/

  
  From :

  Dongzhuo zhao working with ADLab of Venustech

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 2047912] Re: There is a heap buffer overflow in texlive-bin

2024-02-07 Thread George-Andrei Iosif
** Information type changed from Private Security to Public Security

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to texlive-bin in Ubuntu.
https://bugs.launchpad.net/bugs/2047912

Title:
  There is a heap buffer overflow in texlive-bin

Status in texlive-bin package in Ubuntu:
  New

Bug description:
  Hello,
I found a heap-buffer overflow in function ttfLoadHDMX; ttfdump can install 
by apt-get texlive-binaries. I compile lastest texlive-source by clone 
https://github.com/TeX-Live/texlive-source/ on unbuntu for debugging.
The overflow content and size are controlled by input. Exploiting  this 
issue can achive any code excuted

The steps for reproducing the vul on unbuntu:
(1) sudo apt-get iunstall texlive-binaries 
(2) ttfdump -i poc.ttf 

  
  The poc.ttf can view the attachment .ttfdump aborted and prompt "malloc(): 
corrupted top size" due memory corrupt.

The issue exist in function ttfLoadHDMX :

  /***function ttfLoadHDMX begin   ***/

  static void ttfLoadHDMX (FILE *fp,HDMXPtr hdmx,ULONG offset)
  {
  int i;

  xfseek(fp, offset, SEEK_SET, "ttfLoadHDMX");
  
  hdmx->version = ttfGetUSHORT(fp);
  hdmx->numDevices = ttfGetUSHORT(fp);
  hdmx->size = ttfGetLONG(fp);

  hdmx->Records = XCALLOC (hdmx->numDevices, DeviceRecord);
  
  for (i=0;inumDevices;i++)
{
hdmx->Records[i].PixelSize = ttfGetBYTE(fp);
hdmx->Records[i].MaxWidth = ttfGetBYTE(fp);
hdmx->Records[i].Width = XCALLOC (hdmx->size, BYTE);  (1)
fread ((hdmx->Records+i)->Width, sizeof(BYTE), 
hdmx->numGlyphs+1,fp); (2)
}
  }

  
  /***function ttfLoadHDMX end   ***/

  
At above code (1) ,allocte heap buffer for Width according to the parsed 
hdmx width. And at above code (2) , copy Width content from file and copy size 
decided by controlled hdmx->numGlyphs. In the poc , hdmx->size eaqual to 1216 
and hdmx->numGlyphs+1 is 4155,which get heap buffer overflow.

  /*** debug info ***/
  (gdb) p hdmx->numGlyphs+1
  $23 = 4155
  (gdb) p hdmx->size
  $24 = 1216
  /*** debug info end ***/

  
  From :

  Dongzhuo zhao working with ADLab of Venustech

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 2012388] Re: X11 window (usually AnyDesk) at top-right of the screen is invisible and steals mouse clicks

2023-10-24 Thread andrei
I inform you there is the same thread here 
https://github.com/ubuntu/gnome-shell-extension-appindicator/issues/439
I also attach picture how any user can fix problem.

** Bug watch added: github.com/ubuntu/gnome-shell-extension-appindicator/issues 
#439
   https://github.com/ubuntu/gnome-shell-extension-appindicator/issues/439

** Attachment added: "location of 'Legacy Tray Icon Support'"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-appindicator/+bug/2012388/+attachment/5713097/+files/location%20of%20%27Legacy%20Tray%20Icon%20Support%27.png

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell-extension-appindicator in
Ubuntu.
https://bugs.launchpad.net/bugs/2012388

Title:
  X11 window (usually AnyDesk) at top-right of the screen is invisible
  and steals mouse clicks

Status in gnome-shell-extension-appindicator package in Ubuntu:
  Triaged

Bug description:
  Hardware Model: Dell Inc. Inspiron 16 Plus 7620
  Firmware version: 1.5.1
  CPU i7-12700H x20
  GPU: Nvidia RTX3060 / MaxQ
  GPU: Intel Alder Lake-P
  Release: Lunar Lobster
  Architecture: AMD64
  Kernel: 6.1.0-16-generic
  GNOME version: 44.rc

  Using Latest daily image of Ubuntu Lunar Lobster, I noticed an issue
  with window focus when windows are placed under the top-right system
  tray.

  Since it is hard to explain, I am attaching a screenshot. I am unable to 
click or interact with anything in the area within green rectangle. 
Applications affected:
  - Firefox (snap)
  - Chromium (snap)
  - Vivaldi Browser (deb)
  - Mattermost (snap)

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: gnome-shell 44~rc-1ubuntu2
  ProcVersionSignature: Ubuntu 6.1.0-16.16-generic 6.1.6
  Uname: Linux 6.1.0-16-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.26.0-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Mar 21 20:35:05 2023
  DisplayManager: gdm3
  InstallationDate: Installed on 2023-01-23 (56 days ago)
  InstallationMedia: Ubuntu 22.10 "Kinetic Kudu" - Release amd64 (20221020)
  RelatedPackageVersions: mutter-common 44~rc-1ubuntu3
  SourcePackage: gnome-shell
  UpgradeStatus: Upgraded to lunar on 2023-03-02 (19 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-appindicator/+bug/2012388/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 2001594] [NEW] Mutter crashes on xdg_activation.activate request

2023-01-03 Thread Andrei Cherniaev
Public bug reported:

Please allow users to upgrade Mutter because of bug. See
https://gitlab.gnome.org/GNOME/mutter/-/issues/2486

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

** Description changed:

- Please allow users to upgrade Mutter to because of bug. See
+ Please allow users to upgrade Mutter because of bug. See
  https://gitlab.gnome.org/GNOME/mutter/-/issues/2486

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/2001594

Title:
  Mutter crashes on xdg_activation.activate request

Status in mutter package in Ubuntu:
  New

Bug description:
  Please allow users to upgrade Mutter because of bug. See
  https://gitlab.gnome.org/GNOME/mutter/-/issues/2486

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1992225] Re: Under Wayland Thunderbird crashes every time after resume from suspend to RAM

2022-11-15 Thread Andrei Borzenkov
Thunderbird crashed when there were two monitors connected on resume.
This is apparently fixed in
https://bugzilla.mozilla.org/show_bug.cgi?id=1793922. I rebuilt Ubuntu
22.04 package with patch from this bug (no other changes) and this seems
to have fixed it. Patch applied to Thunderbird 102 with minimal fuzz.

Patch: https://phabricator.services.mozilla.com/D158747
My bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1800364

My modified package:
https://build.opensuse.org/package/show/home:arvidjaar:Ubuntu:22.04/thunderbird

Because Ubuntu forces Thunderbird in Wayland mode by default, I kindly
request official update with this patch included.

** Bug watch added: Mozilla Bugzilla #1793922
   https://bugzilla.mozilla.org/show_bug.cgi?id=1793922

** Bug watch added: Mozilla Bugzilla #1800364
   https://bugzilla.mozilla.org/show_bug.cgi?id=1800364

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1992225

Title:
  Under Wayland Thunderbird crashes every time after resume from suspend
  to RAM

Status in thunderbird package in Ubuntu:
  New

Bug description:
  Ubuntu 22.04, GNOME desktop in Wayland mode, Tunderbird
  102.2.2+build1-0ubuntu0.22.04.1. Ubuntu forces Thunderbird in Wayland.
  From /usr/bin/thunderbird

  # Enable native Wayland support (https://launchpad.net/bugs/1916469)
  export MOZ_ENABLE_WAYLAND=1

  After update to 102 Thunderbird crashes every time system is resumed
  from suspend to RAM. When removing MOZ_ENABLE_WAYLAND and tunning
  Thunderbird under Xwayland there is no crash. Previous version did not
  crash either.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: thunderbird 1:102.2.2+build1-0ubuntu0.22.04.1
  ProcVersionSignature: Ubuntu 5.15.0-48.54-lowlatency 5.15.53
  Uname: Linux 5.15.0-48-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  BuildID: 20220906224751
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct  8 10:42:37 2022
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  Extensions: extensions.sqlite corrupt or missing
  IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
  InstallationDate: Installed on 2015-07-02 (2654 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  Locales: extensions.sqlite corrupt or missing
  PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:306
  PrefSources: prefs.js
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  Profiles: Profile0 (Default) - LastVersion=102.2.2/20220906224751 (In use)
  SourcePackage: thunderbird
  Themes: extensions.sqlite corrupt or missing
  UpgradeStatus: Upgraded to jammy on 2022-06-16 (113 days ago)

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1992225] Re: Under Wayland Thunderbird crashes every time after resume from suspend to RAM

2022-11-15 Thread Andrei Borzenkov
** Changed in: thunderbird (Ubuntu)
   Status: Invalid => New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1992225

Title:
  Under Wayland Thunderbird crashes every time after resume from suspend
  to RAM

Status in thunderbird package in Ubuntu:
  New

Bug description:
  Ubuntu 22.04, GNOME desktop in Wayland mode, Tunderbird
  102.2.2+build1-0ubuntu0.22.04.1. Ubuntu forces Thunderbird in Wayland.
  From /usr/bin/thunderbird

  # Enable native Wayland support (https://launchpad.net/bugs/1916469)
  export MOZ_ENABLE_WAYLAND=1

  After update to 102 Thunderbird crashes every time system is resumed
  from suspend to RAM. When removing MOZ_ENABLE_WAYLAND and tunning
  Thunderbird under Xwayland there is no crash. Previous version did not
  crash either.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: thunderbird 1:102.2.2+build1-0ubuntu0.22.04.1
  ProcVersionSignature: Ubuntu 5.15.0-48.54-lowlatency 5.15.53
  Uname: Linux 5.15.0-48-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  BuildID: 20220906224751
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct  8 10:42:37 2022
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  Extensions: extensions.sqlite corrupt or missing
  IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
  InstallationDate: Installed on 2015-07-02 (2654 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  Locales: extensions.sqlite corrupt or missing
  PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:306
  PrefSources: prefs.js
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  Profiles: Profile0 (Default) - LastVersion=102.2.2/20220906224751 (In use)
  SourcePackage: thunderbird
  Themes: extensions.sqlite corrupt or missing
  UpgradeStatus: Upgraded to jammy on 2022-06-16 (113 days ago)

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1992225] Re: Under Wayland Thunderbird crashes every time after resume from suspend to RAM

2022-10-29 Thread Andrei Borzenkov
Well, I switched back to Wayland and I was not able to reproduce it
anymore for over a week, so I presume it was caused by some external
component that got updated in the meantime. Feel free to close it.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1992225

Title:
  Under Wayland Thunderbird crashes every time after resume from suspend
  to RAM

Status in thunderbird package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 22.04, GNOME desktop in Wayland mode, Tunderbird
  102.2.2+build1-0ubuntu0.22.04.1. Ubuntu forces Thunderbird in Wayland.
  From /usr/bin/thunderbird

  # Enable native Wayland support (https://launchpad.net/bugs/1916469)
  export MOZ_ENABLE_WAYLAND=1

  After update to 102 Thunderbird crashes every time system is resumed
  from suspend to RAM. When removing MOZ_ENABLE_WAYLAND and tunning
  Thunderbird under Xwayland there is no crash. Previous version did not
  crash either.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: thunderbird 1:102.2.2+build1-0ubuntu0.22.04.1
  ProcVersionSignature: Ubuntu 5.15.0-48.54-lowlatency 5.15.53
  Uname: Linux 5.15.0-48-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  BuildID: 20220906224751
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct  8 10:42:37 2022
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  Extensions: extensions.sqlite corrupt or missing
  IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
  InstallationDate: Installed on 2015-07-02 (2654 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  Locales: extensions.sqlite corrupt or missing
  PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:306
  PrefSources: prefs.js
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  Profiles: Profile0 (Default) - LastVersion=102.2.2/20220906224751 (In use)
  SourcePackage: thunderbird
  Themes: extensions.sqlite corrupt or missing
  UpgradeStatus: Upgraded to jammy on 2022-06-16 (113 days ago)

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1992225] [NEW] Under Wayland Thunderbird crashes every time after resume from suspend to RAM

2022-10-08 Thread Andrei Borzenkov
Public bug reported:

Ubuntu 22.04, GNOME desktop in Wayland mode, Tunderbird
102.2.2+build1-0ubuntu0.22.04.1. Ubuntu forces Thunderbird in Wayland.
>From /usr/bin/thunderbird

# Enable native Wayland support (https://launchpad.net/bugs/1916469)
export MOZ_ENABLE_WAYLAND=1

After update to 102 Thunderbird crashes every time system is resumed
from suspend to RAM. When removing MOZ_ENABLE_WAYLAND and tunning
Thunderbird under Xwayland there is no crash. Previous version did not
crash either.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: thunderbird 1:102.2.2+build1-0ubuntu0.22.04.1
ProcVersionSignature: Ubuntu 5.15.0-48.54-lowlatency 5.15.53
Uname: Linux 5.15.0-48-lowlatency x86_64
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
BuildID: 20220906224751
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Sat Oct  8 10:42:37 2022
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
Extensions: extensions.sqlite corrupt or missing
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2015-07-02 (2654 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
Locales: extensions.sqlite corrupt or missing
PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:306
PrefSources: prefs.js
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=102.2.2/20220906224751 (In use)
SourcePackage: thunderbird
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: Upgraded to jammy on 2022-06-16 (113 days ago)

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


** Tags: amd64 apport-bug jammy wayland-session

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1992225

Title:
  Under Wayland Thunderbird crashes every time after resume from suspend
  to RAM

Status in thunderbird package in Ubuntu:
  New

Bug description:
  Ubuntu 22.04, GNOME desktop in Wayland mode, Tunderbird
  102.2.2+build1-0ubuntu0.22.04.1. Ubuntu forces Thunderbird in Wayland.
  From /usr/bin/thunderbird

  # Enable native Wayland support (https://launchpad.net/bugs/1916469)
  export MOZ_ENABLE_WAYLAND=1

  After update to 102 Thunderbird crashes every time system is resumed
  from suspend to RAM. When removing MOZ_ENABLE_WAYLAND and tunning
  Thunderbird under Xwayland there is no crash. Previous version did not
  crash either.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: thunderbird 1:102.2.2+build1-0ubuntu0.22.04.1
  ProcVersionSignature: Ubuntu 5.15.0-48.54-lowlatency 5.15.53
  Uname: Linux 5.15.0-48-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  BuildID: 20220906224751
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct  8 10:42:37 2022
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  Extensions: extensions.sqlite corrupt or missing
  IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
  InstallationDate: Installed on 2015-07-02 (2654 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  Locales: extensions.sqlite corrupt or missing
  PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:306
  PrefSources: prefs.js
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  Profiles: Profile0 (Default) - LastVersion=102.2.2/20220906224751 (In use)
  SourcePackage: thunderbird
  Themes: extensions.sqlite corrupt or missing
  UpgradeStatus: Upgraded to jammy on 2022-06-16 (113 days ago)

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 54285]

2021-10-06 Thread Andrei-purice
Marking this as Resolved > Worksforme since the issue doesn't happen on Windows 
10 on either of the latest Firefox versions.
If anyone is still able to reproduce this please re-open or file a new issue.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/54285

Title:
  Title tooltips appear when browser window not in focus

Status in Mozilla Firefox:
  Invalid
Status in firefox package in Ubuntu:
  Won't Fix
Status in firefox-3.0 package in Ubuntu:
  In Progress

Bug description:
  Binary package hint: firefox

  1) Set metacity to a focus-follows-mouse mode.
  2) Go to a site with a titled image, say 
http://www.qwantz.com/index.pl?comic=817, in epiphany or firefox.
  3) Place another window partly over the titled image (the comic.)
  4) Move mouse over image, and into the other window, and stop.

  The tooltip for the image title appears, probably over the other
  window, depending on where you let the cursor rest.  And of course you
  can't get rid of the tip except by moving the cursor back into the
  browser window, or by waiting.

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1926062] Re: [hirsute/impish] Can't turn bluetooth on again after turning it off

2021-07-21 Thread Andrei Sergeev
Fixed for me, I have suspended laptop and after that I still could turn on 
bluetooth, before that it didn't work
Ubuntu 21.04
 3.38.1-3ubuntu3.1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1926062

Title:
  [hirsute/impish] Can't turn bluetooth on again after turning it off

Status in Bluez Utilities:
  Fix Released
Status in GNOME Bluetooth:
  Unknown
Status in OEM Priority Project:
  New
Status in bluez package in Ubuntu:
  Fix Released
Status in gnome-settings-daemon package in Ubuntu:
  Fix Released
Status in bluez source package in Focal:
  Fix Released
Status in gnome-settings-daemon source package in Focal:
  Fix Committed
Status in bluez source package in Hirsute:
  Fix Released
Status in gnome-settings-daemon source package in Hirsute:
  Fix Committed
Status in bluez source package in Impish:
  Fix Released
Status in gnome-settings-daemon source package in Impish:
  Fix Released

Bug description:
  [Impact]

  On/off of Bluetooth in gnome-control-center will not work properly in kernels 
5.11 (approximately) onward. Devices are not refreshed in the list anymore.
   
  [Test Plan]

  1. Open gnome-control-center and select Bluetooth
  2. Turn off Bluetooth via UI
  3. Turn on Bluetooth via UI

  Expect: Device list appears, so Bluetooth really is on.

  [Where problems could occur]

  Since the fix involves the 'rfkill' logic it has the potential to
  affect any Bluetooth or Wifi on/off setting.

  [Other info]

  Upstream bug in gnome-bluetooth:
  https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/issues/38

  Discussion in linux-bluetooth:
  https://marc.info/?t=16200475893=1=2

  [Original bug report]

  When ever i Turn on my system or restart bluetooth is open any it
  connects to any device. But when i turn off bluetooth and try to turn
  it on again. it neither turns on nor scans/connects to any device.
  This is happening since I updated my system to ubuntu 21.04 LTS

    Bluetooth: hci0: HCI reset during shutdown failed

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: bluetooth (not installed)
  ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
  Uname: Linux 5.11.0-16-generic x86_64
  ApportVersion: 2.20.11-0ubuntu65
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Apr 25 15:09:23 2021
  InstallationDate: Installed on 2020-12-15 (130 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: LENOVO 80TR
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-16-generic 
root=UUID=7c507bd4-c66c-4233-a64e-804f6df5412b ro quiet splash vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: Upgraded to hirsute on 2021-04-22 (2 days ago)
  dmi.bios.date: 07/31/2017
  dmi.bios.release: 1.29
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 3UCN29WW
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Nano 5B1
  dmi.board.vendor: LENOVO
  dmi.board.version: No DPK
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 110-15AST
  dmi.ec.firmware.release: 1.29
  dmi.modalias: 
dmi:bvnLENOVO:bvr3UCN29WW:bd07/31/2017:br1.29:efr1.29:svnLENOVO:pn80TR:pvrLenovoideapad110-15AST:rvnLENOVO:rnNano5B1:rvrNoDPK:cvnLENOVO:ct10:cvrLenovoideapad110-15AST:
  dmi.product.family: IDEAPAD
  dmi.product.name: 80TR
  dmi.product.sku: LENOVO_MT_80TR_BU_idea_FM_Lenovo ideapad 110-15AST
  dmi.product.version: Lenovo ideapad 110-15AST
  dmi.sys.vendor: LENOVO
  hciconfig:
   hci0:Type: Primary  Bus: USB
    BD Address: C8:3D:D4:84:E0:06  ACL MTU: 820:8  SCO MTU: 255:16
    DOWN
    RX bytes:744804 acl:76 sco:0 events:105989 errors:0
    TX bytes:51871528 acl:113157 sco:0 commands:192 errors:0

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


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1935754] [NEW] Problems with Blutooth and laptop brightness hotkey after lates update

2021-07-10 Thread Andrei Sergeev
Public bug reported:

Hello!

After recent update I have several problems
1. can't turn on/off my bluetooth 
2. brightness laptop button are turning my mic off instead of reduce or high it


Could you fix it please?

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: bluez 5.56-0ubuntu4.2
ProcVersionSignature: Ubuntu 5.11.0-22.23-generic 5.11.21
Uname: Linux 5.11.0-22-generic x86_64
ApportVersion: 2.20.11-0ubuntu65.1
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Sat Jul 10 21:32:04 2021
InstallationDate: Installed on 2020-04-08 (458 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200402)
InterestingModules: rfcomm bnep btusb bluetooth
MachineType: HP HP EliteBook 850 G6
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-22-generic 
root=UUID=78466619-ba7c-4459-92c2-58fc31c658f2 ro quiet splash vt.handoff=7
SourcePackage: bluez
UpgradeStatus: Upgraded to hirsute on 2021-04-15 (86 days ago)
dmi.bios.date: 09/12/2019
dmi.bios.release: 3.0
dmi.bios.vendor: HP
dmi.bios.version: R70 Ver. 01.03.00
dmi.board.name: 8549
dmi.board.vendor: HP
dmi.board.version: KBC Version 52.52.00
dmi.chassis.asset.tag: 5CG9450KGR
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 82.82
dmi.modalias: 
dmi:bvnHP:bvrR70Ver.01.03.00:bd09/12/2019:br3.0:efr82.82:svnHP:pnHPEliteBook850G6:pvr:rvnHP:rn8549:rvrKBCVersion52.52.00:cvnHP:ct10:cvr:
dmi.product.family: 103C_5336AN HP EliteBook
dmi.product.name: HP EliteBook 850 G6
dmi.product.sku: 7KP17EA#ACB
dmi.sys.vendor: HP
hciconfig:
 hci0:  Type: Primary  Bus: USB
BD Address: 94:E6:F7:2D:22:F5  ACL MTU: 1021:4  SCO MTU: 96:6
UP RUNNING PSCAN ISCAN 
RX bytes:21793 acl:0 sco:0 events:3343 errors:0
TX bytes:796729 acl:0 sco:0 commands:3321 errors:0

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


** Tags: amd64 apport-bug hirsute

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1935754

Title:
  Problems with Blutooth and laptop brightness hotkey after lates update

Status in bluez package in Ubuntu:
  New

Bug description:
  Hello!

  After recent update I have several problems
  1. can't turn on/off my bluetooth 
  2. brightness laptop button are turning my mic off instead of reduce or high 
it

  
  Could you fix it please?

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: bluez 5.56-0ubuntu4.2
  ProcVersionSignature: Ubuntu 5.11.0-22.23-generic 5.11.21
  Uname: Linux 5.11.0-22-generic x86_64
  ApportVersion: 2.20.11-0ubuntu65.1
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jul 10 21:32:04 2021
  InstallationDate: Installed on 2020-04-08 (458 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200402)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: HP HP EliteBook 850 G6
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-22-generic 
root=UUID=78466619-ba7c-4459-92c2-58fc31c658f2 ro quiet splash vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: Upgraded to hirsute on 2021-04-15 (86 days ago)
  dmi.bios.date: 09/12/2019
  dmi.bios.release: 3.0
  dmi.bios.vendor: HP
  dmi.bios.version: R70 Ver. 01.03.00
  dmi.board.name: 8549
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 52.52.00
  dmi.chassis.asset.tag: 5CG9450KGR
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.ec.firmware.release: 82.82
  dmi.modalias: 
dmi:bvnHP:bvrR70Ver.01.03.00:bd09/12/2019:br3.0:efr82.82:svnHP:pnHPEliteBook850G6:pvr:rvnHP:rn8549:rvrKBCVersion52.52.00:cvnHP:ct10:cvr:
  dmi.product.family: 103C_5336AN HP EliteBook
  dmi.product.name: HP EliteBook 850 G6
  dmi.product.sku: 7KP17EA#ACB
  dmi.sys.vendor: HP
  hciconfig:
   hci0:Type: Primary  Bus: USB
BD Address: 94:E6:F7:2D:22:F5  ACL MTU: 1021:4  SCO MTU: 96:6
UP RUNNING PSCAN ISCAN 
RX bytes:21793 acl:0 sco:0 events:3343 errors:0
TX bytes:796729 acl:0 sco:0 commands:3321 errors:0

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1930485]

2021-06-12 Thread Andrei-purice
Setting a component for this issue in order to get the dev team involved.
If you feel it's an incorrect one please feel free to change it to a more 
appropriate one.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1930485

Title:
  Can't Start Firefox 88 on Weston/Wayland, Ubuntu 18.0.4.

Status in Mozilla Firefox:
  New
Status in firefox package in Ubuntu:
  New

Bug description:
  I am running Weston/Wayland on Ubuntu 18.0.4.

  I am able to successfully start the display server:
  ```
  export XDG_RUNTIME_DIR=/run/weston
  weston --tty 1 &
  ```

  Next, I try to run firefox on it:

  ```
  export XDG_RUNTIME_DIR=/run/weston
  export GDK_BACKEND=wayland
  export MOZ_ENABLE_WAYLAND=1
  export DISPLAY=wayland-0
  export LD_LIBRARY_PATH=/usr/lib:/usr/lib/aarch64-linux-gnu/
  export WAYLAND_DEBUG=1
  export WAYLAND_DISPLAY=wayland-0

  firefox \
--g-fatal-warnings \
--kiosk \
--private-window \
https://bing.com
  ```

  This outputs:

  ```
  [1446891.592]  -> wl_display@1.get_registry(new id wl_registry@2)
  [1446891.702]  -> wl_disp...@1.sync(new id wl_callback@3)
  [1446893.656] wl_display@1.delete_id(3)
  [1446893.737] wl_registry@2.global(1, "wl_compositor", 4)
  [1446893.781]  -> wl_regis...@2.bind(1, "wl_compositor", 3, new id 
[unknown]@4)
  [1446893.852] wl_registry@2.global(2, "wl_subcompositor", 1)
  [1446893.889]  -> wl_regis...@2.bind(2, "wl_subcompositor", 1, new id 
[unknown]@5)
  [1446893.938] wl_registry@2.global(3, "wp_viewporter", 1)
  [1446893.973] wl_registry@2.global(4, "wp_presentation", 1)
  [1446894.007] wl_registry@2.global(5, "zwp_relative_pointer_manager_v1", 1)
  [1446894.041] wl_registry@2.global(6, "zwp_pointer_constraints_v1", 1)
  [1446894.075] wl_registry@2.global(7, "wl_data_device_manager", 3)
  [1446894.109]  -> wl_regis...@2.bind(7, "wl_data_device_manager", 3, new id 
[unknown]@6)
  [1446894.156] wl_registry@2.global(8, "wl_shm", 1)
  [1446894.190]  -> wl_regis...@2.bind(8, "wl_shm", 1, new id [unknown]@7)
  [1446894.429]  -> wl_shm@7.create_pool(new id wl_shm_pool@8, fd 9, 2304)
  [1446894.974]  -> wl_shm_pool@8.resize(5568)
  [1446895.214]  -> wl_shm_pool@8.resize(12096)
  [1446895.273] wl_registry@2.global(9, "wayland_buffer_backend", 4)
  [1446895.315] wl_registry@2.global(10, "wl_seat", 5)
  [1446895.353]  -> wl_regis...@2.bind(10, "wl_seat", 5, new id [unknown]@9)
  [1446925.977]  -> wl_compositor@4.create_surface(new id wl_surface@10)
  [1446926.203]  -> wl_data_device_manager@6.get_data_device(new id 
wl_data_device@11, wl_seat@9)
  [1446926.370]  -> wl_compositor@4.create_surface(new id wl_surface@12)
  [1446926.636]  -> wl_disp...@1.sync(new id wl_callback@13)
  [1446926.765] wl_registry@2.global(11, "zwp_linux_dmabuf_v1", 3)
  [1446926.845] wl_registry@2.global(12, "gbm_buffer_backend", 1)
  [1446926.906] wl_registry@2.global(13, "wl_output", 3)
  [1446926.965]  -> wl_regis...@2.bind(13, "wl_output", 2, new id [unknown]@14)
  [1446927.172]  -> wl_disp...@1.sync(new id wl_callback@15)
  [1446927.246] wl_registry@2.global(14, "zwp_input_panel_v1", 1)
  [1446927.319] wl_registry@2.global(15, "zwp_input_method_v1", 1)
  [1446927.378] wl_registry@2.global(16, "zwp_text_input_manager_v1", 1)
  [1446927.436] wl_registry@2.global(17, "zxdg_shell_v6", 1)
  [1446927.494] wl_registry@2.global(18, "xdg_shell", 1)
  [1446927.585] wl_registry@2.global(19, "wl_shell", 1)
  [1446927.643] wl_registry@2.global(20, "weston_desktop_shell", 1)
  [1446927.716] wl_registry@2.global(21, "weston_screenshooter", 1)
  [1446927.777] wl_callb...@3.done(1)
  [1446929.537] wl_display@1.delete_id(13)
  [1446929.624] wl_display@1.delete_id(15)
  [1446929.656] wl_shm@7.format(0)
  [1446929.684] wl_shm@7.format(1)
  [1446929.709] wl_shm@7.format(909199186)
  [1446929.733] wl_shm@7.format(842093913)
  [1446929.758] wl_shm@7.format(842094158)
  [1446929.783] wl_shm@7.format(1448695129)
  [1446929.807] wl_seat@9.capabilities(2)
  [1446929.834]  -> wl_seat@9.get_keyboard(new id wl_keyboard@3)
  [1446929.903] wl_s...@9.name("default")
  [1446929.931] wl_callb...@13.done(1)
  [1446929.958] wl_output@14.geometry(0, 0, 0, 0, 0, "QCM", "unknown", 0)
  [1446930.094] wl_output@14.scale(1)
  [1446930.123] wl_out...@14.mode(3, 1920, 1080, 6)
  [1446930.193] wl_out...@14.done()
  [1446930.245] wl_callb...@15.done(1)
  [1446930.278]  -> wl_regis...@2.bind(17, "zxdg_shell_v6", 1, new id 
[unknown]@15)
  Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: eglBindAPI 
returned an error (t=0.548409) [GFX1-]: glxtest: eglBindAPI returned an error
  Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: eglBindAPI 
returned an error (t=0.548409) |[1][GFX1-]: glxtest: EGL test failed 
(t=0.548476) [GFX1-]: glxtest: EGL test failed
  Crash Annotation GraphicsCriticalError: |[0][GFX1-]: glxtest: eglBindAPI 
returned an error (t=0.548409) |[1][GFX1-]: 

[Desktop-packages] [Bug 1908082] Re: Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer benchmark

2021-03-07 Thread Andrei Petcu
There are 2 real world benchmarks all browsers care about: Page load and
Speedometer. Octane and Speedometer are polar opposites.
https://blog.chromium.org/2017/04/real-world-javascript-
performance.html?m=1

I'm certain that this 15% performance dip for deb is visible in real
world.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1908082

Title:
  Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer
  benchmark

Status in firefox package in Ubuntu:
  Incomplete

Bug description:
  Steps to reproduce:

  I installed Firefox Flatpak
  (https://flathub.org/apps/details/org.mozilla.firefox) and Chrome.

  I executed closed all apps and processes and one by one I executed
  Speedometer test (https://browserbench.org/Speedometer2.0/) in each
  browser 3 times. I took the max score for reach browser out of the 3
  executions of the test.

  Actual results:

  Results
  100.3 - Firefox Flatpak
  85.42 - FIrefox DEB (pre-installd from the store)
  100.3 - Google Chrome

  The preinstalled DEB package Firefox was slower than both Firefox
  Flatpak and Chrome

  Expected results:

  I expected Firefox DEB and Firefox Flatpak to have the same results.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1112773] Re: HP LJ 1010 doesn't print some images with default settings

2021-02-25 Thread Andrei Shevchuk
Can confirm, hpijs driver works

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to hplip in Ubuntu.
https://bugs.launchpad.net/bugs/1112773

Title:
  HP LJ 1010 doesn't print some images with default settings

Status in HPLIP:
  New
Status in hplip package in Ubuntu:
  Confirmed
Status in cups package in ALT Linux:
  Unknown

Bug description:
  When printing the attached image on an HP LJ 1010 attached to Ubuntu
  12.04 system, only a stripe of few cm  at the top is printed.

  At the same time, "simpler" things (like a random Wikipedia page) are
  printed fine.

  I simply plugged the USB cable from the printer into my Toshiba AC100
  (ARM) with Ubuntu 12.04. It was configured automatically.

  Here's the head of /etc/cups/ppd/hp-LaserJet-1010.ppd in my system
  (Obviously, it's an "hpcups" driver. Perhaps, this problem is related
  to the one described in
  https://bugzilla.altlinux.org/show_bug.cgi?id=28488 ; there, after
  replacing the "hpcups" 3.12.10a driver with the "hpijs" driver, this
  image could be ultimately printed; but with the "hpcups" driver, there
  was a PCL InsufficientMemory error):

  *PPD-Adobe: "4.3"
  * PPD file for HP LaserJet 1010 with CUPS.
  * Created by the CUPS PPD Compiler CUPS v1.5.3.
  *% (c) 2008 Copyright Hewlett-Packard Development Company, LP
  *FormatVersion: "4.3"
  *FileVersion: "hpcups 3.12.2"
  *LanguageVersion: English
  *LanguageEncoding: ISOLatin1
  *PCFileName: "hp-laserjet_1010.ppd"
  *Product: "(HP LaserJet 1010 Printer)"
  *Manufacturer: "HP"
  *ModelName: "HP LaserJet 1010"
  *ShortNickName: "HP LaserJet 1010"
  *NickName: "HP LaserJet 1010, hpcups 3.12.2"
  *PSVersion: "(3010.000) 0"
  *LanguageLevel: "3"
  *ColorDevice: True
  *DefaultColorSpace: RGB
  *FileSystem: False
  *Throughput: "1"
  *LandscapeOrientation: Plus90
  *TTRasterizer: Type42
  *% Driver-defined attributes...
  *RequiresPageRegion All: True
  *cupsEvenDuplex: True
  *hpPrinterLanguage: "ljfastraster"
  *cupsModelName: "hp LaserJet 1010"
  *1284DeviceID: "MFG:HP;MDL:hp laserjet 1010;DES:hp laserjet 1010;"
  *cupsVersion: 1.5
  *cupsModelNumber: 0
  *cupsManualCopies: True
  *cupsFilter: "application/vnd.cups-raster 0 hpcups"
  *cupsLanguages: "en"
  --- 
  ApportVersion: 2.0.1-0ubuntu13
  Architecture: armhf
  CupsErrorLog:
   W [01/Feb/2013:20:23:12 +0400] failed to CreateProfile: 
org.freedesktop.ColorManager.AlreadyExists:profile id 'hp-LaserJet-1010-Gray..' 
already exists
   W [01/Feb/2013:20:23:12 +0400] failed to CreateProfile: 
org.freedesktop.ColorManager.AlreadyExists:profile id 'hp-LaserJet-1010-RGB..' 
already exists
   W [01/Feb/2013:20:23:12 +0400] failed to CreateDevice: 
org.freedesktop.ColorManager.AlreadyExists:device id 'cups-hp-LaserJet-1010' 
already exists
  DistroRelease: Ubuntu 12.04
  Lpstat: device for hp-LaserJet-1010: 
hp:/usb/hp_LaserJet_1010?serial=00CNFD934385
  Package: cups 1.5.3-0ubuntu4
  PackageArchitecture: armhf
  PpdFiles: hp-LaserJet-1010: HP LaserJet 1010, hpcups 3.12.2
  ProcKernelCmdLine: mem=448M@0M 
tegrapart=recovery:300:a00:800,boot:d00:1000:800,mbr:1d00:200:800 
root=UUID=d42b885d-2e92-4236-b17e-d1efc2edb7ca quiet splash
  Tags:  precise
  Uname: Linux 3.0.27-1-ac100 armv7l
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1908082] Re: Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer benchmark

2021-01-28 Thread Andrei Petcu
Sorry, I switched distros. I'm on Fedora now. I see Vincent reproduced
it. Can you please collect the bug info Vincent?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1908082

Title:
  Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer
  benchmark

Status in firefox package in Ubuntu:
  Incomplete

Bug description:
  Steps to reproduce:

  I installed Firefox Flatpak
  (https://flathub.org/apps/details/org.mozilla.firefox) and Chrome.

  I executed closed all apps and processes and one by one I executed
  Speedometer test (https://browserbench.org/Speedometer2.0/) in each
  browser 3 times. I took the max score for reach browser out of the 3
  executions of the test.

  Actual results:

  Results
  100.3 - Firefox Flatpak
  85.42 - FIrefox DEB (pre-installd from the store)
  100.3 - Google Chrome

  The preinstalled DEB package Firefox was slower than both Firefox
  Flatpak and Chrome

  Expected results:

  I expected Firefox DEB and Firefox Flatpak to have the same results.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1908082] [NEW] Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer benchmark

2020-12-14 Thread Andrei Petcu
Public bug reported:

Steps to reproduce:

I installed Firefox Flatpak
(https://flathub.org/apps/details/org.mozilla.firefox) and Chrome.

I executed closed all apps and processes and one by one I executed
Speedometer test (https://browserbench.org/Speedometer2.0/) in each
browser 3 times. I took the max score for reach browser out of the 3
executions of the test.

Actual results:

Results
100.3 - Firefox Flatpak
85.42 - FIrefox DEB (pre-installd from the store)
100.3 - Google Chrome

The preinstalled DEB package Firefox was slower than both Firefox
Flatpak and Chrome

Expected results:

I expected Firefox DEB and Firefox Flatpak to have the same results.

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1908082

Title:
  Ubuntu Firefox is 15% slower than Flatpak Firefox for speedometer
  benchmark

Status in firefox package in Ubuntu:
  New

Bug description:
  Steps to reproduce:

  I installed Firefox Flatpak
  (https://flathub.org/apps/details/org.mozilla.firefox) and Chrome.

  I executed closed all apps and processes and one by one I executed
  Speedometer test (https://browserbench.org/Speedometer2.0/) in each
  browser 3 times. I took the max score for reach browser out of the 3
  executions of the test.

  Actual results:

  Results
  100.3 - Firefox Flatpak
  85.42 - FIrefox DEB (pre-installd from the store)
  100.3 - Google Chrome

  The preinstalled DEB package Firefox was slower than both Firefox
  Flatpak and Chrome

  Expected results:

  I expected Firefox DEB and Firefox Flatpak to have the same results.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1904323] [NEW] gnome-terminal resized and moved after resume

2020-11-15 Thread Andrei Borzenkov
Public bug reported:

GNOME desktop with Wayland, Dell E5450 notebook using iGPU (Intel). dGPU
(nVidia) is present but never used. No proprietary drivers. Both eDP and
HDMI are connected to Intel.

I usually have several gnome-terminal windows open. After the following

- connect TV using HDMI
- suspend notebook (close lid)
- open lid, notebook resumed

all opened gnome-terminal windows are resized (so far always smaller
size) and moved on screen to different position.

I had similar effects also in 16.04 and 18.04 under X11/Unity (and also
in 20.04 before switching to GNOME/Wayland).

I am happy to provide any additional/debugging information if anyone
explains what is necessary.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-terminal 3.36.2-1ubuntu1~20.04
ProcVersionSignature: Ubuntu 5.8.0-28.30~20.04.1-generic 5.8.14
Uname: Linux 5.8.0-28-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.12
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Nov 15 16:32:28 2020
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
InstallationDate: Installed on 2015-07-02 (1963 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-terminal
UpgradeStatus: Upgraded to focal on 2020-10-03 (43 days ago)

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


** Tags: amd64 apport-bug focal third-party-packages wayland-session

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1904323

Title:
  gnome-terminal resized and moved after resume

Status in gnome-terminal package in Ubuntu:
  New

Bug description:
  GNOME desktop with Wayland, Dell E5450 notebook using iGPU (Intel).
  dGPU (nVidia) is present but never used. No proprietary drivers. Both
  eDP and HDMI are connected to Intel.

  I usually have several gnome-terminal windows open. After the
  following

  - connect TV using HDMI
  - suspend notebook (close lid)
  - open lid, notebook resumed

  all opened gnome-terminal windows are resized (so far always smaller
  size) and moved on screen to different position.

  I had similar effects also in 16.04 and 18.04 under X11/Unity (and
  also in 20.04 before switching to GNOME/Wayland).

  I am happy to provide any additional/debugging information if anyone
  explains what is necessary.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: gnome-terminal 3.36.2-1ubuntu1~20.04
  ProcVersionSignature: Ubuntu 5.8.0-28.30~20.04.1-generic 5.8.14
  Uname: Linux 5.8.0-28-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Nov 15 16:32:28 2020
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  InstallationDate: Installed on 2015-07-02 (1963 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-terminal
  UpgradeStatus: Upgraded to focal on 2020-10-03 (43 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1793918] Re: Add/reintroduce setting to enable suspend on lid-close with external monitors attached

2020-11-05 Thread Andrei Borzenkov
> (untested) patch

I built gsd with this patch and it works for me - it suspends with
external monitor connected.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-desktop3 in Ubuntu.
https://bugs.launchpad.net/bugs/1793918

Title:
  Add/reintroduce setting to enable suspend on lid-close with external
  monitors attached

Status in gnome-desktop3 package in Ubuntu:
  Confirmed
Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in gnome-tweaks package in Ubuntu:
  Confirmed

Bug description:
  With Ubuntu 18.04 my laptop does not suspend when lid is closed while
  external monitors are attached. This might be a good behavior for many
  users but I want to have my laptop suspend again when I close it.

  Some time ago there was an option in gsettings scheme org.gnome
  .settings-daemon.plugins.power named lid-close-suspend-with-external-
  monitor (introduced in
  https://bugzilla.gnome.org/show_bug.cgi?id=657201). This settings
  seems to have no effect anymore and seems to be removed in the current
  scheme (repatched in ubuntu's version only).

  This is realy anoying because at the moment the laptop does not
  suspend at all with lid-close action because the nvidia driver
  discover the internal built-in display under DP-4. That makes gnome
  think that there is an external monitor connected. Is this a bug in
  nvidia driver or a problem of gnome-desktop's gnome-rr which thinks
  that only monitors with "LVDS|Lvds|LCD|eDP|DSI" in it's name could be
  an internal display? However this might be another bug. I want to
  suspend with realy external monitors attached anyhow because I always
  use my laptop as second/third monitor.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1902911] Re: GNOME desktop does not suspend on lid close with HDMI TV connected

2020-11-04 Thread Andrei Borzenkov
> This most trivial (untested) patch

I now built package with this test and it correctly suspends with
external monitor connected.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1902911

Title:
  GNOME desktop does not suspend on lid close with HDMI TV connected

Status in gnome-settings-daemon package in Ubuntu:
  New

Bug description:
  Ubuntu 20.04 with all current updates, GNOME/Wayland desktop, Dell
  Latitude E5450 notebook.

  I have external TV connected via HDMI and I want notebook to suspend
  when I close lid even if TV is connected. This does not work. Even
  though logind is configured to suspend in this case:

  $ cat /etc/systemd/logind.conf.d/allow-suspend-with-hdmi.conf 
  [Login]
  HandleLidSwitchDocked=suspend
  $ 

  gnome-settings-daemon starts inhibitor as soon as it detects external
  monitor:

  WHO  UID  USER PID   COMMWHAT 
WHY 
MODE 
  bor  1001 bor  96600 gsd-power   
handle-lid-switchExternal monitor 
attached or configuration changed recently block

  so sytemd-logind does not initiate suspend, but there is also no code
  in gnome-settings-daemon itself to handle lid close (as it completely
  relies on systemd-logind today).

  Ubuntu package includes patch ubuntu-lid-close-suspend.patch that
  restores gsettings keys, but as there is no code to actually *use*
  these keys patch has no effect:

  $ gsettings list-recursively org.gnome.settings-daemon.plugins.power | grep 
-w lid
  org.gnome.settings-daemon.plugins.power lid-close-ac-action 'suspend'
  org.gnome.settings-daemon.plugins.power 
lid-close-suspend-with-external-monitor true
  org.gnome.settings-daemon.plugins.power lid-close-battery-action 'suspend'
  $ 

  This most trivial (untested) patch to use this settings seems to be:

  diff --git a/plugins/power/gsd-power-manager.c 
b/plugins/power/gsd-power-manager.c
  index c7a16e8d..9b7a99b5 100644
  --- a/plugins/power/gsd-power-manager.c
  +++ b/plugins/power/gsd-power-manager.c
  @@ -1196,7 +1196,7 @@ upower_kbd_toggle (GsdPowerManager *manager,
   static gboolean
   suspend_on_lid_close (GsdPowerManager *manager)
   {
  -return !external_monitor_is_connected (manager->rr_screen);
  +return g_settings_get_boolean (manager->settings, 
"lid-close-suspend-with-external-monitor") || !external_monitor_is_connected 
(manager->rr_screen);
   }
   
   static gboolean

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: gnome-settings-daemon 3.36.1-0ubuntu1
  ProcVersionSignature: Ubuntu 5.8.0-25.26~20.04.1-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Nov  4 18:43:56 2020
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  InstallationDate: Installed on 2015-07-02 (1952 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: Upgraded to focal on 2020-10-03 (32 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1902911] [NEW] GNOME desktop does not suspend on lid close with HDMI TV connected

2020-11-04 Thread Andrei Borzenkov
Public bug reported:

Ubuntu 20.04 with all current updates, GNOME/Wayland desktop, Dell
Latitude E5450 notebook.

I have external TV connected via HDMI and I want notebook to suspend
when I close lid even if TV is connected. This does not work. Even
though logind is configured to suspend in this case:

$ cat /etc/systemd/logind.conf.d/allow-suspend-with-hdmi.conf 
[Login]
HandleLidSwitchDocked=suspend
$ 

gnome-settings-daemon starts inhibitor as soon as it detects external
monitor:

WHO  UID  USER PID   COMMWHAT   
  WHY   
  MODE 
bor  1001 bor  96600 gsd-power   handle-lid-switch  
  External monitor attached or 
configuration changed recently block

so sytemd-logind does not initiate suspend, but there is also no code in
gnome-settings-daemon itself to handle lid close (as it completely
relies on systemd-logind today).

Ubuntu package includes patch ubuntu-lid-close-suspend.patch that
restores gsettings keys, but as there is no code to actually *use* these
keys patch has no effect:

$ gsettings list-recursively org.gnome.settings-daemon.plugins.power | grep -w 
lid
org.gnome.settings-daemon.plugins.power lid-close-ac-action 'suspend'
org.gnome.settings-daemon.plugins.power lid-close-suspend-with-external-monitor 
true
org.gnome.settings-daemon.plugins.power lid-close-battery-action 'suspend'
$ 

This most trivial (untested) patch to use this settings seems to be:

diff --git a/plugins/power/gsd-power-manager.c 
b/plugins/power/gsd-power-manager.c
index c7a16e8d..9b7a99b5 100644
--- a/plugins/power/gsd-power-manager.c
+++ b/plugins/power/gsd-power-manager.c
@@ -1196,7 +1196,7 @@ upower_kbd_toggle (GsdPowerManager *manager,
 static gboolean
 suspend_on_lid_close (GsdPowerManager *manager)
 {
-return !external_monitor_is_connected (manager->rr_screen);
+return g_settings_get_boolean (manager->settings, 
"lid-close-suspend-with-external-monitor") || !external_monitor_is_connected 
(manager->rr_screen);
 }
 
 static gboolean

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-settings-daemon 3.36.1-0ubuntu1
ProcVersionSignature: Ubuntu 5.8.0-25.26~20.04.1-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.10
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Wed Nov  4 18:43:56 2020
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
InstallationDate: Installed on 2015-07-02 (1952 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-settings-daemon
UpgradeStatus: Upgraded to focal on 2020-10-03 (32 days ago)

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


** Tags: amd64 apport-bug focal wayland-session

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1902911

Title:
  GNOME desktop does not suspend on lid close with HDMI TV connected

Status in gnome-settings-daemon package in Ubuntu:
  New

Bug description:
  Ubuntu 20.04 with all current updates, GNOME/Wayland desktop, Dell
  Latitude E5450 notebook.

  I have external TV connected via HDMI and I want notebook to suspend
  when I close lid even if TV is connected. This does not work. Even
  though logind is configured to suspend in this case:

  $ cat /etc/systemd/logind.conf.d/allow-suspend-with-hdmi.conf 
  [Login]
  HandleLidSwitchDocked=suspend
  $ 

  gnome-settings-daemon starts inhibitor as soon as it detects external
  monitor:

  WHO  UID  USER PID   COMMWHAT 
WHY 
MODE 
  bor  1001 bor  96600 gsd-power   
handle-lid-switchExternal monitor 
attached or configuration changed recently block

  so sytemd-logind does not initiate suspend, but there is also no code
  in gnome-settings-daemon itself to handle lid close (as it completely
  relies on systemd-logind today).

  Ubuntu package includes patch ubuntu-lid-close-suspend.patch that
  restores gsettings keys, but as there is no code to actually *use*
  these keys patch has no effect:

  $ gsettings list-recursively org.gnome.settings-daemon.plugins.power | grep 
-w lid
  org.gnome.settings-daemon.plugins.power lid-close-ac-action 'suspend'
  org.gnome.settings-daemon.plugins.power 

[Desktop-packages] [Bug 1890891] Re: dock

2020-08-09 Thread Andrei
** Attachment added: "settings.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1890891/+attachment/5400277/+files/settings.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell-extension-ubuntu-dock in
Ubuntu.
https://bugs.launchpad.net/bugs/1890891

Title:
  dock

Status in gnome-shell-extension-ubuntu-dock package in Ubuntu:
  Incomplete

Bug description:
  when no one program is pinned and no one open dock stop working
  normally. When I open program it appear only 10 sec later as well for
  closing. restarting with alt + f2 is solving problem until all
  programs again unpinned and closed

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Aug  8 16:08:55 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev cb) (prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
  InstallationDate: Installed on 2020-08-07 (0 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Gigabyte Technology Co., Ltd. A320M-S2H V2
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=bfd431bb-2152-4fc0-98a1-a1e23b252397 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/02/2019
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F50
  dmi.board.asset.tag: Default string
  dmi.board.name: A320M-S2H V2-CF
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF50:bd12/02/2019:svnGigabyteTechnologyCo.,Ltd.:pnA320M-S2HV2:pvrDefaultstring:rvnGigabyteTechnologyCo.,Ltd.:rnA320M-S2HV2-CF:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: Default string
  dmi.product.name: A320M-S2H V2
  dmi.product.sku: Default string
  dmi.product.version: Default string
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.101-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1890891/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1890891] Re: dock

2020-08-09 Thread Andrei
** Attachment added: "2020-08-10 08-39-27.mkv"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1890891/+attachment/5400276/+files/2020-08-10%2008-39-27.mkv

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell-extension-ubuntu-dock in
Ubuntu.
https://bugs.launchpad.net/bugs/1890891

Title:
  dock

Status in gnome-shell-extension-ubuntu-dock package in Ubuntu:
  Incomplete

Bug description:
  when no one program is pinned and no one open dock stop working
  normally. When I open program it appear only 10 sec later as well for
  closing. restarting with alt + f2 is solving problem until all
  programs again unpinned and closed

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Aug  8 16:08:55 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev cb) (prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
  InstallationDate: Installed on 2020-08-07 (0 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Gigabyte Technology Co., Ltd. A320M-S2H V2
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=bfd431bb-2152-4fc0-98a1-a1e23b252397 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/02/2019
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F50
  dmi.board.asset.tag: Default string
  dmi.board.name: A320M-S2H V2-CF
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF50:bd12/02/2019:svnGigabyteTechnologyCo.,Ltd.:pnA320M-S2HV2:pvrDefaultstring:rvnGigabyteTechnologyCo.,Ltd.:rnA320M-S2HV2-CF:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: Default string
  dmi.product.name: A320M-S2H V2
  dmi.product.sku: Default string
  dmi.product.version: Default string
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.101-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1890891/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1890891] [NEW] dock

2020-08-08 Thread Andrei
Public bug reported:

when no one program is pinned and no one open dock stop working
normally. When I open program it appear only 10 sec later as well for
closing. restarting with alt + f2 is solving problem until all programs
again unpinned and closed

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: xorg 1:7.7+19ubuntu14
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.6
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: skip
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sat Aug  8 16:08:55 2020
DistUpgraded: Fresh install
DistroCodename: focal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev cb) (prog-if 00 [VGA controller])
   Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
InstallationDate: Installed on 2020-08-07 (0 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: Gigabyte Technology Co., Ltd. A320M-S2H V2
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=bfd431bb-2152-4fc0-98a1-a1e23b252397 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/02/2019
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F50
dmi.board.asset.tag: Default string
dmi.board.name: A320M-S2H V2-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 3
dmi.chassis.vendor: Default string
dmi.chassis.version: Default string
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF50:bd12/02/2019:svnGigabyteTechnologyCo.,Ltd.:pnA320M-S2HV2:pvrDefaultstring:rvnGigabyteTechnologyCo.,Ltd.:rnA320M-S2HV2-CF:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:
dmi.product.family: Default string
dmi.product.name: A320M-S2H V2
dmi.product.sku: Default string
dmi.product.version: Default string
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.101-2
version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug focal ubuntu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1890891

Title:
  dock

Status in xorg package in Ubuntu:
  New

Bug description:
  when no one program is pinned and no one open dock stop working
  normally. When I open program it appear only 10 sec later as well for
  closing. restarting with alt + f2 is solving problem until all
  programs again unpinned and closed

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Aug  8 16:08:55 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev cb) (prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
  InstallationDate: Installed on 2020-08-07 (0 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Gigabyte Technology Co., Ltd. A320M-S2H V2
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=bfd431bb-2152-4fc0-98a1-a1e23b252397 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/02/2019
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F50
  dmi.board.asset.tag: Default string
  dmi.board.name: A320M-S2H V2-CF
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: 

[Desktop-packages] [Bug 1553685] Re: Lenovo Y700-17ISK subwoofer doesn't work

2020-04-19 Thread Andrei
This is the most heated bug on this site. Can someone please get this
fixed?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1553685

Title:
  Lenovo Y700-17ISK subwoofer doesn't work

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Lenovo Y700-17ISK (Intel Core i7-6700HQ/RAM 16GB/SSD 512GB/Nvidia GTX960M 4GB)
  Operating system: Ubuntu 16.04 (xenial-desktop-amd64.iso 04-Mar-2016, kernel 
4.4.0-10-generic, nvidia 361.28)

  Problem: Notebook subwoofer doesn't work.

  Judging from alsa-info.sh output, there is no pin declared for the bass 
output by BIOS.
  Please find a zip file attached: 'alsa-info_hdajackretask-unconnected-pins'

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
  Uname: Linux 4.4.0-10-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  aljosa 1776 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun Mar  6 11:02:21 2016
  HibernationDevice: RESUME=UUID=ac022671-63df-40ae-bffe-66fff3b35125
  InstallationDate: Installed on 2016-03-05 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160304)
  MachineType: LENOVO 80Q0
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-10-generic.efi.signed 
root=UUID=aa4325c4-4b4c-4372-b8ca-a66c3e5b2aa6 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-10-generic N/A
   linux-backports-modules-4.4.0-10-generic  N/A
   linux-firmware1.156
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/31/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: CDCN30WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: Allsparks 7A
  dmi.board.vendor: LENOVO
  dmi.board.version: NO DPK
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad Y700-17ISK
  dmi.modalias: 
dmi:bvnLENOVO:bvrCDCN30WW:bd01/31/2016:svnLENOVO:pn80Q0:pvrLenovoideapadY700-17ISK:rvnLENOVO:rnAllsparks7A:rvrNODPK:cvnLENOVO:ct10:cvrLenovoideapadY700-17ISK:
  dmi.product.name: 80Q0
  dmi.product.version: Lenovo ideapad Y700-17ISK
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1838008] Re: [snap] cursor theme isn't respected

2020-01-23 Thread Andrei Shevchuk
Confirm, this and #1833611 are both fixed for me (Kubuntu 19.10, Breeze)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1838008

Title:
  [snap] cursor theme isn't respected

Status in chromium-browser package in Ubuntu:
  Confirmed

Bug description:
  (initially reported at https://discourse.ubuntu.com/t/call-for-
  testing-chromium-browser-deb-to-snap-transition/11179/85)

  When changing the cursor theme with gnome-tweaks, I can observe that
  some themes aren't respected in the chromium snap. This appears to be
  specific to chromium, other snaps like evince or gimp use the correct
  cursors.

  Yaru and Adwaita are fine, but Redglass or Whiteglass aren't.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1827685] [NEW] Corrupted background after automatic power suspend

2019-05-03 Thread Andrei Sonin
Public bug reported:

Another one graphical bug in a new Ubuntu 19.04, GNOME.

Corrupted background appears every time after automatic power suspend.
The background may show some buggy pictures, but usually shows a white
screen. See attached images in .zip archive.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: xorg 1:7.7+19ubuntu12
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
 GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CompositorRunning: None
Date: Fri May  3 16:31:10 2019
DistUpgraded: Fresh install
DistroCodename: disco
DistroVariant: ubuntu
DkmsStatus: nvidia, 418.56, 5.0.0-13-generic, x86_64: installed
ExtraDebuggingInterest: No
GraphicsCard:
 Intel Corporation HD Graphics 630 [8086:591b] (rev 04) (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company HD Graphics 630 [103c:8392]
 NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1) 
(prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Mobile] 
[103c:8392]
InstallationDate: Installed on 2019-04-29 (3 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
 Bus 001 Device 003: ID 04f2:b593 Chicony Electronics Co., Ltd 
 Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: HP OMEN by HP Laptop 17-an0xx
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=08661a81-0386-4b44-9d3e-17ad6fa2de96 ro quiet splash vt.handoff=1
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/21/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F.05
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 8392
dmi.board.vendor: HP
dmi.board.version: 40.21
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF.05:bd06/21/2017:svnHP:pnOMENbyHPLaptop17-an0xx:pvr:rvnHP:rn8392:rvr40.21:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP OMEN
dmi.product.name: OMEN by HP Laptop 17-an0xx
dmi.product.sku: 2FP35EA#ACB
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.97-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug corruption disco ubuntu

** Attachment added: "Screenshots.zip"
   
https://bugs.launchpad.net/bugs/1827685/+attachment/5261360/+files/Screenshots.zip

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1827685

Title:
  Corrupted background after automatic power suspend

Status in xorg package in Ubuntu:
  New

Bug description:
  Another one graphical bug in a new Ubuntu 19.04, GNOME.

  Corrupted background appears every time after automatic power suspend.
  The background may show some buggy pictures, but usually shows a white
  screen. See attached images in .zip archive.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
   GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  CompositorRunning: None
  Date: Fri May  3 16:31:10 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  DkmsStatus: nvidia, 418.56, 

[Desktop-packages] [Bug 1827428] Re: Mouse cursor left freezed copy of itself

2019-05-02 Thread Andrei Sonin
> What desktop environment do you use?

GNOME. From the latest Ubuntu release (19.04).

> Screenshot.

I tried to capture it by screenshot. But freezed cursor is not shown on
it. So I attach a photo. Freezed cursor is on the bottom left.

** Attachment added: "VrAmb8UYn0o.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1827428/+attachment/5261036/+files/VrAmb8UYn0o.jpg

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1827428

Title:
  Mouse cursor left freezed copy of itself

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Mouse cursor left freezed copy of itself over all the windows after
  login after lock screen. Functionality is not broken. It's just not
  aesthetic.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
   GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  2 16:10:09 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  DkmsStatus: nvidia, 418.56, 5.0.0-13-generic, x86_64: installed
  ExtraDebuggingInterest: No
  GraphicsCard:
   Intel Corporation HD Graphics 630 [8086:591b] (rev 04) (prog-if 00 [VGA 
controller])
 Subsystem: Hewlett-Packard Company HD Graphics 630 [103c:8392]
   NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1) 
(prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Mobile] 
[103c:8392]
  InstallationDate: Installed on 2019-04-29 (2 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
   Bus 001 Device 003: ID 04f2:b593 Chicony Electronics Co., Ltd 
   Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP OMEN by HP Laptop 17-an0xx
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=08661a81-0386-4b44-9d3e-17ad6fa2de96 ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/21/2017
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F.05
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 8392
  dmi.board.vendor: HP
  dmi.board.version: 40.21
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF.05:bd06/21/2017:svnHP:pnOMENbyHPLaptop17-an0xx:pvr:rvnHP:rn8392:rvr40.21:cvnHP:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP OMEN
  dmi.product.name: OMEN by HP Laptop 17-an0xx
  dmi.product.sku: 2FP35EA#ACB
  dmi.sys.vendor: HP
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.97-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1827428] [NEW] Mouse cursor left freezed copy of itself

2019-05-02 Thread Andrei Sonin
Public bug reported:

Mouse cursor left freezed copy of itself over all the windows after
login after lock screen. Functionality is not broken. It's just not
aesthetic.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: xorg 1:7.7+19ubuntu12
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
 GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu May  2 16:10:09 2019
DistUpgraded: Fresh install
DistroCodename: disco
DistroVariant: ubuntu
DkmsStatus: nvidia, 418.56, 5.0.0-13-generic, x86_64: installed
ExtraDebuggingInterest: No
GraphicsCard:
 Intel Corporation HD Graphics 630 [8086:591b] (rev 04) (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company HD Graphics 630 [103c:8392]
 NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1) 
(prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Mobile] 
[103c:8392]
InstallationDate: Installed on 2019-04-29 (2 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
 Bus 001 Device 003: ID 04f2:b593 Chicony Electronics Co., Ltd 
 Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: HP OMEN by HP Laptop 17-an0xx
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=08661a81-0386-4b44-9d3e-17ad6fa2de96 ro quiet splash vt.handoff=1
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/21/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F.05
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 8392
dmi.board.vendor: HP
dmi.board.version: 40.21
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF.05:bd06/21/2017:svnHP:pnOMENbyHPLaptop17-an0xx:pvr:rvnHP:rn8392:rvr40.21:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP OMEN
dmi.product.name: OMEN by HP Laptop 17-an0xx
dmi.product.sku: 2FP35EA#ACB
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.97-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug disco ubuntu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1827428

Title:
  Mouse cursor left freezed copy of itself

Status in xorg package in Ubuntu:
  New

Bug description:
  Mouse cursor left freezed copy of itself over all the windows after
  login after lock screen. Functionality is not broken. It's just not
  aesthetic.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  418.56  Fri Mar 15 12:59:26 
CDT 2019
   GCC version:  gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  2 16:10:09 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  DkmsStatus: nvidia, 418.56, 5.0.0-13-generic, x86_64: installed
  ExtraDebuggingInterest: No
  GraphicsCard:
   Intel Corporation HD Graphics 630 [8086:591b] (rev 04) (prog-if 00 [VGA 

[Desktop-packages] [Bug 1774957] Re: Network icons in status menu disappearing

2019-03-15 Thread Andrei
Daniel, how do I know which of the three deb-files

gnome-shell-common_3.28.3+git20190124-0ubuntu18.04.1_all.deb (179.2 KiB)
gnome-shell-dbgsym_3.28.3+git20190124-0ubuntu18.04.1_amd64.ddeb (1.1 MiB)
gnome-shell_3.28.3+git20190124-0ubuntu18.04.1_amd64.deb (650.2 KiB)

from that page I should install?

I tried to install the first one and it completely messed up my log in
procedure with the error "failed to start session" showing up at log in.
I spent half a day fixing that.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1774957

Title:
  Network icons in status menu disappearing

Status in gnome-shell package in Ubuntu:
  Invalid
Status in gnome-shell source package in Bionic:
  Fix Committed
Status in gnome-shell source package in Cosmic:
  Fix Released
Status in gnome-shell source package in Disco:
  Invalid

Bug description:
  https://gitlab.gnome.org/GNOME/gnome-shell/issues/140

  ---

  Ever since the update to Ubuntu 18.04 I'm having issues with the
  status menu at the top right of the screen.

  Normally you'd have a wired network connection icon displayed at the top 
without opening the menu. In my case it is not displayed half of the time. In 
the menu list no icon nor label is displayed for the wired connection menu item.
  When talking about half of the time it means that I can randomly make it 
display again when removing the USB network adapter and reconnecting it e.g.
  This does not work reliably though.

  When connecting to a VPN, normally you'd get an additional icon at the
  top. This is not the case any more, nor does the switch behind an
  activated VPN turns change to an active state. The result is that you
  can activate a VPN using the switch, but you can verify that it is
  activated, nor can you de-active the VPN through the menu. This does
  change in settings though.

  Wireless settings are no longer displayed in the menu at all. So no
  way to activate it or connect to a specific network.

  I tried reconfiguring (dpkg-reconfigure) gnome-shell as well as
  network-manager-gnome, to no avail.

  Attached you'll find a screenshot illustrating the issue. You'll see
  two icons missing to the left of the volume icon, as well as the
  wireless menu missing completely and no icon and text label for the
  wired connection menu item.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-shell 3.28.1-0ubuntu2
  ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
  Uname: Linux 4.15.0-22-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Mon Jun  4 10:47:05 2018
  DisplayManager: gdm3
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-10-07 (604 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160720)
  SourcePackage: gnome-shell
  UpgradeStatus: Upgraded to bionic on 2018-05-31 (3 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1768390] Re: BadMatch error in X_GLXSwapBuffers running OpenGL apps with nvidia-driver-390

2019-02-21 Thread andrei
This issue still occurs on kernel 4.18 with nvidia 415. The workaround
is to export __GLVND_DISALLOW_PATCHING=1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libglvnd in Ubuntu.
https://bugs.launchpad.net/bugs/1768390

Title:
  BadMatch error in X_GLXSwapBuffers running OpenGL apps with nvidia-
  driver-390

Status in libglvnd package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-390 package in Ubuntu:
  Confirmed

Bug description:
  With bumblebee installed with modified library paths for the libglvnd
  setup used by nvidia-graphics-drivers-390 (see
  https://bugs.launchpad.net/ubuntu/+source/bumblebee/+bug/1758243), 3D
  apps run fine in wine, but I get an error calling X_GLXSwapBuffers
  error running OpenGL apps, eg:

  $ optirun glxheads
  glxheads: exercise multiple GLX connections (any key = exit)
  Usage:
glxheads xdisplayname ...
  Example:
glxheads :0 mars:0 venus:1
  Name: :1
Display: 0x55b464525ce0
Window:  0x2c2
Context: 0x55b46468a208
GL_VERSION:  4.6.0 NVIDIA 390.48
GL_VENDOR:   NVIDIA Corporation
GL_RENDERER: GeForce GTX 1050/PCIe/SSE2
  X Error of failed request:  BadMatch (invalid parameter attributes)
Major opcode of failed request:  155 (GLX)
Minor opcode of failed request:  11 (X_GLXSwapBuffers)
Serial number of failed request:  37
Current serial number in output stream:  38
  primus: warning: dropping a frame to avoid deadlock
  primus: warning: timeout waiting for display worker
  terminate called without an active exception

  This might be an issue with libglvnd rather than with the nvidia
  driver.

  Other users report the same issue, eg see comment #6 on the
  aforementioned bug and https://github.com/Bumblebee-
  Project/Bumblebee/issues/951 (comment by MrDeepPurple).

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: nvidia-driver-390 390.48-0ubuntu3
  Uname: Linux 4.17.0-041700rc3-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Wed May  2 10:47:34 2018
  InstallationDate: Installed on 2017-08-16 (258 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
  SourcePackage: nvidia-graphics-drivers-390
  UpgradeStatus: Upgraded to bionic on 2017-11-17 (165 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1764417] Re: Unrecoverable failure in required component org.gnome.SettingsDaemon.Color.desktop

2019-01-16 Thread Andrei
Happens to me as well with the same error. Thought it might be related
to the Nvidia driver, but the initial reporter clearly mentions it only
started to happen after upgrading to 18.04. Have any of you guys managed
to track down the issue or find a workaround?

Thanks!

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1764417

Title:
  Unrecoverable failure in required component
  org.gnome.SettingsDaemon.Color.desktop

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed

Bug description:
  I've had this happen a couple of times now since upgrading to 18.04:
  soon (perhaps within a minute) after logging in, Gnome session ends
  abruptly and I'm thrown back to the login screen. IIRC, in both
  instances this occurred on the first login after boot, so it does not
  reoccur on the subsequent re-login, and not on every login (very
  rarely in fact), and for now I have no better steps to reproduce this
  other than "boot, log in".

  Bug #1663839 (reported against 17.04) seems similar, as does bug
  #1731428 (reported against 17.10).

  journalctl output during the issue:

  Apr 16 07:00:30 saegusa gnome-session[4342]: gnome-session-binary[4342]: 
WARNING: Application 'org.gnome.SettingsDaemon.Color.desktop' failed to 
register before timeout
  Apr 16 07:00:30 saegusa gnome-session-binary[4342]: WARNING: Application 
'org.gnome.SettingsDaemon.Color.desktop' failed to register before timeout
  Apr 16 07:00:30 saegusa gnome-session-binary[4342]: Unrecoverable failure in 
required component org.gnome.SettingsDaemon.Color.desktop
  Apr 16 07:00:30 saegusa gnome-session[4342]: gnome-session-binary[4342]: 
CRITICAL: We failed, but the fail whale is dead. Sorry
  Apr 16 07:00:30 saegusa gnome-session-binary[4342]: CRITICAL: We failed, but 
the fail whale is dead. Sorry

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: gnome-settings-daemon 3.28.1-0ubuntu1
  ProcVersionSignature: Ubuntu 4.15.0-15.16-generic 4.15.15
  Uname: Linux 4.15.0-15-generic x86_64
  ApportVersion: 2.20.9-0ubuntu4
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Apr 16 17:07:14 2018
  InstallationDate: Installed on 2016-10-13 (550 days ago)
  InstallationMedia: Ubuntu-Server 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1801514] Re: Screen roatation 5.0 JUNO

2018-11-29 Thread Andrei
I think I found the problem for that bug. I switched to Ubuntu Budgie because 
that 'auto screen rotation' was very annoying and I found out that the new 
installed os had some screen glitches and flashes like in elementary, so I went 
to the BIOS and found out that my video drive memory was set tot „Auto”. I 
modified that value to 512mb and now everything works fine. 
I didn't switch back to elementary os yet but I'm guessing that if that solved 
the glitches and screen flashes on Budgie it will solve the screen rotation 
from elementary os.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xinput in Ubuntu.
https://bugs.launchpad.net/bugs/1801514

Title:
  Screen roatation 5.0 JUNO

Status in xinput package in Ubuntu:
  New

Bug description:
  Hello. I have a HP laptop (NOT a convertible laptop) and in Settings/Displays 
the Rotate option is set tot 'None'. But after a few minutes (after startup) 
the Rotate option is chainging to clockwise and my screen is showing the 
desktop rotated to 90 degrees. If i change it back to 'None' is valid only for 
the desktop the login screen is still at 90 degrees.
  Please do something is very annoying

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1725779] Re: Gnome network manager cannot find authentication binary

2018-06-01 Thread Andrei Dragan
Same here on 18.04

:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 18.04 LTS
Release:18.04
Codename:   bionic
:~# dpkg -l|egrep 'network(-)?manager|openconnect|openvpn|gnome-shell'
ii  gnome-shell3.28.1-0ubuntu2  
   amd64graphical shell for the GNOME desktop
ii  gnome-shell-common 3.28.1-0ubuntu2  
   all  common files for the GNOME graphical shell
ii  gnome-shell-extension-appindicator 18.04.1  
   all  App indicators for GNOME Shell
ii  gnome-shell-extension-ubuntu-dock  0.9.1
   all  Ubuntu Dock for GNOME Shell
ii  libopenconnect5:amd64  7.08-3   
   amd64open client for Cisco AnyConnect VPN - shared library
ii  libproxy1-plugin-networkmanager:amd64  0.4.15-1 
   amd64automatic proxy configuration management library (Network 
Manager plugin)
ii  network-manager1.10.6-2ubuntu1  
   amd64network management framework (daemon and userspace tools)
ii  network-manager-config-connectivity-ubuntu 1.10.6-2ubuntu1  
   all  NetworkManager configuration to enable connectivity checking
ii  network-manager-gnome  1.8.10-2ubuntu1  
   amd64network management framework (GNOME frontend)
ii  network-manager-openconnect1.2.4-1  
   amd64network management framework (OpenConnect plugin core)
ii  network-manager-openconnect-gnome  1.2.4-1  
   amd64network management framework (OpenConnect plugin GNOME GUI)
ii  network-manager-openvpn1.8.2-1  
   amd64network management framework (OpenVPN plugin core)
ii  network-manager-openvpn-gnome  1.8.2-1  
   amd64network management framework (OpenVPN plugin GNOME GUI)
ii  network-manager-pptp   1.2.6-1  
   amd64network management framework (PPTP plugin core)
ii  network-manager-pptp-gnome 1.2.6-1  
   amd64network management framework (PPTP plugin GNOME GUI)
ii  openconnect7.08-3   
   amd64open client for Cisco AnyConnect VPN
ii  openvpn2.4.4-2ubuntu1   
   amd64virtual private network daemon
:~# 


Jun  1 18:49:14 nn NetworkManager[1023]:   [1527868154.6931] 
vpn-connection[0x55aa60ba0520,33f5f8d3-f496-464b-bd25-70f8db84addf,"nnvpn",0]: 
Started the VPN service, PID 5561
Jun  1 18:49:14 nn NetworkManager[1023]:   [1527868154.7036] 
vpn-connection[0x55aa60ba0520,33f5f8d3-f496-464b-bd25-70f8db84addf,"nnvpn",0]: 
Saw the service appear; activating connection
Jun  1 18:49:14 nn gnome-shell[1733]: Invalid VPN service type (cannot find 
authentication binary)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager-pptp in Ubuntu.
https://bugs.launchpad.net/bugs/1725779

Title:
  Gnome network manager cannot find authentication binary

Status in network-manager-pptp package in Ubuntu:
  Confirmed
Status in network-manager-ssh package in Ubuntu:
  Confirmed

Bug description:
  From logs:

  Oct 21 13:54:03 V NetworkManager[5935]:   [1508608443.7424] audit: 
op="connection-activate" uuid="71868b90-3a57-4fee-9933-bf7c9b22d44d" 
name="Library" pid=2510 uid=1000 result="success"
  Oct 21 13:54:03 V NetworkManager[5935]:   [1508608443.7473] 
vpn-connection[0x55e8f7b612f0,71868b90-3a57-4fee-9933-bf7c9b22d44d,"Library",0]:
 Started the VPN service, PID 6934
  Oct 21 13:54:03 V NetworkManager[5935]:   [1508608443.7518] 
vpn-connection[0x55e8f7b612f0,71868b90-3a57-4fee-9933-bf7c9b22d44d,"Library",0]:
 Saw the service appear; activating connection
  Oct 21 13:54:03 V gnome-shell[2510]: Invalid VPN service type (cannot find 
authentication binary)
  Oct 21 13:54:03 V gnome-shell[2510]: Invalid VPN service type (cannot find 
authentication binary)
  Oct 21 13:54:03 V NetworkManager[5935]:  [1508608443.7698] 
vpn-connection[0x55e8f7b612f0,71868b90-3a57-4fee-9933-bf7c9b22d44d,"Library",0]:
 Failed to request VPN secrets #3: No agents were available for t
  his request.
  Oct 21 13:54:03 V NetworkManager[5935]:   [1508608443.7708] 
vpn-connection[0x55e8f7b612f0,71868b90-3a57-4fee-9933-bf7c9b22d44d,"Library",0]:
 VPN plugin: state changed: stopped (6)

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: network-manager-pptp-gnome 1.2.4-4
  ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
  Uname: Linux 4.13.0-16-generic x86_64
  NonfreeKernelModules: nvidia_uvm 

[Desktop-packages] [Bug 1770406] Re: Ubuntu 18.04 Screen, mousepad and keyboard freezing on ACER ASPIRE 7

2018-05-11 Thread Andrei
Same problem with Acer Aspire 7 A715-71G-523H. I've installed system
without starting live Ubuntu. After installation system is loaded, but
after entering my password, Ubuntu freezes.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-desktop3 in Ubuntu.
https://bugs.launchpad.net/bugs/1770406

Title:
  Ubuntu 18.04 Screen, mousepad and keyboard freezing on ACER ASPIRE 7

Status in gnome-desktop3 package in Ubuntu:
  New

Bug description:
  I'm trying run a Live-USB Ubuntu 18.04 in Aspire 7 A715-71G-796T but
  after booting Touch-pad, keyboard or USB mouse doesn't works. I can
  move the mouse pointer but I can't click.

  Some information:
  Live USB generated by Rufus using GPT to UEFI;
  Fat 32;
  Pen-drive 2 GB;
  BIOS Factory Default.

  Hardware:
  Laptop Acer Aspire 7 A715-71G-796T;
  Intel Core i7 7700HQ 2.8GHz;
  NVIDIA GeForce GTX 1050 with 2GB GDDR5 Dedicated VRAM;
  16GB DDR4 RAM Memory;
  256 GB SSD.

  PS: I Can't run any command because everything is freezing.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1553685] Re: Lenovo Y700-17ISK subwoofer doesn't work

2018-05-03 Thread Andrei Manolache
I can also provide information needed or test possible solutions.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1553685

Title:
  Lenovo Y700-17ISK subwoofer doesn't work

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Lenovo Y700-17ISK (Intel Core i7-6700HQ/RAM 16GB/SSD 512GB/Nvidia GTX960M 4GB)
  Operating system: Ubuntu 16.04 (xenial-desktop-amd64.iso 04-Mar-2016, kernel 
4.4.0-10-generic, nvidia 361.28)

  Problem: Notebook subwoofer doesn't work.

  Judging from alsa-info.sh output, there is no pin declared for the bass 
output by BIOS.
  Please find a zip file attached: 'alsa-info_hdajackretask-unconnected-pins'

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
  Uname: Linux 4.4.0-10-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  aljosa 1776 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun Mar  6 11:02:21 2016
  HibernationDevice: RESUME=UUID=ac022671-63df-40ae-bffe-66fff3b35125
  InstallationDate: Installed on 2016-03-05 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160304)
  MachineType: LENOVO 80Q0
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-10-generic.efi.signed 
root=UUID=aa4325c4-4b4c-4372-b8ca-a66c3e5b2aa6 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-10-generic N/A
   linux-backports-modules-4.4.0-10-generic  N/A
   linux-firmware1.156
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/31/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: CDCN30WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: Allsparks 7A
  dmi.board.vendor: LENOVO
  dmi.board.version: NO DPK
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad Y700-17ISK
  dmi.modalias: 
dmi:bvnLENOVO:bvrCDCN30WW:bd01/31/2016:svnLENOVO:pn80Q0:pvrLenovoideapadY700-17ISK:rvnLENOVO:rnAllsparks7A:rvrNODPK:cvnLENOVO:ct10:cvrLenovoideapadY700-17ISK:
  dmi.product.name: 80Q0
  dmi.product.version: Lenovo ideapad Y700-17ISK
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1767065] Re: [regression] pulseaudio+bluetooth crash causing user to be logged out (since pulseaudio 1:8.0-0ubuntu3.9)

2018-04-30 Thread Andrei Hornoiu
Spoke too soon, it happened again. Seems to be from pulse and bluetooth.
Why is systemd still trying to start bluetooth when it is off in the
bios and the service is disabled. I really don't understand what I can
try more to debug.

Apr 30 11:31:09 ESS-PC26 org.gtk.vfs.AfcVolumeMonitor[8928]: Volume monitor 
alive
Apr 30 11:31:10 ESS-PC26 org.gnome.ScreenSaver[8928]: ** Message: Lost the 
name, shutting down.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Supervising 7 threads of 2 
processes of 2 users.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Successfully made thread 9456 of 
process 9266 (n/a) owned by '1001' RT at priority 5.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Supervising 8 threads of 2 
processes of 2 users.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Successfully made thread 9458 of 
process 9458 (n/a) owned by '1001' high priority at nice level -11.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Supervising 9 threads of 3 
processes of 2 users.
Apr 30 11:31:16 ESS-PC26 pulseaudio[9458]: [pulseaudio] pid.c: Daemon already 
running.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Successfully made thread 9460 of 
process 9460 (n/a) owned by '1001' high priority at nice level -11.
Apr 30 11:31:16 ESS-PC26 rtkit-daemon[1501]: Supervising 9 threads of 3 
processes of 2 users.
Apr 30 11:31:16 ESS-PC26 pulseaudio[9460]: [pulseaudio] pid.c: Daemon already 
running.
Apr 30 11:31:16 ESS-PC26 dbus[1148]: [system] Activating via systemd: service 
name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service'
Apr 30 11:31:16 ESS-PC26 gnome-session[9150]: (uint32 1,)
Apr 30 11:31:16 ESS-PC26 systemd[1]: Starting Locale Service...
Apr 30 11:31:16 ESS-PC26 gnome-session-binary[9150]: Entering running state
Apr 30 11:31:16 ESS-PC26 gnome-session[9150]: (process:9493): 
indicator-application-service-WARNING **: Unable to get watcher name 
'org.kde.StatusNotifierWatcher'
Apr 30 11:31:16 ESS-PC26 gnome-session[9150]: (process:9493): 
indicator-application-service-WARNING **: Name Lost
Apr 30 11:31:16 ESS-PC26 polkitd(authority=local)[1278]: Registered 
Authentication Agent for unix-session:c4 (system bus name :1.181 
[/usr/lib/policykit-1-gnome/polkit-gnome-authentication-a
Apr 30 11:31:16 ESS-PC26 dbus[1148]: [system] Successfully activated service 
'org.freedesktop.locale1'
Apr 30 11:31:16 ESS-PC26 systemd[1]: Started Locale Service.
Apr 30 11:31:22 ESS-PC26 dbus[1148]: [system] Activating via systemd: service 
name='org.bluez' unit='dbus-org.bluez.service'
Apr 30 11:31:22 ESS-PC26 dbus[1148]: [system] Activation via systemd failed for 
unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  [regression] pulseaudio+bluetooth crash causing user to be logged out
  (since pulseaudio 1:8.0-0ubuntu3.9)

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 

[Desktop-packages] [Bug 1767065] Re: [regression] pulseaudio+bluetooth crash causing user to be logged out (since pulseaudio 1:8.0-0ubuntu3.9)

2018-04-30 Thread Andrei Hornoiu
Now this is something really weird. I said for the hell of it to try and
see if this would fix the issue. I was thinking that to save energy
maybe the system tried to power down wifi/bluetooth and such during idle
times.

I added intel_idle.max_cstate=1 to the kernel start options in the grub
config. The main person I'm testing with hasn't reported any forced
logouts since this change.

Based on this solution:
https://askubuntu.com/questions/761706/ubuntu-15-10-and-16-04-keep-
freezing-randomly

Is the CPU/ ACPI calls going into a lower state causing problems with
the login/logout state of the machine? This might not have anything to
do with pulse, but it opens an entire new can of worms.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  [regression] pulseaudio+bluetooth crash causing user to be logged out
  (since pulseaudio 1:8.0-0ubuntu3.9)

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', 

[Desktop-packages] [Bug 1767065] AlsaInfo.txt

2018-04-27 Thread Andrei Hornoiu
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1767065/+attachment/5128197/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not 

[Desktop-packages] [Bug 1767065] ProcEnviron.txt

2018-04-27 Thread Andrei Hornoiu
apport information

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not 

[Desktop-packages] [Bug 1767065] CurrentDmesg.txt

2018-04-27 Thread Andrei Hornoiu
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1767065/+attachment/5128201/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or 

[Desktop-packages] [Bug 1767065] ProcCpuinfoMinimal.txt

2018-04-27 Thread Andrei Hornoiu
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1767065/+attachment/5128203/+files/ProcCpuinfoMinimal.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon 

[Desktop-packages] [Bug 1767065] AlsaInfo.txt

2018-04-27 Thread Andrei Hornoiu
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1767065/+attachment/5128200/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not 

[Desktop-packages] [Bug 1767065] Dependencies.txt

2018-04-27 Thread Andrei Hornoiu
apport information

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or 

[Desktop-packages] [Bug 1767065] CurrentDmesg.txt

2018-04-27 Thread Andrei Hornoiu
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1767065/+attachment/5128198/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or 

[Desktop-packages] [Bug 1767065] Dependencies.txt

2018-04-27 Thread Andrei Hornoiu
apport information

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

** Description changed:

  Hello,
  
  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can tell
  from the journalctl printout this appears immediately after either
  bluetoothd or pulsaudio crashes.
  
  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent by
  the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.
  
  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm
  
  We are running Ubuntu 16.04 LTS with the latest updated.
  
  EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
  --- 
  ApportVersion: 2.20.1-0ubuntu2.16
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 16.04
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  Package: pulseaudio 1:8.0-0ubuntu3.9
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Tags:  xenial
  Uname: Linux 4.13.0-39-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/07/2018
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: Default string
  dmi.board.name: PRIME X299-DELUXE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
+ --- 
+ ApportVersion: 2.20.1-0ubuntu2.16
+ Architecture: amd64
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC2D8p', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', 
'/dev/snd/pcmC1D8p', '/dev/snd/pcmC1D7p', '/dev/snd/controlC2', 
'/dev/snd/pcmC1D3p', '/dev/snd/controlC1', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
+ DistroRelease: Ubuntu 16.04
+ NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
+ Package: pulseaudio 1:8.0-0ubuntu3.9
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ Tags:  xenial
+ Uname: Linux 4.13.0-39-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 03/07/2018
+ 

[Desktop-packages] [Bug 1767065] Re: pulseaudio+bluetooth crash causing user to be logged out

2018-04-27 Thread Andrei Hornoiu
Another update. After truning off pulseaudio yesterday, the system
didn't crash as fast as before, but it did eventually lock up a couple
of times. The logs seems similar even without pulse, still beginning
with the bluetooth service.

After this I completely turned off bluetooth from the BIOS of the
machine. This seemed to have solved the issue until a few moments ago
when the bluetoothservice tried to start something again. I have now
disabled the bluetooth service. I hope it doesn't do anything more.

Here's how the system locks-up now:

Apr 27 09:37:26 ESS-PC26 dbus[1187]: [system] Failed to activate service 
'org.bluez': timed out
Apr 27 09:37:26 ESS-PC26 pulseaudio[2214]: [pulseaudio] bluez5-util.c: 
GetManagedObjects() failed: org.freedesktop.DBus.Error.TimedOut: Failed to 
activate service 'org.bluez': timed out
Apr 27 09:37:26 ESS-PC26 pulseaudio[1521]: [pulseaudio] bluez5-util.c: 
GetManagedObjects() failed: org.freedesktop.DBus.Error.TimedOut: Failed to 
activate service 'org.bluez': timed out

The system freezes for multiple seconds then recovers.

I've now run apport-collect and authorized it for one week. Hope this
helps.

** Tags added: apport-collected

** Description changed:

  Hello,
  
  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can tell
  from the journalctl printout this appears immediately after either
  bluetoothd or pulsaudio crashes.
  
  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent by
  the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.
  
  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm
  
  We are running Ubuntu 16.04 LTS with the latest updated.
  
- EDIT: Worth mentioning, this error happens with both Unity and Gnome as
- desktop environments.
+ EDIT: Worth mentioning, this error happens with both Unity and Gnome as 
desktop environments.
+ --- 
+ ApportVersion: 2.20.1-0ubuntu2.16
+ Architecture: amd64
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/hwC1D0', 
'/dev/snd/pcmC1D9p', '/dev/snd/pcmC1D8p', '/dev/snd/hwC2D0', 
'/dev/snd/pcmC2D9p', '/dev/snd/pcmC1D7p', '/dev/snd/pcmC1D3p', 
'/dev/snd/pcmC2D8p', '/dev/snd/pcmC2D7p', '/dev/snd/controlC1', 
'/dev/snd/pcmC2D3p', '/dev/snd/controlC2', '/dev/snd/by-path', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
+ DistroRelease: Ubuntu 16.04
+ NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
+ Package: pulseaudio 1:8.0-0ubuntu3.9
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ Tags:  xenial
+ Uname: Linux 4.13.0-39-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 03/07/2018
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 1301
+ dmi.board.asset.tag: Default string
+ dmi.board.name: PRIME X299-DELUXE
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: Default string
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Default string
+ dmi.chassis.version: Default string
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd03/07/2018:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnPRIMEX299-DELUXE:rvrRev1.xx:cvnDefaultstring:ct3:cvrDefaultstring:
+ dmi.product.family: To be filled by O.E.M.
+ dmi.product.name: System Product Name
+ dmi.product.version: System Version
+ dmi.sys.vendor: System manufacturer

-- 
You received this bug notification because you are 

[Desktop-packages] [Bug 1767065] Re: pulseaudio+bluetooth crash causing user to be logged out

2018-04-26 Thread Andrei Hornoiu
Update,

I noticed the pattern so far and turning off pulseaudio seems to have
stopped the behaviour. I obviously can't leave the system without sound,
so I'm still looking for a permanent fix.

The pattern is allways like this: 
Apr 26 15:06:07 ESS-PC26 bluetoothd[11243]: Endpoint registered: sender=:1.445 
path=/MediaEndpoint/A2DPSource
Apr 26 15:06:07 ESS-PC26 bluetoothd[11243]: Endpoint registered: sender=:1.445 
path=/MediaEndpoint/A2DPSink
Apr 26 15:06:07 ESS-PC26 pulseaudio[12799]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.of
Apr 26 15:06:07 ESS-PC26 bluetoothd[11243]: RFCOMM server failed for Headset 
Voice gateway: rfcomm_bind: Address already in use (98)
Apr 26 15:06:07 ESS-PC26 rtkit-daemon[1524]: Successfully made thread 12829 of 
process 12829 (n/a) owned by '108' high priority at nice level -11.
Apr 26 15:06:07 ESS-PC26 rtkit-daemon[1524]: Supervising 9 threads of 3 
processes of 2 users.
Apr 26 15:06:07 ESS-PC26 pulseaudio[12829]: [pulseaudio] pid.c: Daemon already 
running.
Apr 26 15:06:14 ESS-PC26 org.gtk.vfs.Daemon[12708]: A connection to the bus 
can't be made


Bluetooth tries to register a device or something, pulse fails and system loggs 
out. My current workaround is to completely turn off pulseaudio by creating  a 
~/.pulse/client.conf file with autospawn=no inside.

As I've already mentioned before, pulseaudio crashing leves no crash
log. How an I get this fixed/debugged?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome
  as desktop environments.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1767065] Re: pulseaudio+bluetooth crash causing user to be logged out

2018-04-26 Thread Andrei Hornoiu
Went, did step 1 and 2, looked in /var/crash and there was nothing.

There are no crash logs in that location for the event that just
happened.

Attached another printout of journalctl. From what I can tell the system
went in full shutdown mode and logged the user out.

** Attachment added: "journalclt printout"
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1767065/+attachment/5127533/+files/crash2.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome
  as desktop environments.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1767065] Re: pulseaudio+bluetooth crash causing user to be logged out

2018-04-26 Thread Andrei Hornoiu
** Description changed:

  Hello,
  
  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can tell
  from the journalctl printout this appears immediately after either
  bluetoothd or pulsaudio crashes.
  
  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent by
  the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.
  
  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm
  
  We are running Ubuntu 16.04 LTS with the latest updated.
+ 
+ EDIT: Worth mentioning, this error happens with both Unity and Gnome as
+ desktop environments.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

  EDIT: Worth mentioning, this error happens with both Unity and Gnome
  as desktop environments.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1767065] [NEW] pulseaudio+bluetooth crash causing user to be logged out

2018-04-26 Thread Andrei Hornoiu
Public bug reported:

Hello,

I'm a sysadmin and have gotten multiple reports recently from users of
them randomly getting logged out of their machines. From what I can tell
from the journalctl printout this appears immediately after either
bluetoothd or pulsaudio crashes.

This is happening multiple time each day for each user. It doesn't
happen to all users, but the reports seem to be getting more frequent by
the day. From what I have noticed there recently was an update for
pulseaudio and its bluetooth integration.

Here is the journalctl printout:
Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: Failed 
to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

We are running Ubuntu 16.04 LTS with the latest updated.

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

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

** No longer affects: linphone (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1767065

Title:
  pulseaudio+bluetooth crash causing user to be logged out

Status in pulseaudio package in Ubuntu:
  New

Bug description:
  Hello,

  I'm a sysadmin and have gotten multiple reports recently from users of
  them randomly getting logged out of their machines. From what I can
  tell from the journalctl printout this appears immediately after
  either bluetoothd or pulsaudio crashes.

  This is happening multiple time each day for each user. It doesn't
  happen to all users, but the reports seem to be getting more frequent
  by the day. From what I have noticed there recently was an update for
  pulseaudio and its bluetooth integration.

  Here is the journalctl printout:
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSource
  Apr 25 10:50:53 ESS-PC26 bluetoothd[1168]: Endpoint registered: sender=:1.219 
path=/MediaEndpoint/A2DPSink
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8026]: [pulseaudio] backend-ofono.c: 
Failed to register as a handsfree audio agent with ofono: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided 
by any .service files
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Successfully made thread 8042 of 
process 8042 (n/a) owned by '108' high priority at nice level -11.
  Apr 25 10:50:53 ESS-PC26 rtkit-daemon[1515]: Supervising 5 threads of 2 
processes of 1 users.
  Apr 25 10:50:53 ESS-PC26 pulseaudio[8042]: [pulseaudio] pid.c: Daemon already 
running.
  Apr 25 10:51:00 ESS-PC26 org.gtk.vfs.Daemon[7931]: A connection to the bus 
can't be made
  Apr 25 10:51:00 ESS-PC26 lightdm[7915]: pam_unix(lightdm-greeter:session): 
session closed for user lightdm

  We are running Ubuntu 16.04 LTS with the latest updated.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1616332] Re: gnome-software using hundreds of MB of memory when not in use

2018-02-05 Thread Andrei
I have 2 computers with Ubuntu 17.10 and both have the same issue:
somehow it happens, that gnome-software occupies all spare memory, I've
just killed the gnome-software process, because it occupied 9,1Gb out of
16Gb of my ram.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-software in Ubuntu.
https://bugs.launchpad.net/bugs/1616332

Title:
  gnome-software using hundreds of MB of memory when not in use

Status in gnome-software package in Ubuntu:
  Triaged

Bug description:
  It seems gnome-software is running in the background all the time. Not
  a big deal if it was lightweight, but it seems to use hundreds of MB
  (from smem output):

PID User Command Swap  USS  PSS  
RSS 
   2291 jan  /usr/bin/gnome-software --g   285436   112576   117982   
134036 

  A total of over 400MB in RAM and swap combined.

  After killing and restarting, it takes "only" a bit over 100MB.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: gnome-software 
3.20.1+git20160617.1.0440874.ubuntu-xenial-0ubuntu1~16.04.1
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Aug 24 09:45:53 2016
  InstallationDate: Installed on 2012-11-10 (1382 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  SourcePackage: gnome-software
  UpgradeStatus: Upgraded to xenial on 2016-06-19 (65 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1735594] Re: [regression] compiz crashes after Mesa upgrade

2018-01-15 Thread Andrei
When will this be available in the main repositories?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/1735594

Title:
  [regression] compiz crashes after Mesa upgrade

Status in mesa package in Ubuntu:
  Fix Committed
Status in mesa source package in Xenial:
  Fix Committed
Status in mesa source package in Artful:
  Fix Committed

Bug description:
  [Impact]
  When I use the Unity session I automatically get logged out under these 
conditions:

  When I hover with my mouse over any icon of the sidebar.
  When I press the alt key.
  When I press the super key.

  running dmesg after this unwanted logout happens I get following
  information:

  compiz[10616]: segfault at 0 ip 7fbca309feeb sp 7fff5f59a4d0
  error 4 in i965_dri.so[7fbca2af6000+7e4000]

  This is caused by a mesa upgrade, which added a patch for bug #1727401. The 
crasher is reproduced on:
  - gen4 / gen5 Intel
  - if using modesetting X driver, like when xserver-xorg-video-intel is not 
installed, or the HWE stack is installed (xserver-xorg-core-hwe-16.04 defaults 
to modesetting)

  [Test case]
  Log in to Unity, open the dash or try to log out etc. Compiz shouldn't crash.

  [Regression potential]
  The backported patches need to be tested, here for regressions and on 1727401 
that they fix the original bug (again).

  Best to test on a wide array of Intel HW:
  gen4 (965GM/GM45/G45)
  gen5 (Ironlake)
  gen6 (Sandy Bridge)
  gen7 (Bay Trail, Ivy Bridge, Haswell)
  gen8 (Braswell, Broadwell)
  gen9 (Apollo Lake, Skylake, Gemini Lake, Kaby Lake, Coffee Lake)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1737805] [NEW] package libglib2.0-0:amd64 2.48.2-0ubuntu1 failed to install/upgrade: package libglib2.0-0:amd64 is already installed and configured

2017-12-12 Thread Andrei
Public bug reported:

the instalation failed

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libglib2.0-0:amd64 2.48.2-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-103.126-generic 4.4.98
Uname: Linux 4.4.0-103-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.14
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
Date: Tue Dec 12 20:28:43 2017
DuplicateSignature:
 package:libglib2.0-0:amd64:2.48.2-0ubuntu1
 Unpacking qtdeclarative5-dialogs-plugin:amd64 (5.5.1-1ubuntu1) ...
 dpkg: error processing package uuid-runtime (--configure):
  package uuid-runtime is already installed and configured
ErrorMessage: package libglib2.0-0:amd64 is already installed and configured
InstallationDate: Installed on 2016-07-07 (523 days ago)
InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: glib2.0
Title: package libglib2.0-0:amd64 2.48.2-0ubuntu1 failed to install/upgrade: 
package libglib2.0-0:amd64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: already-installed amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to glib2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1737805

Title:
  package libglib2.0-0:amd64 2.48.2-0ubuntu1 failed to install/upgrade:
  package libglib2.0-0:amd64 is already installed and configured

Status in glib2.0 package in Ubuntu:
  New

Bug description:
  the instalation failed

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libglib2.0-0:amd64 2.48.2-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-103.126-generic 4.4.98
  Uname: Linux 4.4.0-103-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.1-0ubuntu2.14
  AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
  Architecture: amd64
  Date: Tue Dec 12 20:28:43 2017
  DuplicateSignature:
   package:libglib2.0-0:amd64:2.48.2-0ubuntu1
   Unpacking qtdeclarative5-dialogs-plugin:amd64 (5.5.1-1ubuntu1) ...
   dpkg: error processing package uuid-runtime (--configure):
package uuid-runtime is already installed and configured
  ErrorMessage: package libglib2.0-0:amd64 is already installed and configured
  InstallationDate: Installed on 2016-07-07 (523 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.3
   apt  1.2.24
  SourcePackage: glib2.0
  Title: package libglib2.0-0:amd64 2.48.2-0ubuntu1 failed to install/upgrade: 
package libglib2.0-0:amd64 is already installed and configured
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1737805/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1553685] Re: Lenovo Y700-17ISK subwoofer doesn't work

2017-09-16 Thread Andrei Manolache
Such a shame... This bug will probably never get fixed :(

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1553685

Title:
  Lenovo Y700-17ISK subwoofer doesn't work

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Lenovo Y700-17ISK (Intel Core i7-6700HQ/RAM 16GB/SSD 512GB/Nvidia GTX960M 4GB)
  Operating system: Ubuntu 16.04 (xenial-desktop-amd64.iso 04-Mar-2016, kernel 
4.4.0-10-generic, nvidia 361.28)

  Problem: Notebook subwoofer doesn't work.

  Judging from alsa-info.sh output, there is no pin declared for the bass 
output by BIOS.
  Please find a zip file attached: 'alsa-info_hdajackretask-unconnected-pins'

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
  Uname: Linux 4.4.0-10-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  aljosa 1776 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun Mar  6 11:02:21 2016
  HibernationDevice: RESUME=UUID=ac022671-63df-40ae-bffe-66fff3b35125
  InstallationDate: Installed on 2016-03-05 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160304)
  MachineType: LENOVO 80Q0
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-10-generic.efi.signed 
root=UUID=aa4325c4-4b4c-4372-b8ca-a66c3e5b2aa6 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-10-generic N/A
   linux-backports-modules-4.4.0-10-generic  N/A
   linux-firmware1.156
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/31/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: CDCN30WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: Allsparks 7A
  dmi.board.vendor: LENOVO
  dmi.board.version: NO DPK
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad Y700-17ISK
  dmi.modalias: 
dmi:bvnLENOVO:bvrCDCN30WW:bd01/31/2016:svnLENOVO:pn80Q0:pvrLenovoideapadY700-17ISK:rvnLENOVO:rnAllsparks7A:rvrNODPK:cvnLENOVO:ct10:cvrLenovoideapadY700-17ISK:
  dmi.product.name: 80Q0
  dmi.product.version: Lenovo ideapad Y700-17ISK
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1709852] [NEW] PCI/internal sound card not detected and no soud

2017-08-10 Thread Andrei
Public bug reported:

I have installed windows 10 and it was working ok sound and wifi.
When i intalled ubuntu mate or ubuntu 16.04 it dosnt work. Both HDMI and 3.5mm

ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.10.0-30.34-generic 4.10.17
Uname: Linux 4.10.0-30-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.5
Architecture: amd64
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
CurrentDesktop: MATE
Date: Thu Aug 10 14:02:02 2017
InstallationDate: Installed on 2017-08-09 (0 days ago)
InstallationMedia: Ubuntu-MATE 17.04 "Zesty Zapus" - Release amd64 (20170412)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Title: PCI/internal sound card not detected
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/27/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: YB2001
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Cherry Trail CR
dmi.board.vendor: AMI Corporation
dmi.board.version: To be filled by O.E.M.
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 35
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrYB2001:bd04/27/2017:svnBeelink:pnBT3Pro:pvrBT3ProV01:rvnAMICorporation:rnCherryTrailCR:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct35:cvrToBeFilledByO.E.M.:
dmi.product.name: BT3  Pro
dmi.product.version: BT3  Pro V01
dmi.sys.vendor: Beelink

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


** Tags: amd64 apport-bug zesty

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1709852

Title:
  PCI/internal sound card not detected   and no soud

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  I have installed windows 10 and it was working ok sound and wifi.
  When i intalled ubuntu mate or ubuntu 16.04 it dosnt work. Both HDMI and 3.5mm

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.10.0-30.34-generic 4.10.17
  Uname: Linux 4.10.0-30-generic x86_64
  ApportVersion: 2.20.4-0ubuntu4.5
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: MATE
  Date: Thu Aug 10 14:02:02 2017
  InstallationDate: Installed on 2017-08-09 (0 days ago)
  InstallationMedia: Ubuntu-MATE 17.04 "Zesty Zapus" - Release amd64 (20170412)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/27/2017
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: YB2001
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Cherry Trail CR
  dmi.board.vendor: AMI Corporation
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 35
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrYB2001:bd04/27/2017:svnBeelink:pnBT3Pro:pvrBT3ProV01:rvnAMICorporation:rnCherryTrailCR:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct35:cvrToBeFilledByO.E.M.:
  dmi.product.name: BT3  Pro
  dmi.product.version: BT3  Pro V01
  dmi.sys.vendor: Beelink

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-08-04 Thread Andrei Aldea
SD Card hasn't been fixed yet but sound works after you use the kernel I have 
compiled:
https://github.com/Grippentech/Asus-E200HA-Linux-Post-Install-Script

I'm working on making a smaller version of the kernel as the one I have
right now is quite bloated (has support for almost every device that can
be supported) but that's 2+ weeks away as I'm on vacation without the
E200ha.

Hopefully the changes that Takashi Iwai made with the rest of the guys
working on the Sound side will get merged into mainstream kernel 4.13
but that's just speculation, not based on anything. I know they're
trying to get it into mainstream tho, if Linus and the devs approve it
is another issue entirely.

I'm not aware on anybody working on the SD card side of things, I'm not
sure where I'd start either. If someone has some insight feel free to
chip in.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Fix Committed
Status in linux package in Ubuntu:
  Fix Committed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1553685] Re: Lenovo Y700-17ISK subwoofer doesn't work

2017-08-02 Thread Andrei Manolache
Any updates? The fact that I can't make the subwoofer to work
properly(at all) is the only reason I can't fully switch to Linux :(

** Also affects: alsa-driver (Fedora)
   Importance: Undecided
   Status: New

** No longer affects: alsa-driver (Fedora)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1553685

Title:
  Lenovo Y700-17ISK subwoofer doesn't work

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Lenovo Y700-17ISK (Intel Core i7-6700HQ/RAM 16GB/SSD 512GB/Nvidia GTX960M 4GB)
  Operating system: Ubuntu 16.04 (xenial-desktop-amd64.iso 04-Mar-2016, kernel 
4.4.0-10-generic, nvidia 361.28)

  Problem: Notebook subwoofer doesn't work.

  Judging from alsa-info.sh output, there is no pin declared for the bass 
output by BIOS.
  Please find a zip file attached: 'alsa-info_hdajackretask-unconnected-pins'

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-10-generic 4.4.0-10.25
  ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
  Uname: Linux 4.4.0-10-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  aljosa 1776 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun Mar  6 11:02:21 2016
  HibernationDevice: RESUME=UUID=ac022671-63df-40ae-bffe-66fff3b35125
  InstallationDate: Installed on 2016-03-05 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160304)
  MachineType: LENOVO 80Q0
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-10-generic.efi.signed 
root=UUID=aa4325c4-4b4c-4372-b8ca-a66c3e5b2aa6 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-10-generic N/A
   linux-backports-modules-4.4.0-10-generic  N/A
   linux-firmware1.156
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/31/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: CDCN30WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: Allsparks 7A
  dmi.board.vendor: LENOVO
  dmi.board.version: NO DPK
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad Y700-17ISK
  dmi.modalias: 
dmi:bvnLENOVO:bvrCDCN30WW:bd01/31/2016:svnLENOVO:pn80Q0:pvrLenovoideapadY700-17ISK:rvnLENOVO:rnAllsparks7A:rvrNODPK:cvnLENOVO:ct10:cvrLenovoideapadY700-17ISK:
  dmi.product.name: 80Q0
  dmi.product.version: Lenovo ideapad Y700-17ISK
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1525477] Re: X server crash when pasting selection using middle button in Chromium

2017-07-27 Thread Andrei Borzenkov
This is still present in 16.04.2 with X 1.19.3.


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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1525477

Title:
  X server crash when pasting selection using middle button in Chromium

Status in xorg package in Ubuntu:
  New

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  xorg 1:7.7+1ubuntu8.1

  Select any text; use middle button to paste selection in Chromium (I
  observed it pasting in URL bar or in any form text input field,
  including previous attempt to report this bug :) ). Session crashes.

  It does not happen, when either pasting into different application
  (like terminal) or wen use Copy - Paste instead of middle button.

  I noticed it about a week ago, so it must be some recent change; I use
  selection paste often enough to notice something like this before.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Dec 12 11:09:22 2015
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:062b]
  InstallationDate: Installed on 2015-07-02 (162 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. Latitude E5450
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 06J17N
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5450
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sat Dec 12 11:08:11 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1680526] Re: nVidia-340 (340.102) Kernel 4.10.0-14-generic

2017-07-20 Thread Andrei Borzenkov
Today on 16.04 HWE kernel was updated to 4.10.0-27.30~16.04.2 and nvidia
340.102-0ubuntu0.16.04.1 kernel module failed to build. Is this bug
going to be fixed?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-340 in Ubuntu.
https://bugs.launchpad.net/bugs/1680526

Title:
  nVidia-340 (340.102) Kernel 4.10.0-14-generic

Status in nvidia-graphics-drivers-340 package in Ubuntu:
  Confirmed

Bug description:
  Problem Type: Bug
  Release: 16.04.2 LTS (Xenial Xerus)
  Kernel: 4.10.0-14-generic
  Arch: x86_64
  nVidia driver: 340.102-0ubuntu0.16.04.1
  Graphics Processor: Quadro FX 4600

  Error building kernel modules nvidia-340.ko & nvidia_340_uvm.ko (DKMS)
  Attachemnt: DKMS make.log file

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-05-19 Thread Andrei Aldea
Hey Akli, please try to run it again, should work now. Sorry for the
delay but I had to have another user report this for me to see it. In
the future please e-mail me or send an issue request on the Github repo.

Also, nice username ;)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Fix Committed
Status in linux package in Ubuntu:
  Fix Committed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-04-18 Thread Andrei Aldea
You're welcome guys, glad to be of help.

@Venkat How exactly did you get microsd to work? Is this on the Asus
E200HA? I don't believe mine works as of now.

@Marco  Indeed 17.04 requires you to remove the default kernel after the
install. Does the line you added fix your sound issue?

Cheers,
Andrei

** Changed in: alsa-driver (Ubuntu)
   Status: Confirmed => Fix Committed

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Fix Committed
Status in linux package in Ubuntu:
  Fix Committed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-04-14 Thread Andrei Aldea
Can you provide the output from "uname -r"? The kernel patch should have
worked fine. I fixed a bug in the script late last night if you cloned
it then.

Right now this is only confirmed to work flawlessly (within reason) with
Ubuntu 16.10. Ubuntu 16.04 seems to have an issue with intermitent sound
cutting out, might have to do with the version of Pulseaudio installed.
As of 16.10 the version installed is 9.

I really recommend for now to run Ubuntu 16.10 and patch that. You can
get your desktop environment set up fairly easily if you prefer KDE or
Lubuntu by "sudo apt-get install lubuntu-desktop" or similar commands.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-04-13 Thread Andrei Aldea
Got sound working folks. See the repository for the new updated install
script (it's at the top of the description).

Only things not working perfectly now are Sleep (my script makes it so
the screen just shuts down to save some power) and SD card. Cheers!

https://github.com/Grippentech/Asus-E200HA-Linux-Post-Install-Script

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1525477] Re: X server crash when pasting selection using middle button in Chromium

2017-03-10 Thread Andrei Borzenkov
I cannot reproduce it with daily live after installing Chromium.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1525477

Title:
  X server crash when pasting selection using middle button in Chromium

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  xorg 1:7.7+1ubuntu8.1

  Select any text; use middle button to paste selection in Chromium (I
  observed it pasting in URL bar or in any form text input field,
  including previous attempt to report this bug :) ). Session crashes.

  It does not happen, when either pasting into different application
  (like terminal) or wen use Copy - Paste instead of middle button.

  I noticed it about a week ago, so it must be some recent change; I use
  selection paste often enough to notice something like this before.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Dec 12 11:09:22 2015
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:062b]
  InstallationDate: Installed on 2015-07-02 (162 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. Latitude E5450
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 06J17N
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5450
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sat Dec 12 11:08:11 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1638842] Re: network-manager does not manage ethernet and bluetooth interfaces when Ubuntu 16.10 is installed using chroot/netboot method

2017-03-08 Thread Andrei
I just upgraded 16.04 to 16.10 and had to search and find the solution
on my fucking smartphone instead of the PC because somebody decided to
change the way the network manager *manages* the network interfaces.
Good job, you've just wasted tens of people's hours for nothing. I hope
somebody's really proud of themselves. I swear to god, as soon as
Android manages to take a big chunk out of the Linux desktop market
share, Ubuntu goes right out of the SSD on my machine. I've just about
had enough of this crap.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1638842

Title:
  network-manager does not manage ethernet and bluetooth interfaces when
  Ubuntu 16.10 is installed using chroot/netboot method

Status in network-manager package in Ubuntu:
  Won't Fix

Bug description:
  Hello,

  I installed Ubuntu 16.10 using a chroot. I use network-manager to
  manage connections. My system is up-to-date (so I use network-manager
  1.2.4-0ubuntu1).

  Wifi works perfectly but I cannot connect to wired networks and using
  my phone's Bluetooth connection. Corresponding devices are said to be
  unmanaged by network-manager. nmcli dev outputs:

  DEVICETYPE  STATE CONNECTION 
  enp1s0ethernet  unmanaged -- 
  wlp2s0wifi  disconnected  --
  6C:9B:02:2C:EE:2C btunmanaged -- 
  hfp/org/bluez/hci0/dev_6C_9B_02_2C_EE_2C  gsm   unmanaged -- 
  loloopback  unmanaged -- 

  The following command has no effect:
  sudo nmcli dev set enp1s0 managed yes

  I can connect to a wired connection by doing:
  ifconfig enp1s0 up
  dhclient enp1s0

  There is nothing in the file /etc/network/interfaces.

  Everything works perfectly if I downgrade network-manager to this
  version: network-manager_1.2.2-0ubuntu0.16.04.3_amd64.deb
  (http://packages.ubuntu.com/xenial-updates/amd64/network-
  manager/download). I had to install libreadline6 and downgrade nplan
  to meet dependencies.

  I don't know what to join to this bug report so please ask in case
  anything is needed.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-03-02 Thread Andrei Aldea
Konstantinos what flavor and version of Linux are you using? Ubuntu and
derivatives from 16.04 and newer should detect the keyboard by default
with no issue.

Audio News: I have e-mailed the developer working on the connexant
driver that pertains to the E200HA and he said they are making progress
and he will send me some code to test by next week when he returns to
the office. I will do my best to update you guys and try to provide some
working code if I can.

In the mean-time you can follow this github page where I try to fix as
many of the issues on the E200HA as possible, I'm more likely to keep
that up to date than this forum.

https://github.com/Grippentech/Asus-E200HA-Linux-Post-Install-Script

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1563110] Re: No sound on Asus e200ha, intel sst with cx2072x codec

2017-02-24 Thread Arcan Andrei
Just made an account to post here. The fact that this bug is known for
ALMOST a year irritates me the most, I can't enjoy ubuntu or any linux
distribution in my E200HA.

On-topic: Some guy announced on other forum that they work at this bug
but it's not prioritized and it will be fixed in kernel 4.12, not
before, that's sad. I can't find the link to the forum anymore, I think
they deleted it..

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1563110

Title:
  No sound on Asus e200ha, intel sst with cx2072x codec

Status in ALSA driver:
  Unknown
Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've recently bought an Asus e200ha.
  Sound in this laptop doesn't work.
  The sound card is an intel sst with codec conexant cx2072x

  aplay -l:
  aplay: device_list:268: no soundcard found...
  in the sound setting there is a "Dummy output"
  --- 
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=7b77dc46-7d5b-4869-83dd-739980736c3a
  InstallationDate: Installed on 2016-03-28 (0 days ago)
  InstallationMedia: Linux Mint 17.3 "Rosa" - Release amd64 20160105
  Lsusb:
   Bus 002 Device 002: ID 0781:5583 SanDisk Corp. 
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 13d3:3496 IMC Networks 
   Bus 001 Device 002: ID 04f2:b54b Chicony Electronics Co., Ltd 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. E200HA
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=50fb13c0-a8cd-441d-a38b-c0295c1b9a15 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-32-generic N/A
   linux-backports-modules-3.19.0-32-generic  N/A
   linux-firmware 1.127.16
  Tags:  rosa
  Uname: Linux 3.19.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/26/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E200HA.203
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: E200HA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE200HA.203:bd11/26/2015:svnASUSTeKCOMPUTERINC.:pnE200HA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnE200HA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: E200HA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1525477] Re: X server crash when pasting selection using middle button in Chromium

2017-02-21 Thread Andrei Borzenkov
It does not look like live image includes Chromium (at least, I do not
see it in Dash search results), so unfortunately I cannot test it - the
problem so far was observed only when pasting in Chromium.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1525477

Title:
  X server crash when pasting selection using middle button in Chromium

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  xorg 1:7.7+1ubuntu8.1

  Select any text; use middle button to paste selection in Chromium (I
  observed it pasting in URL bar or in any form text input field,
  including previous attempt to report this bug :) ). Session crashes.

  It does not happen, when either pasting into different application
  (like terminal) or wen use Copy - Paste instead of middle button.

  I noticed it about a week ago, so it must be some recent change; I use
  selection paste often enough to notice something like this before.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Dec 12 11:09:22 2015
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:062b]
  InstallationDate: Installed on 2015-07-02 (162 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. Latitude E5450
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 06J17N
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5450
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sat Dec 12 11:08:11 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1525477] Re: X server crash when pasting selection using middle button in Chromium

2017-02-12 Thread Andrei Borzenkov
Still valid in Ubuntu 16.04.2 with HWE kernels and Xorg. It is beyond my
understanding why you would need BIOS version for this, but if you
insist ...

A14
12/26/2016

And no, there is of course no improvement after updating BIOS.

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1525477

Title:
  X server crash when pasting selection using middle button in Chromium

Status in xorg package in Ubuntu:
  New

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  xorg 1:7.7+1ubuntu8.1

  Select any text; use middle button to paste selection in Chromium (I
  observed it pasting in URL bar or in any form text input field,
  including previous attempt to report this bug :) ). Session crashes.

  It does not happen, when either pasting into different application
  (like terminal) or wen use Copy - Paste instead of middle button.

  I noticed it about a week ago, so it must be some recent change; I use
  selection paste often enough to notice something like this before.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Dec 12 11:09:22 2015
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:062b]
  InstallationDate: Installed on 2015-07-02 (162 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. Latitude E5450
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 06J17N
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5450
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sat Dec 12 11:08:11 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1559429] Re: Xorg crash after middle button paste in Chromium under kernel 4.4 LTS

2017-02-12 Thread Andrei Borzenkov
OMG ... again finding easy reason to not do anything ...

Yes, I updated BIOS to the last available today (12.02.2017). This is

A14
12/26/2016

And the bug is still present on 16.04.2 with HWE kernel (4.8) and Xorg
(1.18.4).

Of course you can now wait couple of months until new BIOS is released
and waive off with "BIOS outdated" again ...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1559429

Title:
  Xorg crash after middle button paste in Chromium under kernel  4.4 LTS

Status in xorg package in Ubuntu:
  New

Bug description:
  When pasting text in Chromium using middle button Xorg crashes. So far
  this happens only

  - in Chromium (I can middle paste in other programs like terminal)
  - using kernel 4.4 LTS (it does not happen using stock 3.16 kernel)

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.4.0-9.24~14.04.1~beta1-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Mar 19 12:21:17 2016
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:062b]
  InstallationDate: Installed on 2015-07-02 (261 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. Latitude E5450
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 06J17N
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5450
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.6
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.6
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sat Mar 19 12:12:47 2016
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-09-29 Thread Zisu Andrei
Hey Wolf,

I believe this has been fixed in Loki (I wouldn't know, I'm running with
oibaf's Intel drivers). The issue exsists in Freya since, I believe
there was some update to 12.04 LTS's drivers.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1568604

Title:
  Mouse cursor lost when unlocking with Intel graphics

Status in elementary OS:
  Fix Released
Status in xf86-video-intel:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  Fix Released
Status in xserver-xorg-video-intel-lts-xenial package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-intel source package in Xenial:
  Fix Released
Status in xserver-xorg-video-intel package in Debian:
  Fix Released

Bug description:
  [Relevant details]
  This bug also affects Trusty and all distributions based on it, like 
Elementary OS Freya.

  
  [Impact]
  Mouse cursor is no longer visible after VT-switch for systems with Intel 
graphics.

  Switching VTs again may cause the cursor to become visible again.
  - Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7)

  This is often observed in systems that lock the session and return to
  the greeter (including at least Xubuntu, Ubuntu Mate, and elementary
  OS).

  [Test Case]
  (Requires a lightdm-based screen locking solution)
  1. Start a new session.
  2. Lock your screen.
  2a. You are redirected to the lightdm greeter.
  3. Login/Unlock your session.
  4. Cursor is no longer visible.

  [Regression Potential]
  remains to be seen

  ===

  [Original Report]
  Cursor is visible at unlock screen either after returning from suspend or 
just locking.

  After unlocking screen cursor is invisible.

  Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7) cursor
  returns

  

  no matter if you suspend or sleep, to swap or disk when you return
  from it, the mouse cursor is missing.you can still move the mouse
  and you can see (because it highlights the window) as you move it
  around.   But the cursor is not displayed on the screen.

  i am using a lenovo W540 laptop.   I downloaded the latest beta on
  april 8 2016.

  this is xubuntu using the xfce window manager.

  the cursor does return if i log off and log back in, but that actually 
defeats the purpose of going to sleep.
  ---
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-08 (2 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  Package: light-locker 1.7.0-2ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

  _MarkForUpload: True

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-07-18 Thread Zisu Andrei
Hello,

This bug seems to be invalidly set as "Fix Released" in the Debian
tracker, since it's only been archived.


I'm guessing the launchpad bug is just trying to mirror the status of that one? 
But the issue seems to be still present.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1568604

Title:
  Mouse cursor lost when unlocking with Intel graphics

Status in elementary OS:
  Confirmed
Status in xf86-video-intel:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  Fix Released
Status in xserver-xorg-video-intel source package in Xenial:
  Confirmed
Status in xserver-xorg-video-intel package in Debian:
  Fix Released

Bug description:
  [SRU for Ubuntu 16.04]
  Package (yakkety): xserver-xorg-video-intel 2:2.99.917+git20160706-1ubuntu1
  Current (xenial): xserver-xorg-video-intel 2:2.99.917+git20160325-1ubuntu1

  [Impact]
  Mouse cursor is no longer visible after VT-switch for systems with Intel 
graphics.

  Switching VTs again may cause the cursor to become visible again.
  - Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7)

  This is often observed in systems that lock the session and return to
  the greeter (including at least Xubuntu, Ubuntu Mate, and elementary
  OS).

  [Test Case]
  (Requires a lightdm-based screen locking solution)
  1. Start a new session.
  2. Lock your screen.
  2a. You are redirected to the lightdm greeter.
  3. Login/Unlock your session.
  4. Cursor is no longer visible.

  [Debian Changelog (since 2:2.99.917+git20160325-1ubuntu1)]
   xserver-xorg-video-intel (2:2.99.917+git20160706-1ubuntu1) yakkety; 
urgency=medium
* Merge from Debian.

   xserver-xorg-video-intel (2:2.99.917+git20160706-1) unstable; urgency=medium
* New upstream snapshot.
* fix-fd-leak-when-intel-scrn-create-fails.diff, sna-let-modesetting-
  handle-gen9+.diff: Dropped as the fallback to modesetting will be
  fully handled in the xserver.
* .docs: Include a minimal xorg.conf.

   xserver-xorg-video-intel (2:2.99.917+git20160522-1ubuntu1) yakkety; 
urgency=medium
* Merge from Debian.
* install-dri3info.diff: Install dri3info with the driver, add 
libxcomposite-dev
  to build-depends.

   xserver-xorg-video-intel (2:2.99.917+git20160522-1) unstable; urgency=medium
* New upstream snapshot. (Closes: #823116)
* fix-fd-leak-when-intel-scrn-create-fails.diff: Fix a failure falling back
  on another driver when scrn create fails.

  [Regression Potential]
  Regression potential here seems minimal. However, as seen in the above Debian 
changelog, we have a new snapshot which includes several changes since March 25.

  ===

  [Original Report]
  Cursor is visible at unlock screen either after returning from suspend or 
just locking.

  After unlocking screen cursor is invisible.

  Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7) cursor
  returns

  

  no matter if you suspend or sleep, to swap or disk when you return
  from it, the mouse cursor is missing.you can still move the mouse
  and you can see (because it highlights the window) as you move it
  around.   But the cursor is not displayed on the screen.

  i am using a lenovo W540 laptop.   I downloaded the latest beta on
  april 8 2016.

  this is xubuntu using the xfce window manager.

  the cursor does return if i log off and log back in, but that actually 
defeats the purpose of going to sleep.
  ---
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-08 (2 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  Package: light-locker 1.7.0-2ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

  _MarkForUpload: True

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1568604] Re: Mouse cursor lost when unlocking with Intel graphics

2016-07-10 Thread Zisu Andrei
Hello everyone and future posters.

In order to keep the noise to a minimum, if you wish to +1 this bug, you
can use the top button which asks if this bug report is affecting you.
The switching terminals workaround has been confirmed time and again so
reiterating it adds absolutely no value.

However, it has been observed that switching the version of the Intel
graphics driver fixes the problem, so if you want to be truly helpful,
use the git bisect feature and try and identify which commit fixes the
issue.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1568604

Title:
  Mouse cursor lost when unlocking with Intel graphics

Status in elementary OS:
  Confirmed
Status in X.Org X server:
  Confirmed
Status in xf86-video-intel:
  Fix Released
Status in xserver-xorg-video-intel package in Ubuntu:
  Confirmed

Bug description:
  Cursor is visible at unlock screen either after returning from suspend
  or just locking.

  After unlocking screen cursor is invisible.

  Changing to vt1 then back to vt7 (ctrl+alt+f1 then ctrl+alt+f7) cursor
  returns

  

  no matter if you suspend or sleep, to swap or disk when you return
  from it, the mouse cursor is missing.you can still move the mouse
  and you can see (because it highlights the window) as you move it
  around.   But the cursor is not displayed on the screen.

  i am using a lenovo W540 laptop.   I downloaded the latest beta on
  april 8 2016.

  this is xubuntu using the xfce window manager.

  the cursor does return if i log off and log back in, but that actually 
defeats the purpose of going to sleep.
  ---
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-08 (2 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  Package: light-locker 1.7.0-2ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

  _MarkForUpload: True

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1593979] Re: gnome-terminal terminal minimizes when mouse is moved across the right border

2016-06-18 Thread Zisu Andrei
Hello Jens,

I see what you mean. You are right.

>From what I could gather, the bug is worthy of forwarding to GNOME. If
you'd be so kind to report it in the GNOME bugtracker with a link back
to how pantheon-terminal fixed it, we'd be greatly appreciative.

This would also allow you to stay in contact with the developers for
further information regarding the fixing on this bug.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1593979

Title:
  gnome-terminal terminal minimizes when mouse is moved across the right
  border

Status in Gala:
  Invalid
Status in gnome-terminal package in Ubuntu:
  New

Bug description:
  This is kind of a strange bug, so I have attached a short screencast.
  During the the screencast I did not press any mouse buttons, but just
  moved my mouse. It seems like that when the scroll bar is shown the
  window size gets smaller.

  I am using loki beta and the gnome-terminal version currently
  available in the repositories: GNOME Terminal 3.18.3

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1593979] Re: gnome-terminal terminal minimizes when mouse is moved across the right border

2016-06-18 Thread Zisu Andrei
** Also affects: gnome-terminal (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1593979

Title:
  gnome-terminal terminal minimizes when mouse is moved across the right
  border

Status in Gala:
  Invalid
Status in gnome-terminal package in Ubuntu:
  New

Bug description:
  This is kind of a strange bug, so I have attached a short screencast.
  During the the screencast I did not press any mouse buttons, but just
  moved my mouse. It seems like that when the scroll bar is shown the
  window size gets smaller.

  I am using loki beta and the gnome-terminal version currently
  available in the repositories: GNOME Terminal 3.18.3

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 254171] Re: Nautilus can't properly unmount FUSE file systems

2016-05-04 Thread Zisu Andrei
** Also affects: pantheon-files
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/254171

Title:
  Nautilus can't properly unmount FUSE file systems

Status in Nautilus:
  Confirmed
Status in Files:
  New
Status in nautilus package in Ubuntu:
  Triaged
Status in nautilus package in Debian:
  New

Bug description:
  Normal users can create and mount fuser-filesystems, such as encfs. By
  doing "encfs ~/somedir ~/some-other-dir", these filesystems correctly
  show up on the desktop as mounted filesystems.

  However, if you right-click and select "unmount" you get a error-
  message saying you cannot unmount the filesystem, because it does not
  appear in fstab, and you are not root.

  This is factually incorrect -- you *can* unmount the filesystem,
  assuming you're the user who mounted it in the first place, by using
  the command "fusermount -u directoryname"

  Nautilus should recognize this kind of filesystem and call the
  apropriate command for unmounting, so that it would work, instead of
  falsely claiming that you cannot unount the filesystem.

  Tested with encfs, likely to affect other similar filesystems like
  sshfs.

  Affects both Hardy and Intrepid

  Update: Tested with the latest jaunty-alpha, still present.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 360970] Re: Multi-monitor - When using two displays with different vertical resolution, icons get lost on the shorter display

2016-04-26 Thread Zisu Andrei
I believe it's in the way multi-screen functionality is bolted on to X11

On Tue, 26 Apr 2016, 08:26 Brad, <360...@bugs.launchpad.net> wrote:

> It would make sense to fix in a LTS release. If the issue is with Gnome
> then I don't see how Wayland/Mir will fix it.
>
> --
> You received this bug notification because you are subscribed to a
> duplicate bug report (1159470).
> https://bugs.launchpad.net/bugs/360970
>
> Title:
>   Multi-monitor - When using two displays with different vertical
>   resolution, icons get lost on the shorter display
>
> Status in Ayatana Design:
>   Fix Committed
> Status in Nautilus:
>   Confirmed
> Status in Unity:
>   Confirmed
> Status in nautilus package in Ubuntu:
>   Triaged
>
> Bug description:
>   On a Multi-Monitor setup, where the extended desktop is non-
>   rectangular in shape (ie. the displays are of a different resolution,
>   and their top/bottom/left/right edges are not aligned), desktop icons
>   are placed in non-accessible areas when arranged using the menu option
>   'View-Organise Desktop by Name' from the Desktop.
>
>   See the attached image. The top three desktop items are not
>   accessible, and can only be seen in the Workspace Switcher.
>
>   Please also refer to the 'Non-Rectangular Extended Desktops' section of
> the Multi-Monitor spec:
>
> https://docs.google.com/a/canonical.com/document/d/1aHvJ-iIw-59bXTYBmIhQqEx0za2h9jpFE_RhZ2VOvJc/edit#bookmark=id.yph05n82oeff
>
>   --
>
>   [Test Case]
>   1. Set up two monitors side by side
>   2. Set left monitor to a smaller vertical resolution than the right
> monitor
>   3. for i in $(seq 1 50) ; do touch file-${i} ; done
>   4. Right click on desktop to bring up context menu, then 'Organize
> Desktop by Name'
>   5. Should be: All icons from file-1 to file-50 (or as many fit on the
> screen) should be visible
>Is: Icons for files at the top and/or bottom of the arranged
> columns are not visible on any display
>   6. xrandr --output LVDS1 --off
>   7. Verify icons are arranged properly on the external monitor
>   8. Set up monitors one over the other
>   9. Verify icons are displayed in long columns spanning both displays
> with all icons shown
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ayatana-design/+bug/360970/+subscriptions
>

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/360970

Title:
  Multi-monitor - When using two displays with different vertical
  resolution, icons get lost on the shorter display

Status in Ayatana Design:
  Fix Committed
Status in Nautilus:
  Confirmed
Status in Unity:
  Confirmed
Status in nautilus package in Ubuntu:
  Triaged

Bug description:
  On a Multi-Monitor setup, where the extended desktop is non-
  rectangular in shape (ie. the displays are of a different resolution,
  and their top/bottom/left/right edges are not aligned), desktop icons
  are placed in non-accessible areas when arranged using the menu option
  'View-Organise Desktop by Name' from the Desktop.

  See the attached image. The top three desktop items are not
  accessible, and can only be seen in the Workspace Switcher.

  Please also refer to the 'Non-Rectangular Extended Desktops' section of the 
Multi-Monitor spec:
  
https://docs.google.com/a/canonical.com/document/d/1aHvJ-iIw-59bXTYBmIhQqEx0za2h9jpFE_RhZ2VOvJc/edit#bookmark=id.yph05n82oeff

  --

  [Test Case]
  1. Set up two monitors side by side
  2. Set left monitor to a smaller vertical resolution than the right monitor
  3. for i in $(seq 1 50) ; do touch file-${i} ; done
  4. Right click on desktop to bring up context menu, then 'Organize Desktop by 
Name'
  5. Should be: All icons from file-1 to file-50 (or as many fit on the screen) 
should be visible
   Is: Icons for files at the top and/or bottom of the arranged columns are 
not visible on any display
  6. xrandr --output LVDS1 --off
  7. Verify icons are arranged properly on the external monitor
  8. Set up monitors one over the other
  9. Verify icons are displayed in long columns spanning both displays with all 
icons shown

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 360970] Re: Multi-monitor - When using two displays with different vertical resolution, icons get lost on the shorter display

2016-04-25 Thread Zisu Andrei
I think it's a wontfix. It will go away with Wayland/Mir.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/360970

Title:
  Multi-monitor - When using two displays with different vertical
  resolution, icons get lost on the shorter display

Status in Ayatana Design:
  Fix Committed
Status in Nautilus:
  Confirmed
Status in Unity:
  Confirmed
Status in nautilus package in Ubuntu:
  Triaged

Bug description:
  On a Multi-Monitor setup, where the extended desktop is non-
  rectangular in shape (ie. the displays are of a different resolution,
  and their top/bottom/left/right edges are not aligned), desktop icons
  are placed in non-accessible areas when arranged using the menu option
  'View-Organise Desktop by Name' from the Desktop.

  See the attached image. The top three desktop items are not
  accessible, and can only be seen in the Workspace Switcher.

  Please also refer to the 'Non-Rectangular Extended Desktops' section of the 
Multi-Monitor spec:
  
https://docs.google.com/a/canonical.com/document/d/1aHvJ-iIw-59bXTYBmIhQqEx0za2h9jpFE_RhZ2VOvJc/edit#bookmark=id.yph05n82oeff

  --

  [Test Case]
  1. Set up two monitors side by side
  2. Set left monitor to a smaller vertical resolution than the right monitor
  3. for i in $(seq 1 50) ; do touch file-${i} ; done
  4. Right click on desktop to bring up context menu, then 'Organize Desktop by 
Name'
  5. Should be: All icons from file-1 to file-50 (or as many fit on the screen) 
should be visible
   Is: Icons for files at the top and/or bottom of the arranged columns are 
not visible on any display
  6. xrandr --output LVDS1 --off
  7. Verify icons are arranged properly on the external monitor
  8. Set up monitors one over the other
  9. Verify icons are displayed in long columns spanning both displays with all 
icons shown

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1558722] [NEW] bbswitch-dkms 0.7-2ubuntu1: bbswitch kernel module failed to build

2016-03-19 Thread Andrei Borzenkov
Public bug reported:

This was autogenerated when I tested LTS 4.4 kernel.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: bbswitch-dkms 0.7-2ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-9.24~14.04.1~beta1-generic 4.4.3
Uname: Linux 4.4.0-9-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
DKMSKernelVersion: 4.4.0-9-generic
Date: Thu Mar 17 20:58:04 2016
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
InstallationDate: Installed on 2015-07-02 (259 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
PackageVersion: 0.7-2ubuntu1
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.11
SourcePackage: bbswitch
Title: bbswitch-dkms 0.7-2ubuntu1: bbswitch kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to bbswitch in Ubuntu.
https://bugs.launchpad.net/bugs/1558722

Title:
  bbswitch-dkms 0.7-2ubuntu1: bbswitch kernel module failed to build

Status in bbswitch package in Ubuntu:
  New

Bug description:
  This was autogenerated when I tested LTS 4.4 kernel.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: bbswitch-dkms 0.7-2ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-9.24~14.04.1~beta1-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  DKMSKernelVersion: 4.4.0-9-generic
  Date: Thu Mar 17 20:58:04 2016
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  InstallationDate: Installed on 2015-07-02 (259 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  PackageVersion: 0.7-2ubuntu1
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.5
   apt  1.0.1ubuntu2.11
  SourcePackage: bbswitch
  Title: bbswitch-dkms 0.7-2ubuntu1: bbswitch kernel module failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1559429] [NEW] Xorg crash after middle button paste in Chromium under kernel 4.4 LTS

2016-03-19 Thread Andrei Borzenkov
Public bug reported:

When pasting text in Chromium using middle button Xorg crashes. So far
this happens only

- in Chromium (I can middle paste in other programs like terminal)
- using kernel 4.4 LTS (it does not happen using stock 3.16 kernel)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 4.4.0-9.24~14.04.1~beta1-generic 4.4.3
Uname: Linux 4.4.0-9-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Sat Mar 19 12:21:17 2016
DistUpgraded: Fresh install
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:062b]
InstallationDate: Installed on 2015-07-02 (261 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
MachineType: Dell Inc. Latitude E5450
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/19/2015
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A07
dmi.board.name: 06J17N
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.name: Latitude E5450
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.6
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.6
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.6
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Sat Mar 19 12:12:47 2016
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id1133 
 vendor LGD
xserver.version: 2:1.15.1-0ubuntu2.7

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


** Tags: amd64 apport-bug compiz-0.9 crash trusty ubuntu

** Attachment added: "Crash report"
   
https://bugs.launchpad.net/bugs/1559429/+attachment/4604152/+files/_usr_bin_Xorg.0.crash

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1559429

Title:
  Xorg crash after middle button paste in Chromium under kernel  4.4 LTS

Status in xorg package in Ubuntu:
  New

Bug description:
  When pasting text in Chromium using middle button Xorg crashes. So far
  this happens only

  - in Chromium (I can middle paste in other programs like terminal)
  - using kernel 4.4 LTS (it does not happen using stock 3.16 kernel)

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.4.0-9.24~14.04.1~beta1-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Mar 19 12:21:17 2016
  DistUpgraded: Fresh install
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel 

[Desktop-packages] [Bug 1130252] Re: Stop music on hibernate or suspend

2016-02-16 Thread Zisu Andrei
** Changed in: pulseaudio (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1130252

Title:
  Stop music on hibernate or suspend

Status in pulseaudio package in Ubuntu:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Steps:
  1. Play music via Spotify or Banshee.
  2. Suspend or hibernate without stopping the music
  3. Turn your system back on

  The  expected behaviour:
  Music is stopped, you can open your laptop safely.

  The actual behaviour:
  Music continues to play as it was before hibernation. It might be unwanted 
when someone is sleeping or you're turning your laptop on before a lecture 
starts.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: unity 6.12.0-0ubuntu0.2
  Uname: Linux 3.8.0-030800rc4-generic i686
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  Date: Tue Feb 19 09:35:18 2013
  InstallationDate: Installed on 2012-11-05 (106 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
  MarkForUpload: True
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1311257] Re: Wifi cannot connect or unstable after suspend 14.04

2016-02-09 Thread Zisu Andrei
Hello everyone.

I had a similar issue on elementary OS freya when coming out of suspend
with Intel Wireless-N 7260.

I could patch it with "nmcli nm sleep false" , however, it seems like
uninstalling laptop-mode-tools fixed it definitively.

Also, this fixed another issue: after I issues a suspend command, it
took 10-20 seconds until the laptop actually turned off. Now it turns
off instantly.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-nettool in Ubuntu.
https://bugs.launchpad.net/bugs/1311257

Title:
  Wifi cannot connect or unstable after suspend 14.04

Status in gnome-nettool package in Ubuntu:
  Confirmed

Bug description:
  I've tried every solution, such as
  1. editing /etc/pm/config.d to add
   SUSPEND_MODULES="iwlwifi"
  2. editing /etc/modprobe/d/wilwifi.conf to add:
  options iwlwifi bt_coex_active=0
  options iwlwifi 11n_disable=1
  3. running: sudo rmmod iwlwifi && sudo modprobe iwlwifi
  4. stopping, starting, or restarting Network Manager

  Nothing seems to work.  When I had 13.10, my wifi worked without a
  problem, but once I erased it and installed 14.04, wifi will not
  connect after suspend.  Ethernet works fine.  The only way I've found
  to resolve this is to restart my computer.  I have a Lenovo T420.  If
  I try to connect after suspend, it shows the Wifi Networks, tries to
  connect, and  says "Disconnected..." every time.

  ~$ sudo apt-get update; sudo apt-get install hwinfo grep rfkill; sudo lshw -C 
network; rfkill list; sudo iwlist scan | egrep -i 'chan|ssid'; cat 
/etc/network/interfaces; cat /etc/lsb-release; lspci -nnk | grep -iA2 net; 
lsusb; nmcli nm status; sudo lshw -short; uname -a; dmesg | egrep 
'02:00|80211|acx|at76|ath|b43|bcm|brcm|CX|eth|ipw|ireless|irmware|isl|lbtf|orinoco|ndiswrapper|NPE|ound|p54|prism|rror|rtl|rt2|rt3|rt5|rt6|rt7|usb|witch|wl';sudo
 dmidecode|egrep 'anufact|roduct|erial|elease'; iwconfig; cat /etc/modprobe.d/* 
| egrep 
'80211|acx|at76|ath|b43|bcm|brcm|CX|eth|ipw|irmware|isl|lbtf|orinoco|ndiswrapper|NPE|p54|prism|rtl|rt2|rt3|rt6|rt7|wmi|witch|wl';
 cat /var/lib/NetworkManager/NetworkManager.state; sudo hwinfo --netcard ; ps 
-aux|egrep 'wpa|icd|etwork'; netstat -rn ; cat /etc/resolv.conf; ls -lia /boot; 
sudo lsmod
  Ign http://dl.google.com stable InRelease
  Hit http://dl.google.com stable Release.gpg
  Hit http://dl.google.com stable Release
  Hit http://repository.spotify.com stable InRelease
  Ign http://us.archive.ubuntu.com trusty InRelease
  Hit http://dl.google.com stable/main amd64 Packages
  Hit http://dl.google.com stable/main i386 Packages
  Ign http://extras.ubuntu.com trusty InRelease
  Hit http://repository.spotify.com stable/non-free amd64 Packages
  Ign http://security.ubuntu.com trusty-security InRelease
  Ign http://us.archive.ubuntu.com trusty-updates InRelease
  Hit http://repository.spotify.com stable/non-free i386 Packages
  Hit http://extras.ubuntu.com trusty Release.gpg
  Hit http://security.ubuntu.com trusty-security Release.gpg
  Ign http://us.archive.ubuntu.com trusty-backports InRelease
  Hit http://extras.ubuntu.com trusty Release
  Ign http://us.archive.ubuntu.com trusty-proposed InRelease
  Hit http://security.ubuntu.com trusty-security Release
  Hit http://extras.ubuntu.com trusty/main Sources
  Ign http://dl.google.com stable/main Translation-en_US
  Hit http://us.archive.ubuntu.com trusty Release.gpg
  Ign http://dl.google.com stable/main Translation-en
  Hit http://security.ubuntu.com trusty-security/main Sources
  Hit http://extras.ubuntu.com trusty/main amd64 Packages
  Hit http://us.archive.ubuntu.com trusty-updates Release.gpg
  Hit http://security.ubuntu.com trusty-security/restricted Sources
  Hit http://extras.ubuntu.com trusty/main i386 Packages
  Hit http://us.archive.ubuntu.com trusty-backports Release.gpg
  Hit http://security.ubuntu.com trusty-security/universe Sources
  Hit http://us.archive.ubuntu.com trusty-proposed Release.gpg
  Hit http://security.ubuntu.com trusty-security/multiverse Sources
  Hit http://us.archive.ubuntu.com trusty Release
  Ign http://ppa.launchpad.net trusty InRelease
  Hit http://security.ubuntu.com trusty-security/main amd64 Packages
  Hit http://us.archive.ubuntu.com trusty-updates Release
  Ign http://ppa.launchpad.net trusty InRelease
  Hit http://security.ubuntu.com trusty-security/restricted amd64 Packages
  Ign http://repository.spotify.com stable/non-free Translation-en_US
  Hit http://us.archive.ubuntu.com trusty-backports Release
  Ign http://ppa.launchpad.net trusty InRelease
  Ign http://repository.spotify.com stable/non-free Translation-en
  Hit http://security.ubuntu.com trusty-security/universe amd64 Packages
  Hit http://us.archive.ubuntu.com trusty-proposed Release
  Ign http://ppa.launchpad.net trusty InRelease
  Hit http://security.ubuntu.com trusty-security/multiverse amd64 Packages
  Hit http://us.archive.ubuntu.com trusty/main Sources
  Ign 

[Desktop-packages] [Bug 1527884] Re: Firefox 43.0: Downloads fail

2015-12-19 Thread Dan Andrei
I see the same behaviour on Ubuntu 14.04 LTS.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1527884

Title:
  Firefox 43.0: Downloads fail

Status in firefox package in Ubuntu:
  Confirmed

Bug description:
  My firefox just got updated to 43.0. Starting with the update, all
  downloads fail. There is no file selection dialogue any more, just the
  blue arrow appears - and the downloads list says "Failed". I have
  tried the same on a clean profile with no add-ons, and downloads still
  fail.

  In the browser console, I get the following error message on each download 
attempt:
  [Exception... "Component returned failure code: 0x80070057 
(NS_ERROR_ILLEGAL_VALUE) [nsIAnnotationService.setPageAnnotation]"  nsresult: 
"0x80070057 (NS_ERROR_ILLEGAL_VALUE)"  location: "JS frame :: 
resource://app/modules/DownloadsCommon.jsm :: onDownloadChanged :: line 735"  
data: no]

  Steps to reproduce:
  Klick on any downloadable file on a website (e.g. ZIP oder PDF).

  Result:
  Blue arrow appears, downloads list says "failed" below the download filename. 
The file will not download.

  Expected result:
  File dialogue (with appropriate settings). File being downloaded from the 
internet.

  Versions:
  Kubuntu 14.04.3 LTS
  Firefox 43.0+build1-0ubuntu0.14.04.1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1525477] [NEW] X server crash when pasting selection using middle button in Chromium

2015-12-12 Thread Andrei Borzenkov
Public bug reported:

Description:Ubuntu 14.04.3 LTS
Release:14.04

xorg 1:7.7+1ubuntu8.1

Select any text; use middle button to paste selection in Chromium (I
observed it pasting in URL bar or in any form text input field,
including previous attempt to report this bug :) ). Session crashes.

It does not happen, when either pasting into different application (like
terminal) or wen use Copy - Paste instead of middle button.

I noticed it about a week ago, so it must be some recent change; I use
selection paste often enough to notice something like this before.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
Uname: Linux 4.2.0-19-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Sat Dec 12 11:09:22 2015
DistUpgraded: Fresh install
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:062b]
InstallationDate: Installed on 2015-07-02 (162 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
MachineType: Dell Inc. Latitude E5450
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=d06b07a3-04bf-46e1-8cae-5f2592c69192 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 video.use_native_backlight=1 
video.use_native_backlight=1 crashkernel=384M-:128M vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/19/2015
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A07
dmi.board.name: 06J17N
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/19/2015:svnDellInc.:pnLatitudeE5450:pvr01:rvnDellInc.:rn06J17N:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.name: Latitude E5450
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.6
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Sat Dec 12 11:08:11 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id1133 
 vendor LGD
xserver.version: 2:1.15.1-0ubuntu2.7

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


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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1525477

Title:
  X server crash when pasting selection using middle button in Chromium

Status in xorg package in Ubuntu:
  New

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  xorg 1:7.7+1ubuntu8.1

  Select any text; use middle button to paste selection in Chromium (I
  observed it pasting in URL bar or in any form text input field,
  including previous attempt to report this bug :) ). Session crashes.

  It does not happen, when either pasting into different application
  (like terminal) or wen use Copy - Paste instead of middle button.

  I noticed it about a week ago, so it must be some recent change; I use
  selection paste often enough to notice something like this before.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-19.23~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: 

[Desktop-packages] [Bug 1501847] Re: nautilus crashed with signal 5 in _XReply()

2015-10-01 Thread Andrei Savici
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1501847

Title:
  nautilus crashed with signal 5 in _XReply()

Status in nautilus package in Ubuntu:
  New

Bug description:
  Dragging files in nautilus, or text in gedit causes those programs to
  stop. I am using Ubuntu 15.10 beta

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: nautilus 1:3.14.2-0ubuntu10
  ProcVersionSignature: Ubuntu 4.2.0-10.12-generic 4.2.0
  Uname: Linux 4.2.0-10-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Thu Oct  1 13:26:44 2015
  ExecutablePath: /usr/bin/nautilus
  GsettingsChanges:
   
  InstallationDate: Installed on 2015-09-03 (27 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150903)
  JournalErrors:
   No journal files were found.
   -- No entries --
  ProcCmdline: /usr/bin/nautilus --gapplication-service
  ProcEnviron:
   XDG_RUNTIME_DIR=
   SHELL=/bin/bash
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  Signal: 5
  SourcePackage: nautilus
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   _XReply () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   XShapeGetRectangles () from /usr/lib/x86_64-linux-gnu/libXext.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
  Title: nautilus crashed with signal 5 in _XReply()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: sudo users

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1270257] Re: NetworkManager failed to function after suspend and resume

2015-08-14 Thread Andrei
This issue has been present again with systemd on Ubuntu 15.04. I have a
clean install of 15.04 on a Lenovo Y50-70 with an Intel Wi-Fi AC 7260
and I need to run sudo service network-manager restart in order to
bring back internet access. This issue was not present with 14.10 and
before. I first found the solution on
http://ubuntuforums.org/showthread.php?t=2223566 . It would be great if
this would be fixed, as it is quite annoying. But then again, this is
OSS, so I have no hopes for this issue.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1270257

Title:
  NetworkManager failed to function after suspend and resume

Status in network-manager package in Ubuntu:
  Invalid

Bug description:
  NetworkManager failed to function after resuming from suspend. The
  indicator applet in the Mac OS style menu bar showed the empty
  quarter-circle, and clicking Enable Networking didn't change the
  menu options or the style of the applet. Running sudo service
  network-manager restart brought back functionality.

  $ dpkg -l systemd* logind*
  Desired=Unknown/Install/Remove/Purge/Hold
  | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
  |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
  ||/ Name   Version  Architecture Description
  
+++-==---==
  un  logind none(no description 
available)
  un  systemdnone(no description 
available)
  ii  systemd-services   204-0ubuntu19.1  amd64systemd runtime 
services
  ii  systemd-shim   6-0ubuntu0.13.10 amd64shim for systemd

  
  Thanks

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: network-manager 0.9.8.0-0ubuntu22
  ProcVersionSignature: Ubuntu 3.11.0-15.23-generic 3.11.10
  Uname: Linux 3.11.0-15-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  Date: Fri Jan 17 10:08:48 2014
  IfupdownConfig:
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2012-10-18 (456 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
  IpRoute:
   default via 192.168.1.1 dev wlan0  proto static 
   192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.14  metric 
9 
   192.168.122.0/24 dev virbr0  proto kernel  scope link  src 192.168.122.1
  MarkForUpload: True
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to saucy on 2013-11-06 (72 days ago)
  modified.conffile..etc.NetworkManager.NetworkManager.conf: [modified]
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 2013-11-05T17:49:23
  nmcli-dev:
   DEVICE TYPE  STATE DBUS-PATH 
 
   wlan0  802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/1  
   eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
   running 0.9.8.0connected   enabled   enabled 
enabledenabled disabled

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1292113] Re: CTRL+ALT+T - shortcut to open Terminal is does not work

2015-06-08 Thread Andrei
Indeed, issue persists in 15.04 and restarting lightdm with sudo
service lightdm restart fixes it. Reopen the issue as it is not fixed
yet.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1292113

Title:
  CTRL+ALT+T - shortcut to open Terminal is does not work

Status in GNOME Terminal:
  New
Status in gnome-terminal package in Ubuntu:
  Fix Released

Bug description:
  The global shortcut CTRL+ALT+T to open a new terminal windows is missing in 
Ubuntu since 14.04
  Please reenable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gnome-terminal 3.6.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Mar 13 18:01:32 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2013-12-10 (92 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  ProcEnviron:
   LANGUAGE=de_DE
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-terminal
  UpgradeStatus: Upgraded to trusty on 2014-03-07 (6 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1461850] [NEW] Unable to Log In to Gnome 3.16 Desktop

2015-06-04 Thread Andrei Poenaru
Public bug reported:

I installed Gnome 3.16 from the gnome-staging PPA on my Ubuntu 15.04
(previously updated from 14.04), but I am unable to log into the Gnome
desktop, both on a cold boot or after logging out from Unity.

What I expect to happen:
Selecting gdm as the default dekstop manager takes me to the Gnome greeter when 
starting my machine.
If lightdm is selected, I am able to log into Gnome by choosing the appropriate 
session at the Unity greeter.

What actually happened:
With gdm selected, the system boots to a black screen with only the mouse 
cursor showing. It is not frozen (I can move the mouse and switch to TTY), but 
no other GUI element loads.
With lightdm selected, I am able to log into Unity, but if I choose Gnome I get 
a black screen for a couple of seconds after typing my password, then I'm back 
at the login screen.

I have tried the following suggestions I found online, but to no avail:
  - remove nvidia-* packages
  - remove the .Xauthority file
  - manually restart gdm/lightdm
  - manually stop gdm then run startx
  - do a dist-upgrade

 The only potentially useful log info I can find is in 
/var/log/gdm/(null)-greeter.log:
(WW) xf86CloseConsole: KDSETMODE failed: Input/output error
(WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
(EE) 
Fatal server error:
(EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
(EE) 
(EE) 
Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
(EE) Please also check the log file at /var/log/Xorg.0.log for additional 
information.
(EE) 
(EE) 
(EE) Backtrace:
(EE) 0: /usr/bin/X (xorg_backtrace+0x56) [0x7f13a8d92556]
(EE) 1: /usr/bin/X (0x7f13a8bdf000+0x1b7749) [0x7f13a8d96749]
(EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f13a68a5000+0x352f0) 
[0x7f13a68da2f0]
(EE) 3: ?? [0x7f13ab7f08c0]
(EE) 
(EE) Segmentation fault at address 0x7f13ab7f08c0
(EE) 
FatalError re-entered, aborting
(EE) Caught signal 11 (Segmentation fault). Server aborting

There is no error message in /var/log/Xorg.0.log.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
Uname: Linux 3.19.0-18-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  346.59  Tue Mar 31 14:10:31 
PDT 2015
 GCC version:  gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13)
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
CurrentDesktop: KDE
Date: Thu Jun  4 12:10:36 2015
DistUpgraded: 2015-06-01 01:05:16,590 DEBUG enabling apt cron job
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-precise-amd64-20130203-1
DistroCodename: vivid
DistroVariant: kubuntu
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:0616]
InstallationDate: Installed on 2014-03-16 (444 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20130203-13:50
MachineType: Dell Inc. Vostro 5470
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-18-generic 
root=UUID=fababcc7-f83d-4082-9cc1-89aea60c2768 ro quiet splash
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to vivid on 2015-05-31 (3 days ago)
dmi.bios.date: 12/06/2013
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A05
dmi.board.name: 0G5M5F
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd12/06/2013:svnDellInc.:pnVostro5470:pvr:rvnDellInc.:rn0G5M5F:rvrA00:cvnDellInc.:ct8:cvr0.1:
dmi.product.name: Vostro 5470
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2
version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
xserver.bootTime: Tue Jun  2 17:59:42 2015
xserver.configfile: /etc/X11/xorg.conf
xserver.errors:
 intel(G1): [drm] failed to set drm interface version: Permission denied [13].
 intel(G1): Failed to claim DRM device.
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id5238 
 vendor CMN
xserver.version: 

[Desktop-packages] [Bug 1461695] [NEW] RTL8723BE wifi connection drops out every 20-30 min

2015-06-03 Thread Andrei
Public bug reported:

so i have to reboot very often.
Besides, the internet is very slow comparing with windows

Please help to solve the problem


Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10


00:00.0 Host bridge [0600]: Intel Corporation Haswell-ULT DRAM Controller 
[8086:0a04] (rev 0b)
Subsystem: Lenovo Device [17aa:3978]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR- INTx-
Latency: 0
Capabilities: [e0] Vendor Specific Information: Len=0c ?

00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT 
Integrated Graphics Controller [8086:0a16] (rev 0b) (prog-if 00 [VGA 
controller])
Subsystem: Lenovo Device [17aa:3978]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 59
Region 0: Memory at b000 (64-bit, non-prefetchable) [size=4M]
Region 2: Memory at a000 (64-bit, prefetchable) [size=256M]
Region 4: I/O ports at 4000 [size=64]
Expansion ROM at unassigned [disabled]
Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
Address: fee0f00c  Data: 41a1
Capabilities: [d0] Power Management version 2
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [a4] PCI Advanced Features
AFCap: TP+ FLR+
AFCtrl: FLR-
AFStatus: TP-
Kernel driver in use: i915

00:03.0 Audio device [0403]: Intel Corporation Haswell-ULT HD Audio Controller 
[8086:0a0c] (rev 0b)
Subsystem: Lenovo Device [17aa:3978]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 61
Region 0: Memory at b051 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit-
Address: fee0f00c  Data: 41c1
Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag- RBE-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- 
Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- 
TransPend-
Kernel driver in use: snd_hda_intel

00:14.0 USB controller [0c03]: Intel Corporation Lynx Point-LP USB xHCI HC 
[8086:9c31] (rev 04) (prog-if 30 [XHCI])
Subsystem: Lenovo Device [17aa:3978]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 57
Region 0: Memory at b050 (64-bit, non-prefetchable) [size=64K]
Capabilities: [70] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA 
PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [80] MSI: Enable+ Count=1/8 Maskable- 64bit+
Address: fee0f00c  Data: 4181
Kernel driver in use: xhci_hcd

00:16.0 Communication controller [0780]: Intel Corporation Lynx Point-LP HECI 
#0 [8086:9c3a] (rev 04)
Subsystem: Lenovo Device [17aa:3978]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 60
Region 0: Memory at b0518000 (64-bit, non-prefetchable) [size=32]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA 
PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
Address: fee0f00c  Data: 41b1
Kernel 

[Desktop-packages] [Bug 1424013] Re: Compiz high CPU and UI freeze on NVIDIA after fix for #269904 in trusty-updates

2015-05-26 Thread Andrei Levin
After todays update I also find this bug. Fortunately after several
hours of search I find this bug report. (Geforce 7300 GS). Disabling X11
Sync objects solve the problem

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/1424013

Title:
  Compiz high CPU and UI freeze on NVIDIA after fix for #269904 in
  trusty-updates

Status in Compiz:
  Fix Committed
Status in Compiz 0.9.11 series:
  Fix Committed
Status in compiz package in Ubuntu:
  Fix Released
Status in compiz source package in Trusty:
  Fix Released

Bug description:
  [ Impact ]

  Immediately after the fix for #269904 landed in trusty-updates via
  compiz 1:0.9.11.3+14.04.20150122-0ubuntu1, my 14.04 machine with an
  NVIDIA card and using the nvidia-304 driver became unusable -- symtoms
  include compiz process high CPU (100%), UI freeze right after logging
  in (machine still up, reachable via SSH from the network), and a flood
  of these messages on the system log.

  [ Test Case ]

  Requires a GeForce 6150SE or similar integrated GPU from nVidia.
  Problem manifests immediately on login.

  [ Regression Potential ]

  The fix involves a specific hardware blacklist.  Anticipated
  regressions include fixed support for the specific hard in future
  nVidia driver releases and potentially additional unidentified
  hardware affected by this bug needing to be added to the blacklist.

  Note that there is a manual workaround to the problem consisting of
  disabling the X11 Sync feature through CCSM.

  [ Other Info ]

  This fix was cherry-picked from the Ubuntu Vivid Vervet development
  release where it has been in regular use for some weeks.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1441592] [NEW] Unity restart broken (Vivid)

2015-04-08 Thread Alin Andrei
Public bug reported:

Restarting Unity no longer works properly in Ubuntu 15.04 Vivid Vervet.

Steps to reproduce: press ALT + F2, type Unity and press ENTER.

What should occur: Unity should be restarted without logging out the
user.

What actually occurs: the LightDM login screen greeter shows up (so the
user is logged out) instead of just restarting Unity.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: unity 7.3.2+15.04.20150330-0ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-12.12-generic 3.19.3
Uname: Linux 3.19.0-12-generic x86_64
ApportVersion: 2.17-0ubuntu1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CurrentDesktop: Unity
Date: Wed Apr  8 14:50:13 2015
InstallationDate: Installed on 2015-03-11 (28 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1441592

Title:
  Unity restart broken (Vivid)

Status in unity package in Ubuntu:
  New

Bug description:
  Restarting Unity no longer works properly in Ubuntu 15.04 Vivid
  Vervet.

  Steps to reproduce: press ALT + F2, type Unity and press ENTER.

  What should occur: Unity should be restarted without logging out the
  user.

  What actually occurs: the LightDM login screen greeter shows up (so
  the user is logged out) instead of just restarting Unity.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity 7.3.2+15.04.20150330-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-12.12-generic 3.19.3
  Uname: Linux 3.19.0-12-generic x86_64
  ApportVersion: 2.17-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Wed Apr  8 14:50:13 2015
  InstallationDate: Installed on 2015-03-11 (28 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1387219] Re: Mouse pointer disappears and cursor stops blinking

2015-03-19 Thread Andrei
So is anybody going to do something about this any time soon? Or do we
have to wait another 4 years for this to be fixed?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gedit in Ubuntu.
https://bugs.launchpad.net/bugs/1387219

Title:
  Mouse pointer disappears and cursor stops blinking

Status in GtkSourceView Widget:
  Expired
Status in anjuta package in Ubuntu:
  Confirmed
Status in gedit package in Ubuntu:
  Confirmed
Status in ibus package in Ubuntu:
  Confirmed

Bug description:
  Open gedit.
  Notice the cursor is blinking.
  Type a few lines of text.
  Highilight some of the text.
  Press CTRLc to cut the text.
  Notice that the mouse ponter is invisible while hovering over the gedit 
window. Notice that the gedit cursor is no longer blinking.

  ***Workaround***
  sudo apt-get install ibus-gtk

   $ uname -a
  Linux XYZ 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 
x86_64 x86_64 x86_64 GNU/Linux
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 14.10
  Release:  14.10
  Codename: utopic

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1433657] [NEW] Add PolicyKit/pkexec support

2015-03-18 Thread Alin Andrei
Public bug reported:

Please add PolicyKit/pkexec support for Gedit. gksu is no longer
installed by default (and wasn't updated since 2009) and pkexec needs a
policy file (attached to this bug report) to work with Gedit:
http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
by-default/284717#284717

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

** Attachment added: org.gnome.gedit.policy
   
https://bugs.launchpad.net/bugs/1433657/+attachment/4349053/+files/org.gnome.gedit.policy

** Description changed:

  Please add PolicyKit/pkexec support for Gedit. gksu is no longer
- installed by default and pkexec needs a policy file (attached to this
- bug report) to work with Gedit: http://askubuntu.com/questions/284306
- /why-is-gksu-no-longer-installed-by-default/284717#284717
+ installed by default (and wasn't updated since 2009) and pkexec needs a
+ policy file (attached to this bug report) to work with Gedit:
+ http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
+ by-default/284717#284717

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gedit in Ubuntu.
https://bugs.launchpad.net/bugs/1433657

Title:
  Add PolicyKit/pkexec support

Status in gedit package in Ubuntu:
  New

Bug description:
  Please add PolicyKit/pkexec support for Gedit. gksu is no longer
  installed by default (and wasn't updated since 2009) and pkexec needs
  a policy file (attached to this bug report) to work with Gedit:
  http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
  by-default/284717#284717

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1433659] [NEW] Add PolicyKit/pkexec support

2015-03-18 Thread Alin Andrei
Public bug reported:

Please add PolicyKit/pkexec support for Nautilus. gksu is no longer
installed by default (and wasn't updated since 2009) and pkexec needs a
policy file (attached to this bug report) to work with Nautilus:
http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
by-default/284717#284717

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

** Attachment added: org.gnome.nautilus.policy
   
https://bugs.launchpad.net/bugs/1433659/+attachment/4349054/+files/org.gnome.nautilus.policy

** Description changed:

  Please add PolicyKit/pkexec support for Nautilus. gksu is no longer
- installed by default and pkexec needs a policy file (attached to this
- bug report) to work with Nautilus: http://askubuntu.com/questions/284306
- /why-is-gksu-no-longer-installed-by-default/284717#284717
+ installed by default (and wasn't updated since 2009) and pkexec needs a
+ policy file (attached to this bug report) to work with Nautilus:
+ http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
+ by-default/284717#284717

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1433659

Title:
  Add PolicyKit/pkexec support

Status in nautilus package in Ubuntu:
  New

Bug description:
  Please add PolicyKit/pkexec support for Nautilus. gksu is no longer
  installed by default (and wasn't updated since 2009) and pkexec needs
  a policy file (attached to this bug report) to work with Nautilus:
  http://askubuntu.com/questions/284306/why-is-gksu-no-longer-installed-
  by-default/284717#284717

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1431270] [NEW] Typo in Nautilus ubuntu_revert_no_wallpaper.patch

2015-03-12 Thread Alin Andrei
Public bug reported:

The Nautilus ubuntu_revert_no_wallpaper.patch patch has a typo: on
lines 651 and 652, NAUTILUS is spelled as NAUTILIUS and this is not in
the comments but actual code.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: nautilus 1:3.14.2-0ubuntu4
ProcVersionSignature: Ubuntu 3.19.0-8.8-generic 3.19.1
Uname: Linux 3.19.0-8-generic x86_64
ApportVersion: 2.16.2-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Mar 12 12:37:13 2015
GsettingsChanges:

InstallationDate: Installed on 2015-03-11 (0 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.xdg.autostart.nautilus.autostart.desktop: [modified]
mtime.conffile..etc.xdg.autostart.nautilus.autostart.desktop: 
2015-03-12T11:55:47.812873

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


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

** Description changed:

- The Nautilus ubuntu_revert_no_wallpaper.patch has a typo: on lines 651
- and 652, NAUTILUS is spelled as NAUTILIUS and this is not in the
- comments but actual code.
+ The Nautilus ubuntu_revert_no_wallpaper.patch patch has a typo: on
+ lines 651 and 652, NAUTILUS is spelled as NAUTILIUS and this is not in
+ the comments but actual code.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: nautilus 1:3.14.2-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-8.8-generic 3.19.1
  Uname: Linux 3.19.0-8-generic x86_64
  ApportVersion: 2.16.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Mar 12 12:37:13 2015
  GsettingsChanges:
-  
+ 
  InstallationDate: Installed on 2015-03-11 (0 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.xdg.autostart.nautilus.autostart.desktop: [modified]
  mtime.conffile..etc.xdg.autostart.nautilus.autostart.desktop: 
2015-03-12T11:55:47.812873

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1431270

Title:
  Typo in Nautilus ubuntu_revert_no_wallpaper.patch

Status in nautilus package in Ubuntu:
  New

Bug description:
  The Nautilus ubuntu_revert_no_wallpaper.patch patch has a typo: on
  lines 651 and 652, NAUTILUS is spelled as NAUTILIUS and this is not
  in the comments but actual code.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: nautilus 1:3.14.2-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-8.8-generic 3.19.1
  Uname: Linux 3.19.0-8-generic x86_64
  ApportVersion: 2.16.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Mar 12 12:37:13 2015
  GsettingsChanges:

  InstallationDate: Installed on 2015-03-11 (0 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.xdg.autostart.nautilus.autostart.desktop: [modified]
  mtime.conffile..etc.xdg.autostart.nautilus.autostart.desktop: 
2015-03-12T11:55:47.812873

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1354498] Re: Switcher Icons emblem (count) is too small

2015-03-02 Thread Andrei
** Changed in: unity/7.2
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1354498

Title:
  Switcher Icons emblem (count) is too small

Status in Unity:
  Fix Released
Status in Unity 7.2 series:
  Fix Released
Status in unity package in Ubuntu:
  Fix Released
Status in unity source package in Trusty:
  Fix Released

Bug description:
  [ Impact]

  The emblem size does not change as the icon size is adjusted.

  [ Test Case ]

  (1) Use the System Settings  Displays  Scale for menus and title
  bars slider to adjust the Swicther icon size.

  (2) Observe the size of the badge.  It should scale with the icon
  size.

  [ Regression Potential

  Any code change to the Unity desktop shell has the potential to
  introduce new crashers or lockers.

  [ Other Info ]

  The Unity SRU fix for Ubuntu 14.04 LTS was cherry-picked from Ubuntu
  14.10 where it has been in production use for some time with no
  apparent regressions.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1426691] [NEW] nvidia-331 331.113-0ubuntu0.1: nvidia-331 kernel module failed to build

2015-02-28 Thread Andrei
Public bug reported:

Just came out of nowhere.

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: nvidia-331 331.113-0ubuntu0.1
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
DKMSKernelVersion: 3.16.0-31-generic
Date: Sat Feb 28 14:38:32 2015
InstallationDate: Installed on 2014-11-01 (118 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
PackageVersion: 331.113-0ubuntu0.1
SourcePackage: nvidia-graphics-drivers-331
Title: nvidia-331 331.113-0ubuntu0.1: nvidia-331 kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package third-party-packages utopic

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331 in Ubuntu.
https://bugs.launchpad.net/bugs/1426691

Title:
  nvidia-331 331.113-0ubuntu0.1: nvidia-331 kernel module failed to
  build

Status in nvidia-graphics-drivers-331 package in Ubuntu:
  New

Bug description:
  Just came out of nowhere.

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: nvidia-331 331.113-0ubuntu0.1
  ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
  Uname: Linux 3.16.0-31-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8.2
  Architecture: amd64
  DKMSKernelVersion: 3.16.0-31-generic
  Date: Sat Feb 28 14:38:32 2015
  InstallationDate: Installed on 2014-11-01 (118 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  PackageVersion: 331.113-0ubuntu0.1
  SourcePackage: nvidia-graphics-drivers-331
  Title: nvidia-331 331.113-0ubuntu0.1: nvidia-331 kernel module failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1391857]

2015-01-23 Thread Andrei ILIE
CONFIRMING for cairo v1.13.1

$ cat /etc/system-release  uname -a
Fedora release 20 (Heisenbug)
Linux localhost.localdomain 3.17.7-200.fc20.x86_64 #1 SMP Wed Dec 17 03:35:33 
UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

$ yum info installed cairo
Loaded plugins: langpacks, priorities, refresh-packagekit
Installed Packages
Name: cairo
Arch: x86_64
Version : 1.13.1
Release : 0.1.git337ab1f.fc20
Size: 1.7 M
Repo: installed
From repo   : fedora
Summary : A 2D graphics library
URL : http://cairographics.org
License : LGPLv2 or MPLv1.1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to cairo in Ubuntu.
https://bugs.launchpad.net/bugs/1391857

Title:
  libcairo segfaults when rendering video streams, e.g. youtube videos
  in webkit based browsers

Status in Cairo Graphics Library:
  Confirmed
Status in cairo package in Ubuntu:
  Fix Released
Status in midori package in Ubuntu:
  Confirmed
Status in webkitgtk package in Ubuntu:
  Confirmed
Status in cairo source package in Trusty:
  Fix Released

Bug description:
  * Impact
  The libcairo version (1.13) that is used on Ubuntu 14.04 contains a bug the 
leads to a segementation fault (see 
https://bugs.freedesktop.org/show_bug.cgi?id=81699) when rendering certain 
video streams.  E.g. webkit based browser that render Youtube videos will 
eventually crash.

  * Testcase
  try to open https://www.youtube.com/watch?v=b1XGPvbWn0A in midori browser

  * Regression potential
  check that GTK and webkit still work correctly (no segfault, no rendering 
issues)

  ---

  The bug has been fixed upstream, libcairo 1.14 does not segfault, so
  it would be very desirable that the libcairo2 package in Ubuntu gets
  updated to version 1.14 of libcairo.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1411620] [NEW] Unity requires restart after enabling always-show-menus or LIM

2015-01-16 Thread Alin Andrei
Public bug reported:

Unity requires restart after enabling always-show-menus or LIM. When I
first tested the always-show-menus (about 3-4 weeks ago, by using
Marco's branch), I don't remember it requiring a restart.

Also, enabling LIM in Ubuntu 14.04 and 14.10 doesn't require restarting
Unity but it does with the latest Unity in Ubuntu 15.04 Vivid Vervet.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: unity 7.3.1+15.04.20150115-0ubuntu1
ProcVersionSignature: Ubuntu 3.18.0-9.10-generic 3.18.2
Uname: Linux 3.18.0-9-generic i686
ApportVersion: 2.15.1-0ubuntu2
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CurrentDesktop: Unity
Date: Fri Jan 16 13:23:00 2015
InstallationDate: Installed on 2015-01-16 (0 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha i386 (20150116)
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 vivid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1411620

Title:
  Unity requires restart after enabling always-show-menus or LIM

Status in unity package in Ubuntu:
  New

Bug description:
  Unity requires restart after enabling always-show-menus or LIM. When
  I first tested the always-show-menus (about 3-4 weeks ago, by using
  Marco's branch), I don't remember it requiring a restart.

  Also, enabling LIM in Ubuntu 14.04 and 14.10 doesn't require
  restarting Unity but it does with the latest Unity in Ubuntu 15.04
  Vivid Vervet.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity 7.3.1+15.04.20150115-0ubuntu1
  ProcVersionSignature: Ubuntu 3.18.0-9.10-generic 3.18.2
  Uname: Linux 3.18.0-9-generic i686
  ApportVersion: 2.15.1-0ubuntu2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Fri Jan 16 13:23:00 2015
  InstallationDate: Installed on 2015-01-16 (0 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha i386 (20150116)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409255] [NEW] Popovici

2015-01-10 Thread Andrei
Public bug reported:

nu pot sa reinoiesc sistema ubuntu deorece imi da asa eroare Не удалось
получить

Не удалось получить обновление. Возможно, возникла проблема в сети.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: nautilus 1:2.32.0-0ubuntu1.3
ProcVersionSignature: Ubuntu 2.6.35-25.44-generic 2.6.35.10
Uname: Linux 2.6.35-25-generic i686
Architecture: i386
Date: Sat Jan 10 14:00:38 2015
ExecutablePath: /usr/bin/nautilus
InstallationMedia: Custom Live CD - Release i386
ProcEnviron:
 LANG=ru_RU.utf8
 SHELL=/bin/bash
SourcePackage: nautilus

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


** Tags: apport-bug i386 maverick

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1409255

Title:
  Popovici

Status in nautilus package in Ubuntu:
  New

Bug description:
  nu pot sa reinoiesc sistema ubuntu deorece imi da asa eroare Не
  удалось получить

  Не удалось получить обновление. Возможно, возникла проблема в сети.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: nautilus 1:2.32.0-0ubuntu1.3
  ProcVersionSignature: Ubuntu 2.6.35-25.44-generic 2.6.35.10
  Uname: Linux 2.6.35-25-generic i686
  Architecture: i386
  Date: Sat Jan 10 14:00:38 2015
  ExecutablePath: /usr/bin/nautilus
  InstallationMedia: Custom Live CD - Release i386
  ProcEnviron:
   LANG=ru_RU.utf8
   SHELL=/bin/bash
  SourcePackage: nautilus

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   3   >