Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 2389  / 1 Year ago, mon, may 15, 2023, 9:00:36

i own a sony vaio laptop VPCCB. i have ubuntu 12.04 installed side-by-side with windows 7.
while using ubuntu the laptop gets heated a lot compared to windows and the fan keeps spinning continuosly. i have jupiter installed please help....


More From » overheating

 Answers
1

Hey even I have the same laptop. The problem here is that our laptop contains 2 graphic cards 1.AMD 6630 2.Intel HD 3000
Somehow, by default Ubuntu keeps both of them running, even if only one is used, that leads to overheating.
The solution is to turn off one graphic card.Here I show how to disable ATI card, and just use the Intel HD graphics.
Enter this command in the terminal to check the graphic card status



cat /sys/kernel/debug/vgaswitcheroo/switch


you will get o/p like



 0:DIS: :Pwr:0000:01:00.0
1:IGD:+:Pwr:0000:00:02.0


here DIS=AMD card, IGD=Intel card.
Pwr on both the lines means that both are powered.To turn the DIS off, enter



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


check the status again. you should get Off on the 0:DIS line.This means only the low-power intel card is running.Use you laptop for an hour or two, and feel the difference.
If it is indeed running cooler, to make the changes persist even after reboot, edit the rc.local file.



sudo gedit /etc/rc.local


and add the following line above exit 0



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

[#35097] Wednesday, May 17, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
antorchestr

Total Points: 92
Total Questions: 111
Total Answers: 120

Location: Jordan
Member since Wed, Jun 17, 2020
4 Years ago
antorchestr questions
;