1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
= Psensor README
:docinfo2:
:toc:
:icons: font
Introduction
------------
Psensor is a graphical hardware monitoring application for Linux.
It draws realtime charts and raises alerts about:
* the temperature of the motherboard and CPU sensors (using
lm-sensors).
* the temperature of the NVidia GPUs (using XNVCtrl).
* the temperature of ATI GPUs (using ATI ADL SDK).
* the temperature of the Hard Disk Drives (using hddtemp, libatasmart
or udisks2).
* the rotation speed of the fans.
* the temperature of a remote computer.
* the CPU load.
Alerts are using Desktop Notification and a specific GTK+ status icon.
For Ubuntu users, Psensor is providing an Application Indicator which turns
red under alert and a menu for quickly check all sensors.
It is possible to monitor remotely a computer:
* start +psensor-server+ on the remote computer.
* start +psensor+ using: +psensor --url=http://hostname:3131+.
+psensor-server+ is a minimal Web server, a Web browser can be used to
monitor the remote computer by opening the URL:
+http://hostname:3131+.
[WARNING]
+psensor-server+ does not provide any way to restrict the connection
to the HTTP server, worst, no effort has been made against malicious
HTTP attacks. You should make the +psensor-server+ port available
only to a network or computer you trust by using the usual network
security tools of the system (for example:
http://www.netfilter.org/projects/iptables/index.html[iptables]).
Installation Using Distribution Packages
----------------------------------------
Debian
~~~~~~
For Debian, the binary and source packages are available in the
Wheezy, unstable and testing repositories.
Debian package information is available at:
http://packages.qa.debian.org/p/psensor.html.
To do the installation:
--------------------------------------------
sudo apt-get install psensor psensor-server
--------------------------------------------
Ubuntu
~~~~~~
Since Ubuntu Oneiric (11.10), psensor is available in the universe
repository of Ubuntu.
To install +psensor+ or +psensor-server+:
------------------------------------
sudo apt-get install psensor
sudo apt-get install psensor-server
------------------------------------
Or search them in the Ubuntu Software Center.
Installation From Source Archive
--------------------------------
+psensor+ and +psensor-server+ can be compiled and installed on any
modern GNU/Linux distribution.
Compilation Prerequisites
~~~~~~~~~~~~~~~~~~~~~~~~~
The compilation of +psensor+ requires:
* make
* gcc (or llvm)
* lm-sensors
* library sensors4
* library gtk3 >=3.4
* help2man (optional, required to produce the manpage)
* asciidoctor (optional, required to produce the html version of the
faq)
* cppcheck (optional, static source checker)
* library libnotify (optional)
* library libappindicator >= 3.0 (optional)
* library libXNVCtrl (optional)
* library json-c >= 0.11.99 and curl (optional, required for remote monitoring)
* library unity (>=v3.4.2, optional)
* library gtop2 (optional, required for CPU usage)
* library atasmart (optional, for disk monitoring)
* library udisk2 (optional, for disk monitoring)
The specific requirements for +psensor-server+:
* library libmicrohttpd
* library json-c >= 0.11.99
Compilation and Installation Steps
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. download the source archive from: http://wpitchoune.net/psensor/files
2. Extract files from the source archive
3. Compilation: +./configure;make clean all+
4. Installation: +make install+ (require to have root permission)
5. Start the sensor detection script: +sensors-detect+ and follows the
instructions. Reboot or activate the kernel modules which have
been found.
6. Run: +psensor+
ATI/AMD GPU Support
~~~~~~~~~~~~~~~~~~~
When the OpenSource ATI driver is used, the monitoring
information is available through lm-sensors and does not require the
following instructions.
When the proprietary ATI driver(Catalyst) is used, the build is
requiring an additional library.
Download the
http://developer.amd.com/sdks/ADLSDK/Pages/default.aspx[ATI ADL SDK]
and extracts the files of the archive into a directory [dir].
Replace the step 3. of the above section by +./configure
--with-libatiadl=[dir]+ where +[dir]+ must be the directory where you
have extracted the ATI ADL SDK. Other steps are indentical.
Contact
-------
Bugs and comments can be sent to jeanfi@gmail.com.
Home page: http://wpitchoune.net/psensor
|