5d77593ee6f4367daac6a17e159350ebd6511b72
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
24) Vidalia. First, you need to figure out the name of your distribution. If
25) you're using Ubuntu 9.10, it's  "karmic", while 9.04 is "jaunty",
26) 8.10 is "intrepid", and 8.04 is "hardy". If you're using Debian
27) Etch, it's "etch", and Debian Lenny is "lenny". Then add this line to your
28) <tt>/etc/apt/sources.list</tt>
29) file:<br />
30) <pre>
31) deb     http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
32) </pre>
33) where you substitute the above word (etch, lenny, sid, karmic, jaunty,
34) intrepid, hardy) in place of &lt;DISTRIBUTION&gt;.
35) </p>
36) 
37) <p>
38) Then add the gpg key used to sign the packages by running
39) <pre>
40) gpg --keyserver keys.gnupg.net --recv 886DDD89
41) gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
42) </pre>
43) Now refresh your sources and install Vidalia by running
44) <pre>
45) apt-get update
46) apt-get install vidalia 
47) </pre>
48) </p>
49) 
50) <p>
51) Now Vidalia is installed and running. Move on to <a href="<page
Andrew Lewman regexs gone crazy.

Andrew Lewman authored 14 years ago

52) 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

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

Andrew Lewman authored 14 years ago

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