4

After switching to Ubuntu 13.04 64bit, AMD proprietary drivers stopped working on my laptop with AMD/Intel hybrid graphics.

I tried installing older version of Intel graphics as described in this thread How do I get AMD/Intel Hybrid Graphics drivers to work?.

This solution works great with one monitor, but when I try to connect second one while using discrete card, my screen starts flickering and glitching very hard. It's hard to explain, seems like it tries to intersect two screens.

I noticed, that command sudo aticonfig --set-pcs-str="DDX,EnableRandR12,FALSE" failed to deactivate RandR1.2, so there's no Display Manager in amdcccle. I tried to search a solution for disabling RandR, but found none working.

I had none of these problems on Ubuntu 12.10 64bit.

Any help is appreciated. Thank you.

bazukas
  • 43
  • 1
  • 3
  • What is the output of lspci? Why you want to use this drivers? Otherwise this will probably closed as dupe of the very same question you linked, since we don't know what difference has your pc from the linked question one. – Braiam Aug 25 '13 at 06:30

2 Answers2

2

I had the same issue. After some digging, I came to this solution that works for me:

xrandr --output LVDS1 --auto --right-of VGA1 --output VGA1 --auto --scale 1x1

In my case, I want to my laptop screen (LVDS1) to stand in the right of my external monitor (VGA).

You should replace LVDS1 and VGA1 with your own device ids.

You can find them by typing the command:

xrandr -q
Braiam
  • 67,791
  • 32
  • 179
  • 269
otaviosoares
  • 188
  • 7
  • The output for the two screens is right now with your xrandr-command but the flickering will not be solved. – Marian Lux Sep 03 '13 at 14:21
  • I'm also seeing the same thing with 15.10 -- the xrandr command fixes some things, but the flickering persists... – schmod Nov 10 '15 at 16:35
0

This is likely caused by the solution here: How do I get AMD/Intel Hybrid Graphics drivers to work? which forces outdated intel/libudev packages.

Jack
  • 1
  • Please don't add comments as answers. Invest some time in the site and you will gain sufficient privileges to upvote answers you like, or to add actual comments when seeking clarification of any issues. If you have a new question please ask it. – edwin Aug 02 '13 at 02:17