Gnome 3 Ati Fan永远在线

您好我正在使用安装了Gnome 3的Ubuntu 11.10。 我有粉丝的问题(我知道有很multithreading关于这个,但没有任何工作)。

我正在使用运行core2duo 2.67Gz英特尔处理器和Ati radeon高清(移动性)4670的戴尔Studio XPS 1640.如果您需要更多规格,请告诉我。

我刚刚再次安装Ubuntu试图解决所有问题。 然后我立即更新:

sudo apt-get dist-upgrade 

然后我安装gnome 3

 sudo apt-get install gnome-shell 

然后我没有安装ATI提供的专有驱动程序,因为我知道它们与Gnome 3非常不稳定(加上我在Unity上使用了大约两个月的错误,包括屏幕撕裂,一半屏幕没有绘制/更新和许多崩溃)。

使用开源的ati驱动程序(在安装Ubuntu时安装),ui是流畅而快速的。 然后我尝试通过安装Jupiter来减少风扇:

 sudo apt-get install jupiter 

和CPU频率

 sudo apt-get install indicator-cpufreq 

并运行传感器:

 sudo apt-get install lm-sensors sudo sensors-detect 

我还读到我想要运行fancontrol

 sudo pwmconfig sudo fancontrol 

但是运行pwnconfig会给我这个输出

 /usr/sbin/pwmconfig: There are no pwm-capable sensor modules installed 

所以自然风扇控制不起作用。

在此之后,风扇始终打开。 我将电脑设置为省电模式,仍然始终打开风扇。 在终端中键入传感器给我这个输出

 acpitz-virtual-0 Adapter: Virtual device temp1: +56.0°C (crit = +100.0°C) temp2: +46.0°C (crit = +100.0°C) temp3: +60.0°C (crit = +100.0°C) coretemp-isa-0000 Adapter: ISA adapter Core 0: +51.0°C (high = +105.0°C, crit = +105.0°C) Core 1: +51.0°C (high = +105.0°C, crit = +105.0°C) radeon-pci-0100 Adapter: PCI adapter temp1: +61.0°C 

我的radeon温度总是在60左右(甚至是冷靴)。 我转到我的Windows 7分区,风扇快速消失。 我从关机状态回到Ubuntu,一旦登录屏幕出现,风扇开启并响亮(即使笔记本电脑因外部温度而冷)。 此外,bios中没有选项来限制风扇速度。

此外,我还完成了此网页上列出的步骤: http : //javacolors.blogspot.com/2011/10/ubuntu-1110-ati-radeon-deal.html

有没有其他方法没有安装ati专有驱动程序来解决这个风扇解决方案?

我在两周内遇到了这个问题。 我正在使用桌面和ati 5770。

Opensource’radeon’驱动程序通过调整gpu时钟具有一些电源管理function,但它不能很好地工作。

这是关于radeon和fglrx电源管理的好文章。

Radeon电力管理的现状

这是我对opensource radeon电源管理的别名。

 # radeon gpu power management alias profilepm='sudo bash -c "echo profile > /sys/class/drm/card0/device/power_method"' alias auto='profilepm && sudo bash -c "echo auto > /sys/class/drm/card0/device/power_profile"' alias low='profilepm && sudo bash -c "echo low > /sys/class/drm/card0/device/power_profile"' alias mid='profilepm && sudo bash -c "echo mid > /sys/class/drm/card0/device/power_profile"' alias high='profilepm && sudo bash -c "echo high > /sys/class/drm/card0/device/power_profile"' alias dynpm='sudo bash -c "echo dynpm > /sys/class/drm/card0/device/power_method"' alias gpu="sudo cat /sys/kernel/debug/dri/0/radeon_pm_info /sys/class/drm/card0/device/power_method" 

首先选择默认方法。

  • profilepm用于手动时钟设置
  • dynpm用于按需时钟设置。 但它只是在中间和高点之间变化。 永远不会低。 至少对我而言。

如果选择profilepm,请手动选择时钟。

  • 汽车

我从未尝试过汽车。 但听起来对笔记本电脑有好处。

引自X.org radeon wiki的文章,

“auto”根据系统是否使用电池电源在“中”和“高”电源状态之间进行选择。 当监视器处于dpms关闭状态时,选择“低”电源状态。

使用’gpu’命令显示当前方法和时钟。

所有这些设置都来自这里,

KMS电源管理选项

我习惯于11.10中的“低”,但是当许多firefox选项卡和窗口打开时有点迟钝。 跳到12.04后,我使用了unity和’fglrx-updates’驱动程序。 它运作得很好。

如果您对这些设置很满意,请将其保存以便重新启动。

安装sysfsutils包,然后将规则添加到/etc/sysfs.conf文件中。

 class/drm/card0/device/power_method = (profile or dynpm) class/drm/card0/device/power_profile = (select between auto, low, mid, high if u choose 'profile' method) 

你可以删除第二行如果你选择’dynpm’

如果您关注电源管理,那么我建议您切换到最新的AMD Catalyst 12.2,它可以更好地完成PM并暂停。

我发现sysfsutils -solution对我不起作用(如此处所述)。 对于具有相同问题的其他人来说,这可能是使用pm-utils替代解决方案 。 我不确定这是否是最好的方法(我是Linux的新手)但它完全符合我的要求: 在启动时将radeon power_profile设置为low并在挂起恢复后保留该设置

第1步:创建钩子

 gksudo gedit /usr/lib/pm-utils/power.d/radeon-power_profile 

第2步:填写所需的设置

 #!/bin/sh echo profile > /sys/class/drm/card0/device/power_method echo low > /sys/class/drm/card0/device/power_profile exit 0 

第3步:使其可执行

 sudo chmod +x /usr/lib/pm-utils/power.d/radeon-power_profile 

而已 :)

有新的改进:)

解决了之前用于Linux的AMD Catalyst 12.11 Beta8驱动程序中发现的稳定性问题对于在Ubuntu 12.04下遇到HDMI音频问题的用户,用户应尝试从https://code.launchpad.net安装“dkms-hda – 0.201211291615~recision1”软件包/ ~ubuntu-audio-dev / + archive / alsa-daily / + packages and reboot; 这将解决Ubuntu 12.04中的HDMI音频问题

http://support.amd.com/us/kbarticles/Pages/AMDCatalyst1211betadriver.aspx

但等等,他们在2013年推出了更多版本

AMD Catalyst™专有显示驱动程序 – Linux x86和Linux x86_64

稳定版惊人

描述:Xorg / Xserver 6.9及以上版本的自动安装程序和显示驱动程序(最高1.13)

http://support.amd.com/us/gpudownload/linux/Pages/radeon_linux.aspx?type=2.4.1&product=2.4.1.3.42&lang=English

在安装(或重新安装)任何AMD / ATI fglrx Catalyst Propietary驱动程序之前,您需要清除任何配置以使fglrx成为可以使用X.Org的干净空间,这是因为驱动程序可能会在您的计算机上出现诸如速度慢,function不足等问题或多个问题 。 此外,为了尝试这种方法,我建议你从你在问题上说的页面中删除你为计算机加速的脚本。 如果您对他的手术有任何疑问,请不要忘记询问。

要删除fglrx,请运行以下命令;

 sudo sh /usr/share/ati/fglrx-uninstall.sh sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev* xorg-driver-fglrx 

(请注意,如果第一个命令出错,只需跳到第二个命令)

如果您没有从ATI网站下载,请使用这些命令获得最新信息(来自Ubuntu存储库的fglrx或“其他驱动程序(Jockey)”已过时);

制作下载文件夹并在您的主文件夹中工作,但不一定;

 cd ~/; mkdir catalyst12.2; cd catalyst12.2/ 

下载最新的驱动程序,(编写时为Catalyst 12.2);

 wget -O amd-driver-installer-12-2-x86.x86_64.run http://www2.ati.com/drivers/linux/amd-driver-installer-12-2-x86.x86_64.run 

(请注意,下载适用于32位和64位架构)

使安装程序脚本可执行;

 sudo chmod +x amd-driver-installer-12-2-x86.x86_64.run 

运行安装程序脚本;

 sudo sh ./amd-driver-installer-12-2-x86.x86_64.run 

现在按照默认安装,安装完成后,打开一个新终端并输入;

 sudo aticonfig --initial -f 

完成后,请确保重新启动/重新启动计算机。 在重新启动之前不要尝试任何应用程序,因为您可能会使X.Org不稳定,因此只需在同一终端重启;

 sudo reboot now 

或者在图形界面中进行。

一定要告诉我们它是如何经历的,祝你好运! ;)

radeon.dpm=1添加到内核引导参数中。

它为hd2xxx带来了所有不同。

要执行此操作,请编辑文件/etc/default/grub

 sudo nano /etc/default/grub 

找到开始的行

 GRUB_CMDLINE_LINUX_DEFAULT= 

在引号之间,将radeon.dpm=1添加到已存在的参数中,以便在编辑之后,该行看起来像

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash radeon.dpm=1" 

保存,退出,然后运行

 sudo update-grub