Ubuntu – How to disable ATI discrete graphic GPU at startup in Ubuntu 14.04 without BIOS

atihybrid-graphicsradeonvgaswitcheroo

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?

Best Answer

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.

Related Question