2d3c147c68c053ff1d441bb34d1df103a7dbf4cc
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

1) ## translation metadata
Roger Dingledine svn propset eol-style/revis...

Roger Dingledine authored 14 years ago

2) # Revision: $Revision$
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

3) # Translation-Priority: 3-low
4) 
5) #include "head.wmi" TITLE="Vidalia: Debian/Ubuntu Instructions" CHARSET="UTF-8"
6) 
7) <div class="center">
8) 
9) <div class="main-column">
10) 
11) <a id="debian"></a>
12) <a id="packages"></a>
13) <h2><a class="anchor" href="#debian">Vidalia on Ubuntu or Debian</a></h2>
14) <br />
15) 
16) <p>
17) <b>Do not use the packages in Ubuntu's universe.</b> They are unmaintained
18) and out of date. That means you'll be missing stability and security
19) fixes.
20) </p>
21) 
22) <p>
23) You'll need to set up our package repository before you can fetch
Andrew Lewman create a mapping of distro...

Andrew Lewman authored 13 years ago

24) Tor. First, you need to figure out the name of your distribution. Here's
25) a quick mapping:
26) <ul>
27) <li> Ubuntu 10.04 or Trisquel 4.0 is "lucid"</li>
28) <li> Ubuntu 9.10 or Trisquel 3.5 is  "karmic"</li>
29) <li> Ubuntu 9.04 is "jaunty"</li>
30) <li> Ubuntu 8.10 is "intrepid"</li>
31) <li> Ubuntu 8.04 is "hardy"</li> 
32) <li> Debian Etch is "etch"</li>
33) <li> Debian Lenny is "lenny"</li>
34) </ul>
35) 
36) Then add this line to your
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

37) <tt>/etc/apt/sources.list</tt>
38) file:<br />
39) <pre>
40) deb     http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
41) </pre>
42) where you substitute the above word (etch, lenny, sid, karmic, jaunty,
43) intrepid, hardy) in place of &lt;DISTRIBUTION&gt;.
44) </p>
45) 
46) <p>
Andrew Lewman clarify that these are run...

Andrew Lewman authored 14 years ago

47) Then add the gpg key used to sign the packages by running the following
48) commands at your command prompt:
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

49) <pre>
50) gpg --keyserver keys.gnupg.net --recv 886DDD89
51) gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
52) </pre>
Andrew Lewman clarify that these are run...

Andrew Lewman authored 14 years ago

53) Now refresh your sources and install Vidalia by running the following
54) commands at your command prompt:
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

55) <pre>
56) apt-get update
57) apt-get install vidalia 
58) </pre>
59) </p>
60) 
61) <p>
62) Now Vidalia is installed and running. Move on to <a href="<page
Andrew Lewman regexs gone crazy.

Andrew Lewman authored 14 years ago

63) docs/tor-doc-unix>#polipo">step two</a> of the "Vidalia on Linux/Unix"
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

64) instructions.
65) </p>
66) 
67) <p style="font-size: small">
68) The DNS name <code>deb.torproject.org</code> is actually a set of independent
69) servers in a DNS round robin configuration.  If you for some reason cannot
70) access it you might try to use the name of one of its part instead.  Try
71) <code>deb-master.torproject.org</code>,
72) <code>mirror.netcologne.de</code> or
73) <code>vidalia.mirror.youam.de</code>.
74) </p>
75) 
76) <hr />
77) 
78) <a id="source"></a>
79) <h2><a class="anchor" href="#source">Building from source</a></h2>
80) <br />
81) 
82) <p>
83) If you want to build your own debs from source you must first add an
84) appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>.
85) <pre>
86) deb-src http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
87) </pre>
88) You also need to install the necessary packages to build your own debs and the
89) packages needed to build Vidalia:
90) <pre>
91) apt-get install build-essential fakeroot devscripts qt4-dev-tools qt4-designer libqt4-dev g++ cmake
92) apt-get build-dep vidalia
93) </pre>
94) Then you can build Vidalia in ~/debian-packages:
95) <pre>
96) mkdir ~/debian-packages; cd ~/debian-packages
97) apt-get source vidalia
98) cd vidalia-*
99) debuild -rfakeroot -uc -us
100) cd ..
101) </pre>
102) Now you can install the new package:
103) <pre>
104) sudo dpkg -i vidalia_*.deb
105) </pre>
106) </p>
107) 
108) <p>
109) Now Vidalia is installed and running. Move on to <a href="<page
Andrew Lewman regexs gone crazy.

Andrew Lewman authored 14 years ago

110) docs/tor-doc-unix>#polipo">step two</a> of the "Vidalia on Linux/Unix"