linux下關閉獨顯方法:
命令1:
echo IGD > /sys/kernel/debug/vgaswitcheroo/switch
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
第一句是切換到集成顯卡
第二句是關掉沒有鏈接的顯卡
ubuntu下能夠直接直接把命令添加到/etc/rc.local裏的exit 0以前以實現開機自動切換到集成顯卡禁用獨立顯卡
sudo gedit /etc/rc.local
或直接輸入如下命令肯定後,在開機登入系統輸登入密碼前就會啓動
sudo chmod 4755 /etc/rc.local
命令2:
mount -t debugfs debugfs /sys/kernel/debug
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
註銷以後,從新登陸系統,檢查顯卡狀態
cat /sys/kernel/debug/vgaswitcheroo/switch
Off的就是關閉了的獨顯.linux
上面那些是從網上抄來的。貌似在ubuntu14.04版本上,上面的方法是無論用的。老是顯示顯卡狀態爲:DynPwr。ubuntu
OFF: The device is powered off
ON: The device is powered on
DynOff: The device is currently powered off but will be powered on when needed
DynPwr: The device is currently powered on but will be powered off when not neededspa
網上查了一下,說是在ubuntu14.04中顯卡驅動管理模式不同,這個我也不懂。debug
無論驅動是怎麼回事了。我是直接用另一種方法關掉獨顯的,在BIOS的display中會有這個選項。PC型號不同可能操做不同,這個我就很少說了。
it