现在的位置: 首页 > 综合 > 正文

Ubuntu联想Y460双显卡禁用独显完美解决

2013年04月03日 ⁄ 综合 ⁄ 共 1522字 ⁄ 字号 评论关闭

 在Ubuntu下双显卡机型怎样禁用独显的问题困扰了我很久,遍寻网络解决方法比较靠谱
的是southwolf提供的方法,但是存在一些小bug。原文如下:
  ---------------------------传说中的分割线------------------------------------

  BIOS中设置Switchable Graphics, 安装 10.04, 不要装ATI驱动
  1. 更新内核至2.6.35
  #--添加内核PPA源--#
  sudo add-apt-repository ppa:kernel-ppa/ppa && sudo apt-get update
  #--更新内核--#
  sudo apt-get install linux-headers-2.6.35-22 linux-headers-2.6.35-22-generic
linux-image-2.6.35-22-generic linux-maverick-source-2.6.35
  2. 安装acpi_call模块
  sudo apt-get install git
  如果网速慢,可以先用迅雷(=.=#)拖下来然后去Ubuntu里头安装...
  注意: 从PPA源更新可能速度很慢!! 需要下载的东西很多!!
  git clone http://github.com/mkottman/acpi_call.git
  cd acpi_call
  make
  sudo insmod acpi_call.ko
  如果有提示OK证明独显已经关掉了
  3. 把关闭独显的脚本加入启动项
  sudo gedit /etc/rc.d/rc.local
  加入
  insmod /你的路径/acpi_call.ko
  sh /你的路径/test_off.sh
  ---------------------------又一条分割线-----------------------------------
  Ubuntu10.10 2.6.35 完美支持双显卡。一般不需要独显,集显即可特效全开。为降低发
热和延长待机时间,
  建议在Ubuntu下关闭独显。
  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证明独显已经关掉了
  2. 把关闭独显的脚本加入启动项
  sudo gedit /etc/rc.d/rc.local
  加入
  insmod /你的路径/acpi_call.ko
  sh /你的路径/test_off.sh
  ---------------------------这条分割线以后是longriver的修订-------------------
--------
  1.10.04按照他的方法不能升级到2.6.35内核。可能是方法不对也可能是其他问题。
  2.在10.10下按照southwolf的方法第一步成功,独显指示灯熄灭!心中狂喜!马上第二步
发现bug*~*...
  1)sudo gedit /etc/rc.d/rc.local编辑完成后不能保存,提示没有这个路径!于是ls
/etc果然没有。是新建一个还是...且慢!在/etc下有一个rc.local的文件!编辑试试...果然
不错。
  2)小补充:insmod /home/你的名字/acpi_call/acpi_call.ko
  sh /home/你的名字/acpi_call/test_off.sh
  十分感谢southwolf的无私奉献!为了像我一样的菜鸟少走弯路特留此文以备查询!

抱歉!评论已关闭.