e224dbbd228cc792b09de507c1c24a6b5c15eb50
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
Andrew Lewman update ubuntu instructions...

Andrew Lewman authored 14 years ago

25) you're using Ubuntu 9.10 or 10.04, it's  "karmic", while 9.04 is "jaunty",
Andrew Lewman add vidalia instructions fo...

Andrew Lewman authored 14 years ago

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>
Andrew Lewman clarify that these are run...

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

40) <pre>
41) gpg --keyserver keys.gnupg.net --recv 886DDD89
42) gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
43) </pre>
Andrew Lewman clarify that these are run...

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

46) <pre>
47) apt-get update
48) apt-get install vidalia 
49) </pre>
50) </p>
51) 
52) <p>
53) Now Vidalia is installed and running. Move on to <a href="<page
Andrew Lewman regexs gone crazy.

Andrew Lewman authored 14 years ago

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

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

Andrew Lewman authored 14 years ago

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