2

I "Accidentally" upgraded to 16.04 from 15.10 as it would have lost support anyway in July, and now FGLRX is nowhere to be found and only one of my monitors work.


Currently screenfetch is displaying my GPU like this:

GPU: Gallium 0.4 on llvmpipe (LLVM 3.8, 128 bits)

It is a Sapphire R270 and should be supported by the new radeon driver. I have tried to edit the xorg.conf file but it did nothing:

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "radeon"
EndSection

The file didnt even exist to begin with so I made a new one, but as I said it did nohting.

I have searched further and found a 10-amdgpu.conf file in

/usr/share/X11/xorg.conf.d

but I am too scared to edit there anything, since I am afraid to render my system unuseable.

Wild Man
  • 8,187
  • 4
  • 34
  • 44
zython
  • 367

1 Answers1

5

There is no need to install the open source drivers. They are already installed by default.

You can check which kernel module is used by running

lspci -k | grep -EA2 'VGA|3D'

in terminal. It will show something like this

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV620/M82 [Mobility Radeon HD 3450/3470]
    Subsystem: ASUSTeK Computer Inc. Device 19d3
    Kernel driver in use: radeon

GPU: Gallium 0.4 on llvmpipe (LLVM 3.8, 128 bits) looks correct.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • so could be the reason that I cant use multiple monitors and everything feels so slow ? – zython Jun 11 '16 at 18:25
  • This is another question why the system works slow. – Pilot6 Jun 11 '16 at 18:26
  • Maybe you have hyprid graphics, etc. – Pilot6 Jun 11 '16 at 18:27
  • its a r270 in combination with a fx6300, doesnt look like a hybrid to me – zython Jun 11 '16 at 18:31
  • I suggest asking a new question. Describe what is the problem and post there the output of lspci -k | grep -EA2 'VGA|3D|Display'. This question has been answered and it does not help the actual issue. – Pilot6 Jun 11 '16 at 18:37
  • problem fixed itself, no idea why (doing backups atm just in case) but it spits out driver in use: radeon – zython Jun 11 '16 at 19:45