实践 Ubuntu 10.10/11.04 关闭双显卡问题
生活随笔
收集整理的這篇文章主要介紹了
实践 Ubuntu 10.10/11.04 关闭双显卡问题
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Ubuntu 關閉雙顯卡目前有兩種方法:
#!/bin/bash
?
if [ "$(whoami)" != "root" ]; then
?? echo "Use as root"
?? exit 1
fi
?
if [ -z "$1" ]; then
??????? cmd="OFF"
else
?? if [ "$1" = "-i" ]; then
????? cmd="DIGD"
?? elif [ "$1" = "-d" ]; then
????? cmd="DDIS"
?? else
?????????? cmd=$1
?? fi
fi
?
if ([ "$cmd" != "OFF" ] && [ "$cmd" != "DDIS" ] && [ "$cmd" != "DIGD" ]); then
??????? echo "Bad Command!"
??????? exit 1
fi
?
echo "$cmd" > /sys/kernel/debug/vgaswitcheroo/switch
cat /sys/kernel/debug/vgaswitcheroo/switch
然后再建立一個啟動腳本/etc/init.d/vgaswitch
?? ?
#!/bin/bash
?
if [ "$1" != "start" ]; then
?? exit;
fi
?
/usr/local/sbin/vgaswitcher
/usr/local/sbin/vgaswitcher -i
都建立好以后,執行如下命令:
1
?? ?
sudo chmod +x /usr/local/sbin/vgaswitcher /etc/init.d/vgaswitch && sudo update-rc.d vgaswitch defaults
重啟就可以禁用掉獨顯了~
方法2:
1. 安裝acpi_call模塊
sudo apt-get install git
git clone git://github.com/mkottman/acpi_call.git
cd acpi_call
make
sudo insmod acpi_call.ko
./test_off.sh
如果有提示OK證明獨顯已經關掉了
親自體驗結果:
顯卡已經poweroff,但是
兩種方法都會造成運行VMware虛擬機之后 將無法關機和重新啟動 Ubuntu系統
如果你需要Vmware虛擬機,請不要使用上面兩種方法!
我沒有測試沒有Vmware 運行的情況,如果你出現關機不能,也請不要使用上面方法關顯卡。轉載于:https://www.cnblogs.com/javabluesky/archive/2011/07/26/2211487.html
總結
以上是生活随笔為你收集整理的实践 Ubuntu 10.10/11.04 关闭双显卡问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 获取本机IP(考虑多块网卡、虚拟机等复杂
- 下一篇: 源代码加密-防泄密解决方案-SDC沙盒