added psensor 1.2.1 news
[www.git] / src / psensor / ubuntu.adoc
1 = Psensor Ubuntu Support
2 :docinfo2:
3 :icons: font
4
5 == Specific Features On Ubuntu
6
7 Psensor has few specific features to improve the user experience on Ubuntu.
8
9 image::screenshots/psensor-2011-06-16.png[]
10
11 === Application Indicator Support
12
13 The Application Indicator is providing a quick access to sensor values and
14  settings. When a sensor temperature is too much hot, a desktop notification
15   bubble appears and the Application Indicator icon is changed to a red one.
16
17 Psensor graph window can be closed and raised by using the ‘show’ menu. It is also possible to hide the graph window at startup.
18
19 === Integration With Unity Desktop Environment
20
21 The Unity Launcher of Psensor can display the higher temperature.
22
23 == How To Install Psensor On Ubuntu
24
25 === Stable Version
26
27 For Ubuntu Karmic(9.10), Lucid(10.04), Maverick(10.10) and Natty(11.04) the recommended way is to use the stable PPA:
28
29 ----
30 sudo apt-add-repository ppa:jfi/ppa
31 sudo apt-get update
32 sudo apt-get install psensor
33 ----
34
35 Since Oneiric, Psensor is available in the official Ubuntu repository. The stable version of Psensor can be installed without adding any PPAs. The Ubuntu Software Center can be used, or the following command line:
36
37 ----
38 sudo apt-get install psensor
39 ----
40
41 === Installation From Source Archive
42
43 Of course, it is also possible to compile and install Psensor from the source archive. There is no real benefit except to tune compilation settings or hack the source code.
44
45 First, all build prerequisites must be installed:
46
47 ----
48 sudo apt-get install autoconf automake gettext autopoint
49                      libgtk2.0-dev libgconf2-dev libnotify-dev
50                      libsensors4-dev help2man libcurl4-openssl-dev
51                      libjson0-dev libmicrohttpd-dev
52                      libgtop2-dev perl libunity-dev libgtop2-dev
53                      libappindicator-dev nvidia-settings
54 ----
55
56 Downloads the source archive from: http://wpitchoune.net/psensor/files/.
57
58 Extracts the content of the archive, and from the created directory, compiles psensor:
59
60 ----
61 ./configure
62 make clean all
63 ----
64
65 And finally install `psensor`:
66
67 ----
68 sudo make install
69 ----