[Ubuntu-x-swat] [Bug 1844613] Re: package nvidia-dkms-390 390.129-0ubuntu1 failed to install/upgrade: installed nvidia-dkms-390 package post-installation script subprocess returned error exit status 1

2019-09-18 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package nvidia-dkms-390 390.129-0ubuntu1 failed to install/upgrade:
  installed nvidia-dkms-390 package post-installation script subprocess
  returned error exit status 10

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844613] [NEW] package nvidia-dkms-390 390.129-0ubuntu1 failed to install/upgrade: installed nvidia-dkms-390 package post-installation script subprocess returned error exit status

2019-09-18 Thread josem
Public bug reported:

each time the pc starts, the error message is shown, but if i close that
i can work w/o any problem

ProblemType: Package
DistroRelease: Ubuntu 19.10
Package: nvidia-dkms-390 390.129-0ubuntu1
ProcVersionSignature: Ubuntu 5.3.0-10.11-generic 5.3.0-rc8
Uname: Linux 5.3.0-10-generic x86_64
ApportVersion: 2.20.11-0ubuntu7
Architecture: amd64
Date: Tue Sep 17 23:42:51 2019
ErrorMessage: installed nvidia-dkms-390 package post-installation script 
subprocess returned error exit status 10
InstallationDate: Installed on 2018-02-09 (587 days ago)
InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
Python3Details: /usr/bin/python3.7, Python 3.7.4+, python3-minimal, 3.7.3-1
PythonDetails: /usr/bin/python2.7, Python 2.7.16+, python-minimal, 2.7.16-1
RelatedPackageVersions:
 dpkg 1.19.7ubuntu2
 apt  1.9.3
SourcePackage: nvidia-graphics-drivers-390
Title: package nvidia-dkms-390 390.129-0ubuntu1 failed to install/upgrade: 
installed nvidia-dkms-390 package post-installation script subprocess returned 
error exit status 10
UpgradeStatus: Upgraded to eoan on 2019-09-18 (0 days ago)

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


** Tags: amd64 apport-package eoan

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

Title:
  package nvidia-dkms-390 390.129-0ubuntu1 failed to install/upgrade:
  installed nvidia-dkms-390 package post-installation script subprocess
  returned error exit status 10

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 633406] Re: Display freeze when changing kwin effects settings if effects are active

2019-09-18 Thread Bug Watch Updater
Launchpad has imported 9 comments from the remote bug at
https://bugs.freedesktop.org/show_bug.cgi?id=30220.

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


On 2010-09-16T00:52:32+00:00 John Stanley wrote:

Created attachment 38733
patch to Change windowExistsErrorHandler to drawableExistsErrorHandler in 
glxcmds.c 

There currently exists a situation in KDE-4.5.X where at certain
moments, a current context does not have a valid associated Window, but
does have a valid pixmap drawable. If, at such a moment, a call is made
to glXDestroyContext() on another no longer needed non-current context,
glXDestroyContext() releases pixmap-associated resources that are in use
by the current context, resulting in system hangs.

A possible patch to remedy this changes BadWindow to BadDrawable in
windowExistsErrorHandler of Mesa-7.8.3-rc1.old/src/glx/glxcmds.c (I have also 
attached the patch; does this make sense?):


--- Mesa-7.8.3-rc1.old/src/glx/glxcmds.c2010-09-16 03:14:45.074000414 
-0400
+++ Mesa-7.8.3-rc1.new/src/glx/glxcmds.c2010-09-16 03:37:43.932000358 
-0400
@@ -68,14 +68,14 @@

 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)

-static Bool windowExistsFlag;
+static Bool drawableExistsFlag;
 static int
-windowExistsErrorHandler(Display * dpy, XErrorEvent * xerr)
+drawableExistsErrorHandler(Display * dpy, XErrorEvent * xerr)
 {
(void) dpy;

-   if (xerr->error_code == BadWindow) {
-  windowExistsFlag = GL_FALSE;
+   if (xerr->error_code == BadDrawable) {
+  drawableExistsFlag = GL_FALSE;
}
return 0;
 }
@@ -98,13 +98,13 @@
/* Set no-op error handler so Xlib doesn't bail out if the windows
 * has alreay been destroyed on the server. */
XSync(dpy, GL_FALSE);
-   oldXErrorHandler = XSetErrorHandler(windowExistsErrorHandler);
+   oldXErrorHandler = XSetErrorHandler(drawableExistsErrorHandler);

if (__glxHashFirst(sc->drawHash, , (void *) ) == 1) {
   do {
- windowExistsFlag = GL_TRUE;
+ drawableExistsFlag = GL_TRUE;
  XGetWindowAttributes(dpy, draw, ); /* dummy request */
- if (!windowExistsFlag) {
+ if (!drawableExistsFlag) {
 /* Destroy the local drawable data, if the drawable no
longer exists in the Xserver */
 (*pdraw->destroyDrawable) (pdraw);

Reply at:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/633406/comments/8


On 2010-09-17T02:59:04+00:00 John Stanley wrote:

Created attachment 38759
Patch to fix GarbageCollectDRIDrawables for Pixmaps w/o a Window

Reply at:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/633406/comments/14


On 2010-09-18T02:41:33+00:00 mint-fm2-dev wrote:

Please do look into this bug as it affects a wide range of hardware and
a lot of users as is evidenced in the KDE bug report.

If more information is required to implement or find the proper
resolution, I will try to provide what I can.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/633406/comments/19


On 2010-09-22T00:42:15+00:00 Chris Halse Rogers wrote:

The code posted applies to mesa 7.8, but has been removed in 7.9.  It would be 
useful to
a) Test if this bug still applies to mesa 7.9 from git (I've been told it 
applies to a snapshot from 2010/09/09, but haven't been able to reproduce it 
myself).

and if it still occurs, then
b) Port the patch to the 7.9 branch & master.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/633406/comments/22


On 2010-09-22T03:44:59+00:00 John Stanley wrote:

(In reply to comment #3)
> The code posted applies to mesa 7.8, but has been removed in 7.9.  It would be
> useful to
> a) Test if this bug still applies to mesa 7.9 from git (I've been told it
> applies to a snapshot from 2010/09/09, but haven't been able to reproduce it
> myself).
> 
> and if it still occurs, then
> b) Port the patch to the 7.9 branch & master.

Thanks for looking at this. So, do I understand correctly, that the
patch is ok on Mesa-7.8.x ? If this is so, then everyone now using
KDE-4.5.x (and presumably Mesa-7.8.x), can use it.

I'd love also to test it out on 7.9 -- but I tried several weeks ago and
ran into trouble -- I think with the intel driver (xf86-video-
intel-2.12.0). I'll try again and get back to you on this.

Have you or anyone had a chance to look at BUG #30217 ?

thanks again

Reply at:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/633406/comments/23


[Ubuntu-x-swat] [Bug 1843927] ProcInterrupts.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289588/+files/ProcInterrupts.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DpkgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289581/+files/DpkgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Xrandr.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Xrandr.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289576/+files/Xrandr.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289586/+files/ProcCpuinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmDisplayLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289582/+files/LightdmDisplayLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289574/+files/XorgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfoMinimal.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DkmsStatus.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DkmsStatus.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289580/+files/DkmsStatus.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLogOld.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289592/+files/XorgLogOld.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] BootLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "BootLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289578/+files/BootLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcModules.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289589/+files/ProcModules.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lspci.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289584/+files/Lspci.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] UdevDb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289590/+files/UdevDb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] UdevDb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289573/+files/UdevDb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] CurrentDmesg.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289583/+files/LightdmLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lsusb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289585/+files/Lsusb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] xdpyinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "xdpyinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289594/+files/xdpyinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcInterrupts.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289571/+files/ProcInterrupts.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcModules.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289572/+files/ProcModules.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLogOld.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289575/+files/XorgLogOld.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289591/+files/XorgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Xrandr.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Xrandr.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289593/+files/Xrandr.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] xdpyinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "xdpyinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289577/+files/xdpyinfo.txt

** Description changed:

  I have recently installed Ubuntu 19.04 on an ASUS TUF Gaming FX505DY
  laptop.  The laptop has a AMD Ryzen 5 with Radeon Vega 8 processor.
  
  No warnings where raised during the installation process regarding
  problems with the graphics driver.  When I connected a HDMI connected
  monitor I found it did not work.
  
  I have attached the graphics driver logs
  
  ==
  cat /var/log/gpu-manager.log
  
  log_file: /var/log/gpu-manager.log
  last_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  new_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  can't access /run/u-d-c-nvidia-was-loaded file
  can't access /opt/amdgpu-pro/bin/amdgpu-pro-px
  Looking for nvidia modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Looking for amdgpu modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Is nvidia loaded? no
  Was nvidia unloaded? no
  Is nvidia blacklisted? no
  Is intel loaded? no
  Is radeon loaded? no
  Is radeon blacklisted? no
  Is amdgpu loaded? no
  Is amdgpu blacklisted? no
  Is amdgpu versioned? no
  Is amdgpu pro stack? no
  Is nouveau loaded? no
  Is nouveau blacklisted? no
  Is nvidia kernel module available? no
  Is amdgpu kernel module available? no
  Vendor/Device Id: 1002:67ef
  BusID "PCI:1@0:0:0"
  Is boot vga? no
  Error: can't access /sys/bus/pci/devices/:01:00.0/driver
  The device is not bound to any driver.
  Vendor/Device Id: 1002:15d8
  BusID "PCI:5@0:0:0"
  Is boot vga? yes
  Error: can't access /sys/bus/pci/devices/:05:00.0/driver
  The device is not bound to any driver.
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Does it require offloading? no
  last cards number = 2
  Has amd? yes
  Has intel? no
  Has nvidia? no
  How many cards? 2
  Has the system changed? No
  Unsupported discrete card vendor: 1002
  Nothing to do
  
  
==  
sudo lshw -C display
*-display UNCLAIMED   
 description: Display controller
 product: Baffin [Radeon RX 460/560D / Pro 450/455/460/555/560]
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:01:00.0
 version: e5
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi cap_list
 configuration: latency=0
 resources: memory:e000-efff memory:f000-f01f 
ioport:f000(size=256) memory:fea0-fea3 memory:fea4-fea5
*-display UNCLAIMED
 description: VGA compatible controller
 product: Picasso
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:05:00.0
 version: c2
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi msix vga_controller bus_master cap_list
 configuration: latency=0
 resources: memory:c000-cfff memory:d000-d01f 
ioport:c000(size=256) memory:fe50-fe57
  
  
  
*
  QUESTIONS
  
  1.  Why is the problem with unsupported drivers not flagged during the
  installation process?  The default driver does work for the laptop's
  monitor, but will not drive a second monitor attached to the HDMI port
  
  2.  I have seen reference to a general purpose AMD graphics driver, but
  there is no reference to this driver being supported on Ubuntu 19.04.
  If I went ahead and attempted to install the general purpose graphics
  driver, how would I back it out if it did not work.
  
  I have raised this issue as a "question", but I think it is probably a bug 
but I could not find out how to raise a bug associated with a lack of device 
drivers.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  CompositorRunning: None
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroRelease: Ubuntu 19.04
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.271+bdcom, 5.0.0-25-generic, x86_64: installed
   bcmwl, 6.30.223.271+bdcom, 5.0.0-27-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-25-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-27-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Subsystem: ASUSTeK Computer Inc. Baffin [Radeon RX 460/560D / Pro 
450/455/460/555/555X/560/560X] [1043:17c1]
   Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c2) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Picasso [1043:17c1]
  InstallationDate: Installed on 2019-07-26 (54 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco 

[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289569/+files/ProcCpuinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfoMinimal.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lsusb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289568/+files/Lsusb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lspci.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289567/+files/Lspci.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289566/+files/LightdmLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmDisplayLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289565/+files/LightdmDisplayLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DkmsStatus.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DkmsStatus.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289563/+files/DkmsStatus.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] CurrentDmesg.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DpkgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289564/+files/DpkgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Re: HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

2019-09-18 Thread Dave Power
apport information

** Description changed:

  I have recently installed Ubuntu 19.04 on an ASUS TUF Gaming FX505DY
  laptop.  The laptop has a AMD Ryzen 5 with Radeon Vega 8 processor.
  
  No warnings where raised during the installation process regarding
  problems with the graphics driver.  When I connected a HDMI connected
  monitor I found it did not work.
  
  I have attached the graphics driver logs
  
  ==
  cat /var/log/gpu-manager.log
  
  log_file: /var/log/gpu-manager.log
  last_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  new_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  can't access /run/u-d-c-nvidia-was-loaded file
  can't access /opt/amdgpu-pro/bin/amdgpu-pro-px
  Looking for nvidia modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Looking for amdgpu modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Is nvidia loaded? no
  Was nvidia unloaded? no
  Is nvidia blacklisted? no
  Is intel loaded? no
  Is radeon loaded? no
  Is radeon blacklisted? no
  Is amdgpu loaded? no
  Is amdgpu blacklisted? no
  Is amdgpu versioned? no
  Is amdgpu pro stack? no
  Is nouveau loaded? no
  Is nouveau blacklisted? no
  Is nvidia kernel module available? no
  Is amdgpu kernel module available? no
  Vendor/Device Id: 1002:67ef
  BusID "PCI:1@0:0:0"
  Is boot vga? no
  Error: can't access /sys/bus/pci/devices/:01:00.0/driver
  The device is not bound to any driver.
  Vendor/Device Id: 1002:15d8
  BusID "PCI:5@0:0:0"
  Is boot vga? yes
  Error: can't access /sys/bus/pci/devices/:05:00.0/driver
  The device is not bound to any driver.
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Does it require offloading? no
  last cards number = 2
  Has amd? yes
  Has intel? no
  Has nvidia? no
  How many cards? 2
  Has the system changed? No
  Unsupported discrete card vendor: 1002
  Nothing to do
  
  
==  
sudo lshw -C display
*-display UNCLAIMED   
 description: Display controller
 product: Baffin [Radeon RX 460/560D / Pro 450/455/460/555/560]
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:01:00.0
 version: e5
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi cap_list
 configuration: latency=0
 resources: memory:e000-efff memory:f000-f01f 
ioport:f000(size=256) memory:fea0-fea3 memory:fea4-fea5
*-display UNCLAIMED
 description: VGA compatible controller
 product: Picasso
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:05:00.0
 version: c2
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi msix vga_controller bus_master cap_list
 configuration: latency=0
 resources: memory:c000-cfff memory:d000-d01f 
ioport:c000(size=256) memory:fe50-fe57
  
  
  
*
  QUESTIONS
  
  1.  Why is the problem with unsupported drivers not flagged during the
  installation process?  The default driver does work for the laptop's
  monitor, but will not drive a second monitor attached to the HDMI port
  
  2.  I have seen reference to a general purpose AMD graphics driver, but
  there is no reference to this driver being supported on Ubuntu 19.04.
  If I went ahead and attempted to install the general purpose graphics
  driver, how would I back it out if it did not work.
  
  I have raised this issue as a "question", but I think it is probably a bug 
but I could not find out how to raise a bug associated with a lack of device 
drivers.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  CompositorRunning: None
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroRelease: Ubuntu 19.04
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.271+bdcom, 5.0.0-25-generic, x86_64: installed
   bcmwl, 6.30.223.271+bdcom, 5.0.0-27-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-25-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-27-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Subsystem: ASUSTeK Computer Inc. Baffin [Radeon RX 460/560D / Pro 
450/455/460/555/555X/560/560X] [1043:17c1]
   Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c2) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Picasso [1043:17c1]
  InstallationDate: Installed on 2019-07-26 (54 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: ASUSTeK COMPUTER INC. TUF Gaming FX505DY_FX505DY
  

[Ubuntu-x-swat] [Bug 1843927] XorgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289553/+files/XorgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLogOld.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289554/+files/XorgLogOld.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] xdpyinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "xdpyinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289556/+files/xdpyinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcModules.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289551/+files/ProcModules.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Xrandr.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Xrandr.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289555/+files/Xrandr.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcInterrupts.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289550/+files/ProcInterrupts.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289548/+files/ProcCpuinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfoMinimal.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] UdevDb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289552/+files/UdevDb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lsusb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289547/+files/Lsusb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289545/+files/LightdmLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DpkgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289543/+files/DpkgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lspci.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289546/+files/Lspci.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] CurrentDmesg.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmDisplayLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289544/+files/LightdmDisplayLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] UdevDb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289536/+files/UdevDb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] BootLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "BootLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289541/+files/BootLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] xdpyinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "xdpyinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289540/+files/xdpyinfo.txt

** Description changed:

  I have recently installed Ubuntu 19.04 on an ASUS TUF Gaming FX505DY
  laptop.  The laptop has a AMD Ryzen 5 with Radeon Vega 8 processor.
  
  No warnings where raised during the installation process regarding
  problems with the graphics driver.  When I connected a HDMI connected
  monitor I found it did not work.
  
  I have attached the graphics driver logs
  
  ==
  cat /var/log/gpu-manager.log
  
  log_file: /var/log/gpu-manager.log
  last_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  new_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  can't access /run/u-d-c-nvidia-was-loaded file
  can't access /opt/amdgpu-pro/bin/amdgpu-pro-px
  Looking for nvidia modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Looking for amdgpu modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Is nvidia loaded? no
  Was nvidia unloaded? no
  Is nvidia blacklisted? no
  Is intel loaded? no
  Is radeon loaded? no
  Is radeon blacklisted? no
  Is amdgpu loaded? no
  Is amdgpu blacklisted? no
  Is amdgpu versioned? no
  Is amdgpu pro stack? no
  Is nouveau loaded? no
  Is nouveau blacklisted? no
  Is nvidia kernel module available? no
  Is amdgpu kernel module available? no
  Vendor/Device Id: 1002:67ef
  BusID "PCI:1@0:0:0"
  Is boot vga? no
  Error: can't access /sys/bus/pci/devices/:01:00.0/driver
  The device is not bound to any driver.
  Vendor/Device Id: 1002:15d8
  BusID "PCI:5@0:0:0"
  Is boot vga? yes
  Error: can't access /sys/bus/pci/devices/:05:00.0/driver
  The device is not bound to any driver.
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Does it require offloading? no
  last cards number = 2
  Has amd? yes
  Has intel? no
  Has nvidia? no
  How many cards? 2
  Has the system changed? No
  Unsupported discrete card vendor: 1002
  Nothing to do
  
  
==  
sudo lshw -C display
*-display UNCLAIMED   
 description: Display controller
 product: Baffin [Radeon RX 460/560D / Pro 450/455/460/555/560]
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:01:00.0
 version: e5
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi cap_list
 configuration: latency=0
 resources: memory:e000-efff memory:f000-f01f 
ioport:f000(size=256) memory:fea0-fea3 memory:fea4-fea5
*-display UNCLAIMED
 description: VGA compatible controller
 product: Picasso
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:05:00.0
 version: c2
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi msix vga_controller bus_master cap_list
 configuration: latency=0
 resources: memory:c000-cfff memory:d000-d01f 
ioport:c000(size=256) memory:fe50-fe57
  
  
  
*
  QUESTIONS
  
  1.  Why is the problem with unsupported drivers not flagged during the
  installation process?  The default driver does work for the laptop's
  monitor, but will not drive a second monitor attached to the HDMI port
  
  2.  I have seen reference to a general purpose AMD graphics driver, but
  there is no reference to this driver being supported on Ubuntu 19.04.
  If I went ahead and attempted to install the general purpose graphics
  driver, how would I back it out if it did not work.
  
  I have raised this issue as a "question", but I think it is probably a bug 
but I could not find out how to raise a bug associated with a lack of device 
drivers.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  CompositorRunning: None
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroRelease: Ubuntu 19.04
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.271+bdcom, 5.0.0-25-generic, x86_64: installed
   bcmwl, 6.30.223.271+bdcom, 5.0.0-27-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-25-generic, x86_64: installed
   rtl8821ce, 1.0.0, 5.0.0-27-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Subsystem: ASUSTeK Computer Inc. Baffin [Radeon RX 460/560D / Pro 
450/455/460/555/555X/560/560X] [1043:17c1]
   Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c2) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Picasso [1043:17c1]
  InstallationDate: Installed on 2019-07-26 (54 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco 

[Ubuntu-x-swat] [Bug 1843927] Xrandr.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Xrandr.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289539/+files/Xrandr.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289537/+files/XorgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] XorgLogOld.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289538/+files/XorgLogOld.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289529/+files/LightdmLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfo.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289532/+files/ProcCpuinfo.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcInterrupts.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289534/+files/ProcInterrupts.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] LightdmDisplayLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289528/+files/LightdmDisplayLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] DpkgLog.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289527/+files/DpkgLog.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcModules.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1843927/+attachment/5289535/+files/ProcModules.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lspci.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289530/+files/Lspci.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] ProcCpuinfoMinimal.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Lsusb.txt

2019-09-18 Thread Dave Power
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1843927/+attachment/5289531/+files/Lsusb.txt

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1843927] Re: HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

2019-09-18 Thread Dave Power
apport information

** Tags added: apport-collected ubuntu

** Description changed:

  I have recently installed Ubuntu 19.04 on an ASUS TUF Gaming FX505DY
  laptop.  The laptop has a AMD Ryzen 5 with Radeon Vega 8 processor.
  
  No warnings where raised during the installation process regarding
  problems with the graphics driver.  When I connected a HDMI connected
  monitor I found it did not work.
  
  I have attached the graphics driver logs
  
  ==
  cat /var/log/gpu-manager.log
  
  log_file: /var/log/gpu-manager.log
  last_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  new_boot_file: /var/lib/ubuntu-drivers-common/last_gfx_boot
  can't access /run/u-d-c-nvidia-was-loaded file
  can't access /opt/amdgpu-pro/bin/amdgpu-pro-px
  Looking for nvidia modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Looking for amdgpu modules in /lib/modules/5.0.0-27-generic/updates/dkms
  Is nvidia loaded? no
  Was nvidia unloaded? no
  Is nvidia blacklisted? no
  Is intel loaded? no
  Is radeon loaded? no
  Is radeon blacklisted? no
  Is amdgpu loaded? no
  Is amdgpu blacklisted? no
  Is amdgpu versioned? no
  Is amdgpu pro stack? no
  Is nouveau loaded? no
  Is nouveau blacklisted? no
  Is nvidia kernel module available? no
  Is amdgpu kernel module available? no
  Vendor/Device Id: 1002:67ef
  BusID "PCI:1@0:0:0"
  Is boot vga? no
  Error: can't access /sys/bus/pci/devices/:01:00.0/driver
  The device is not bound to any driver.
  Vendor/Device Id: 1002:15d8
  BusID "PCI:5@0:0:0"
  Is boot vga? yes
  Error: can't access /sys/bus/pci/devices/:05:00.0/driver
  The device is not bound to any driver.
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Error : Failed to open /dev/dri
  Does it require offloading? no
  last cards number = 2
  Has amd? yes
  Has intel? no
  Has nvidia? no
  How many cards? 2
  Has the system changed? No
  Unsupported discrete card vendor: 1002
  Nothing to do
  
  
==  
sudo lshw -C display
*-display UNCLAIMED   
 description: Display controller
 product: Baffin [Radeon RX 460/560D / Pro 450/455/460/555/560]
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:01:00.0
 version: e5
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi cap_list
 configuration: latency=0
 resources: memory:e000-efff memory:f000-f01f 
ioport:f000(size=256) memory:fea0-fea3 memory:fea4-fea5
*-display UNCLAIMED
 description: VGA compatible controller
 product: Picasso
 vendor: Advanced Micro Devices, Inc. [AMD/ATI]
 physical id: 0
 bus info: pci@:05:00.0
 version: c2
 width: 64 bits
 clock: 33MHz
 capabilities: pm pciexpress msi msix vga_controller bus_master cap_list
 configuration: latency=0
 resources: memory:c000-cfff memory:d000-d01f 
ioport:c000(size=256) memory:fe50-fe57
  
  
  
*
  QUESTIONS
  
  1.  Why is the problem with unsupported drivers not flagged during the
  installation process?  The default driver does work for the laptop's
  monitor, but will not drive a second monitor attached to the HDMI port
  
  2.  I have seen reference to a general purpose AMD graphics driver, but
  there is no reference to this driver being supported on Ubuntu 19.04.
  If I went ahead and attempted to install the general purpose graphics
  driver, how would I back it out if it did not work.
  
- I have raised this issue as a "question", but I think it is probably a
- bug but I could not find out how to raise a bug associated with a lack
- of device drivers.
+ I have raised this issue as a "question", but I think it is probably a bug 
but I could not find out how to raise a bug associated with a lack of device 
drivers.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.10-0ubuntu27.1
+ Architecture: amd64
+ CompositorRunning: None
+ DistUpgraded: Fresh install
+ DistroCodename: disco
+ DistroRelease: Ubuntu 19.04
+ DistroVariant: ubuntu
+ DkmsStatus:
+  bcmwl, 6.30.223.271+bdcom, 5.0.0-25-generic, x86_64: installed
+  bcmwl, 6.30.223.271+bdcom, 5.0.0-27-generic, x86_64: installed
+  rtl8821ce, 1.0.0, 5.0.0-25-generic, x86_64: installed
+  rtl8821ce, 1.0.0, 5.0.0-27-generic, x86_64: installed
+ ExtraDebuggingInterest: Yes, if not too technical
+ GraphicsCard:
+  Subsystem: ASUSTeK Computer Inc. Baffin [Radeon RX 460/560D / Pro 
450/455/460/555/555X/560/560X] [1043:17c1]
+  Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c2) (prog-if 
00 [VGA controller])
+Subsystem: ASUSTeK Computer Inc. Picasso [1043:17c1]
+ 

[Ubuntu-x-swat] [Bug 1843927] CurrentDmesg.txt

2019-09-18 Thread Dave Power
apport information

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

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

Title:
  HDMI monitor not detected [AMD Ryzen 5 with Radeon Vega 8]

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1780677] Re: X session crash after resuming from suspend

2019-09-18 Thread John Pelly
For reference here are some of the tail lines in my /var/log/Xorg.0.log

[ 61070.548] (**) Option "fd" "28"
[ 61070.548] (II) event18 - Integrated Camera: Integrated C: device removed
[ 61070.548] (**) Option "fd" "46"
[ 61070.548] (II) event4  - SynPS/2 Synaptics TouchPad: device removed
[ 61070.548] (**) Option "fd" "27"
[ 61070.548] (II) event6  - ThinkPad Extra Buttons: device removed
[ 61070.548] (**) Option "fd" "44"
[ 61070.548] (II) event19 - MOSART Semi. 2.4G Keyboard Mouse: device removed
[ 61070.548] (**) Option "fd" "49"
[ 61070.548] (II) event20 - MOSART Semi. 2.4G Keyboard Mouse Mouse: device 
removed
[ 61070.548] (**) Option "fd" "41"
[ 61070.548] (II) event24 - John Pelly’s Keyboard: device removed
[ 61070.548] (**) Option "fd" "83"
[ 61070.548] (II) event7  - Video Bus: device removed
[ 61070.548] (**) Option "fd" "48"
[ 61070.548] (II) event5  - TPPS/2 IBM TrackPoint: device removed
[ 61070.549] (**) Option "fd" "67"
[ 61070.549] (**) Option "fd" "67"
[ 61070.549] (II) event21 - MOSART Semi. 2.4G Keyboard Mouse Consumer Control: 
device removed
[ 61070.549] (**) Option "fd" "69"
[ 61070.549] (II) event8  - Video Bus: device removed
[ 61070.549] (**) Option "fd" "77"
[ 61070.549] (II) event1  - Sleep Button: device removed
[ 61070.549] (**) Option "fd" "78"
[ 61070.549] (II) event2  - Power Button: device removed
[ 61070.549] (**) Option "fd" "79"
[ 61070.549] (II) event3  - AT Translated Set 2 keyboard: device removed
[ 61070.549] (**) Option "fd" "80"
[ 61070.549] (II) event22 - MOSART Semi. 2.4G Keyboard Mouse System Control: 
device removed
[ 61070.603] (II) UnloadModule: "libinput"
[ 61070.603] (II) systemd-logind: releasing fd for 13:86
[ 61070.632] (II) UnloadModule: "libinput"
[ 61070.632] (II) systemd-logind: releasing fd for 13:67
[ 61070.676] (II) UnloadModule: "libinput"
[ 61070.676] (II) systemd-logind: releasing fd for 13:66
[ 61070.696] (II) UnloadModule: "libinput"
[ 61070.696] (II) systemd-logind: releasing fd for 13:65
[ 61070.724] (II) UnloadModule: "libinput"
[ 61070.724] (II) systemd-logind: releasing fd for 13:72
[ 61070.753] (II) UnloadModule: "libinput"
[ 61070.753] (II) systemd-logind: not releasing fd for 13:85, still in use
[ 61070.753] (II) UnloadModule: "libinput"
[ 61070.753] (II) systemd-logind: releasing fd for 13:85
[ 61070.772] (II) UnloadModule: "libinput"
[ 61070.772] (II) systemd-logind: releasing fd for 13:69
[ 61070.804] (II) UnloadModule: "libinput"
[ 61070.804] (II) systemd-logind: releasing fd for 13:71
[ 61070.860] (II) UnloadModule: "libinput"
[ 61070.860] (II) systemd-logind: releasing fd for 13:88
[ 61070.860] (EE) systemd-logind: failed to release device: Device not taken
[ 61070.884] (II) UnloadModule: "libinput"
[ 61070.884] (II) systemd-logind: releasing fd for 13:84
[ 61070.928] (II) UnloadModule: "libinput"
[ 61070.928] (II) systemd-logind: releasing fd for 13:83
[ 61070.944] (II) UnloadModule: "libinput"
[ 61070.944] (II) systemd-logind: releasing fd for 13:70
[ 61070.968] (II) UnloadModule: "libinput"
[ 61070.968] (II) systemd-logind: releasing fd for 13:68
[ 61071.016] (II) UnloadModule: "libinput"
[ 61071.016] (II) systemd-logind: releasing fd for 13:82
[ 61071.105] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 61071.106] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[ 61071.106] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[ 61071.107] (WW) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[ 61072.379] (II) Server terminated successfully (0). Closing log file.

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

Title:
  X session crash after resuming from suspend

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1780677] Re: X session crash after resuming from suspend

2019-09-18 Thread John Pelly
Was this ever resolved? This same thing is happening to me regularly.
I'm about to give up on Ubuntu; I can't believe something so basic is
broken.

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

Title:
  X session crash after resuming from suspend

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1839856] Re: Screen resolution on external monitor won't go above 2560 x 1080

2019-09-18 Thread Matt White
I went back pretty far, into the 4.x versions, and still had the same
results, so I'm guessing this isn't kernel-related. Any suggestion on
what else to try?

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

Title:
  Screen resolution on external monitor won't go above 2560 x 1080

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844525] Re: Problems with the System

2019-09-18 Thread Daniel van Vugt
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately, we cannot work on this bug because your
description didn't include enough information. You may find it helpful
to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures.

At a minimum, we need:
1. The specific steps or actions you took that caused you to encounter the 
problem.
2. The behavior you expected.
3. The behavior you actually encountered (in as much detail as possible).
Thanks!

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

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

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

Title:
  Problems with the System

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844525] [NEW] Problems with the System

2019-09-18 Thread Robert Götzhaber
Public bug reported:

Get always errors!

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: xorg 1:7.7+19ubuntu12
ProcVersionSignature: Ubuntu 5.0.0-28.30-generic 5.0.21
Uname: Linux 5.0.0-28-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.10-0ubuntu27.1
Architecture: amd64
CompositorRunning: None
Date: Wed Sep 18 14:49:03 2019
DistUpgraded: 2019-09-16 06:12:41,513 ERROR got error from PostInstallScript 
./xorg_fix_proprietary.py (g-exec-error-quark: Kindprozess 
»./xorg_fix_proprietary.py« konnte nicht ausgeführt werden (Datei oder 
Verzeichnis nicht gefunden) (8))
DistroCodename: disco
DistroVariant: ubuntu
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Whistler LE [Radeon HD 6610M/7610M] 
[1002:6742] (prog-if 00 [VGA controller])
   Subsystem: Toshiba America Info Systems Radeon HD 7610M [1179:fb31]
InstallationDate: Installed on 2017-02-18 (941 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
MachineType: TOSHIBA SATELLITE PRO C850-1JG
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-28-generic 
root=UUID=a0bb8f72-7ca6-4623-a7c5-fd9bb91a962d ro quiet splash vt.handoff=1
SourcePackage: xorg
UpgradeStatus: Upgraded to disco on 2019-09-16 (2 days ago)
dmi.bios.date: 10/01/2013
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.80
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: PLCSF8
dmi.board.vendor: Intel
dmi.board.version: Type2 - Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.80:bd10/01/2013:svnTOSHIBA:pnSATELLITEPROC850-1JG:pvrPSCBZE-00D009GR:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.family: Type1Family
dmi.product.name: SATELLITE PRO C850-1JG
dmi.product.sku: PSCBZE
dmi.product.version: PSCBZE-00D009GR
dmi.sys.vendor: TOSHIBA
version.compiz: compiz 1:0.9.14.0+19.04.20190223.1-0ubuntu1
version.libdrm2: libdrm2 2.4.97-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.8-0ubuntu0~19.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.8-0ubuntu0~19.04.1
version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.6-1
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
xserver.bootTime: Mon Feb 26 22:45:25 2018
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs: Output  HDMI-0LVDS 
  VGA-0
xserver.version: 2:1.19.3-1ubuntu1.1
xserver.video_driver: radeon

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


** Tags: amd64 apport-bug disco ubuntu

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

Title:
  Problems with the System

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844132] Re: FFe: Mesa 19.2.0

2019-09-18 Thread Timo Aaltonen
** Tags added: upgrade-software-version

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

Title:
  FFe: Mesa 19.2.0

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844522] Re: Problems with WiFi

2019-09-18 Thread Daniel van Vugt
** Package changed: xorg (Ubuntu) => linux (Ubuntu)

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

Title:
  Problems with WiFi

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1844522] [NEW] Problems with WiFi

2019-09-18 Thread Iva Eftimska
Public bug reported:

When I try to connect to the wifi it returns to me there is no wifi
adapter found.I tried a lot of things to install it with sudo-apt but
still without success.I tried a lot of accesable codes on github for
wifi drivers for example the last one was git clone -b extended
https://github.com/lwfinger/rtlwifi_new.git the rtlwifi it is installed
successfully but still i can not connect to the wifi I am using wired
connection with an Ethernet cable.When I try to install a driver for
video NVIDIA it returns to me on the terminal dpkg was interrupted try
to configure the dpgk tools also disabled the secure boot menu but
without a result.Can you explain me how I can fix my problem with the
Wifi and Graphics driver on my sistem? I installed previously on a HP-
LAPTOP-15-da0xx Ubuntu 18.04.3 LTS BIONIC.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 5.0.0-27.28~18.04.1-generic 5.0.21
Uname: Linux 5.0.0-27-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.7
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Sep 18 13:42:02 2019
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation UHD Graphics 605 [8086:3184] (rev 03) (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company Device [103c:84aa]
InstallationDate: Installed on 2019-09-15 (2 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 04f2:b62a Chicony Electronics Co., Ltd 
 Bus 001 Device 003: ID 0bda:b00a Realtek Semiconductor Corp. 
 Bus 001 Device 002: ID 10c4:8103 Cygnal Integrated Products, Inc. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: HP HP Laptop 15-da0xxx
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-27-generic 
root=UUID=e6bc5404-de5b-4248-8ccc-94f8b3ea9acb ro quiet splash vt.handoff=1
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/25/2019
dmi.bios.vendor: Insyde
dmi.bios.version: F.21
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 84AA
dmi.board.vendor: HP
dmi.board.version: 82.43
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.21:bd07/25/2019:svnHP:pnHPLaptop15-da0xxx:pvrType1ProductConfigId:rvnHP:rn84AA:rvr82.43:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP Notebook
dmi.product.name: HP Laptop 15-da0xxx
dmi.product.sku: 4TV47EA#AKS
dmi.product.version: Type1ProductConfigId
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.97-1ubuntu1~18.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.8-0ubuntu0~18.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.8-0ubuntu0~18.04.1
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

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


** Tags: amd64 apport-bug bionic ubuntu

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

Title:
  Problems with WiFi

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

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp