Skip navigation.

GNOME CPUFreq Applet first release!

Bag of Software
Bag of Software

GNOME CPUFreq Applet is a CPU Frequency Scaling Monitor for GNOME Panel.
This is the first release,
a tarball can be found here
and screenshots can be found hereFeatures

--------

* Support for proc or sys filesystems

* Support for multiprocessor systems

Prerequisites

-------------

* GNOME 2 libraries

* GNOME Panel libraries

* GNOME-VFS libraries

* GConf

That is the first release of GNOME CPUFreq Applet.

Big thanks to

* Esteban Sanchez

* Carlos Garcnacho

* Pablo Arroyo

For the moment:

Tarballs can be downloaded from

http://linups.org/~kal/gnome-cpufreq-applet/gnome-cpufreq-applet-0.1.tar.gz

Screenshots

http://linups.org/~kal/gnome-cpufreq-applet/shots/

Bugs can be reported to

carlosgc gnome org

Suggestions, patches, comments, etc can be sent to

carlosgc gnome org

Re: GNOME CPUFreq Applet first release!

Quote: * Support for proc or sys filesystems

You are right: The /proc/cpufreq interface is deprecated in Linux 2.6. But: Use sysfs - it's supported by the CPUFreq Applet. To use sysfs:

mkdir /sys

mount -n -t sysfs /sys /sys

or

add something like that to your /etc/fstab:

sysfs /sys sysfs defaults

You can find the cpufreq sysfs interface under /sys/devices/system/cpu/cpu0/cpufreq.

Timo