added link to rss feed
[www.git] / src / psensor / ubuntu.adoc
1 = Psensor Ubuntu Support
2 :docinfo2:
3
4 == Specific Features On Ubuntu
5
6 Psensor has few specific features to improve the user experience on Ubuntu.
7
8 image::screenshots/psensor-2011-06-16.png[]
9
10 === Application Indicator Support
11
12 The Application Indicator is providing a quick access to sensor values and
13  settings. When a sensor temperature is too much hot, a desktop notification
14   bubble appears and the Application Indicator icon is changed to a red one.
15
16 Psensor graph window can be closed and raised by using the ‘show’ menu. It is also possible to hide the graph window at startup.
17
18 === Integration With Unity Desktop Environment
19
20 The Unity Launcher of Psensor can display the higher temperature.
21
22 == How To Install Psensor On Ubuntu
23
24 === Stable Version
25
26 For Ubuntu Karmic(9.10), Lucid(10.04), Maverick(10.10) and Natty(11.04) the recommended way is to use the stable PPA:
27
28 ----
29 sudo apt-add-repository ppa:jfi/ppa
30 sudo apt-get update
31 sudo apt-get install psensor
32 ----
33
34 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:
35
36 ----
37 sudo apt-get install psensor
38 ----
39
40 === Development Version
41
42 The development version is providing the last features and should not have any major bugs. It can be installed by using a dedicated PPA with the following command lines:
43
44 ----
45 sudo apt-add-repository ppa:jfi/psensor-unstable
46 sudo apt-get update
47 sudo apt-get install psensor
48 ----
49
50 === Daily Snapshot
51
52 Each day a package is automatically built directly from the source repository. The purpose of this daily build is to test Psensor and report bugs.  It can be installed by using a dedicated PPA with the following command lines:
53
54 ----
55 sudo apt-add-repository ppa:jfi/psensor-daily-trunk
56 sudo apt-get update
57 sudo apt-get install psensor
58 ----
59
60 === Installation From Source Archive
61
62 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.
63
64 First, all build prerequisites must be installed:
65
66 ----
67 sudo apt-get install autoconf automake gettext autopoint
68                      libgtk2.0-dev libgconf2-dev libnotify-dev
69                      libsensors4-dev help2man libcurl4-openssl-dev
70                      libjson0-dev libmicrohttpd-dev
71                      libgtop2-dev perl libunity-dev libgtop2-dev
72                      libappindicator-dev nvidia-settings
73 ----
74
75 Downloads the source archive from: http://wpitchoune.net/psensor/files/.
76
77 Extracts the content of the archive, and from the created directory, compiles psensor:
78
79 ----
80 ./configure
81 make clean all
82 ----
83
84 And finally install `psensor`:
85
86 ----
87 sudo make install
88 ----