7

I could disable ATI discrete graphics in Ubuntu 13.10 with this command:

echo OFF > /sys/kernel/debug/vgaswitcheroo/switch

But in Ubuntu 14.04 it does not work. cat /sys/kernel/debug/vgaswitcheroo/switch shows the same:

0:IGD:+:DynPwr:0000:01:05.0 
1:DIS-Audio: :Pwr:0000:02:00.1 
2:DIS: :DynPwr:0000:02:00.0 

What should I do in Ubuntu 14.04?

bain
  • 11,260
user270817
  • 71
  • 1
  • 1
  • 2
  • 1
    i do all of that.but the answer of cat /sys/kernel/debug/vgaswitcheroo/switch is same : 0:IGD:+:DynPwr:0000:01:05.0 1:DIS-Audio: :Pwr:0000:02:00.1 2:DIS: :DynPwr:0000:02:00.0 in ubuntu 14.04 some thing is different ?? –  May 06 '14 at 04:20
  • Please follow the instructions on this page (launchpad.net/~hybrid-graphics-linux) so Linux can support Hybrid-Graphics more efficiently – Muhammad Gelbana Nov 29 '14 at 15:17
  • Please follow the instructions on this page (launchpad.net/~hybrid-graphics-linux) so Linux can support Hybrid-Graphics more efficiently – Muhammad Gelbana Nov 29 '14 at 15:19

3 Answers3

6

In this version of Ubuntu, Dynamic Radeon Drivers are included and activated so that the old solution that you mention does not work.

To operate the old solution you can edit the file /etc/default/grub.

In this file you can add the option radeon.runpm=0 in the call to the current kernel (usually after ro quiet splash).

Alternatively, you can also add radeon.runpm=0 to the value of the variable GRUB_CMDLINE_LINUX_DEFAULT, then save and run sudo update-grub.

  • attempted this solution with a Hp dv7-4263cl / radeon HD4225 / HD6370 and had no change in the results of the content of the switcheroo file. – Charles Green May 28 '14 at 15:43
  • 1
    @CharlesGreen You could try turn_off_gpu.sh from acpi_call. See Arch wiki : Fully Power Down Discrete GPU for instructions. – bain May 28 '14 at 19:58
  • Thanks! I may give that a try: I'm going to give the AMD drivers a shot, assuming they go from beta to release fairly soon. If that does not do the trick, I'll head to this solution. – Charles Green May 28 '14 at 20:32
  • Sigh - the beta drivers from AMD did not work for me - something in the HP prevents them from recognizing the hardware... – Charles Green May 29 '14 at 00:33
  • @CharlesGreen (or anyone else with this issue) - if you are using the open source drivers, and have problems with radeon power management and specific hardware, then asking about it on the radeon driver mailing list at http://lists.x.org/mailman/listinfo/xorg-driver-ati is more likely to get an accurate response. With the latest drivers, radeon power management should really "just work"; if it does not work for some cards then the developers need to know what is broken so they can fix it. – bain Jul 22 '14 at 22:14
  • Please follow the instructions on this page (launchpad.net/~hybrid-graphics-linux) so Linux can support Hybrid-Graphics more efficiently – Muhammad Gelbana Nov 29 '14 at 15:17
  • My Ubuntu 14.04.3 boots only when I add radeon.runpm=0 AND radeon.dpm=0 to the grub line. My Radeon GPU (soldered on the motherboard) was dead and that trick finally brings my computer back to life, now relying solely on the Intel HD Graphics 3000. – Louis Ameline Feb 16 '16 at 18:30
0

This worked for me....

Enter this

"echo OFF > /sys/kernel/debug/vgaswitcheroo/switch" 

twice after

"echo DIS > /sys/kernel/debug/vgaswitcheroo/switch"

It then shows the discrete graphics card as off instead of dynoff. And works exactly like it used to in previous versions.

guntbert
  • 13,134
0

I have the same issue and the command bellow seems to be working

sudo aticonfig --initial --px-igpu --effective=startup

then restart. (I'm using the fglrx driver)

Foad
  • 101