Andrew Lewman commited on 2010-02-01 02:47:31
Zeige 1 geänderte Dateien mit 121 Einfügungen und 0 Löschungen.
... | ... |
@@ -0,0 +1,121 @@ |
1 |
+## translation metadata |
|
2 |
+# Revision: $Revision: 19802 $ |
|
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 <DISTRIBUTION> main |
|
32 |
+</pre> |
|
33 |
+where you substitute the above word (etch, lenny, sid, karmic, jaunty, |
|
34 |
+intrepid, hardy) in place of <DISTRIBUTION>. |
|
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 |
|
52 |
+docs/vidalia-doc-unix>#polipo">step two</a> of the "Vidalia on Linux/Unix" |
|
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 |
+<p> |
|
68 |
+Now Vidalia is installed and running. Move on to <a href="<page |
|
69 |
+docs/vidalia-doc-unix>#polipo">step two</a> of the "Vidalia on Linux/Unix" |
|
70 |
+instructions. |
|
71 |
+</p> |
|
72 |
+ |
|
73 |
+<hr /> |
|
74 |
+ |
|
75 |
+<a id="source"></a> |
|
76 |
+<h2><a class="anchor" href="#source">Building from source</a></h2> |
|
77 |
+<br /> |
|
78 |
+ |
|
79 |
+<p> |
|
80 |
+If you want to build your own debs from source you must first add an |
|
81 |
+appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>. |
|
82 |
+<pre> |
|
83 |
+# For the stable version. |
|
84 |
+deb-src http://deb.torproject.org/torproject.org <DISTRIBUTION> main |
|
85 |
+</pre> |
|
86 |
+You also need to install the necessary packages to build your own debs and the |
|
87 |
+packages needed to build Vidalia: |
|
88 |
+<pre> |
|
89 |
+apt-get install build-essential fakeroot devscripts qt4-dev-tools qt4-designer libqt4-dev g++ cmake |
|
90 |
+apt-get build-dep vidalia |
|
91 |
+</pre> |
|
92 |
+Then you can build Vidalia in ~/debian-packages: |
|
93 |
+<pre> |
|
94 |
+mkdir ~/debian-packages; cd ~/debian-packages |
|
95 |
+apt-get source vidalia |
|
96 |
+cd vidalia-* |
|
97 |
+debuild -rfakeroot -uc -us |
|
98 |
+cd .. |
|
99 |
+</pre> |
|
100 |
+Now you can install the new package: |
|
101 |
+<pre> |
|
102 |
+sudo dpkg -i vidalia_*.deb |
|
103 |
+</pre> |
|
104 |
+</p> |
|
105 |
+ |
|
106 |
+<p> |
|
107 |
+Now Vidalia is installed and running. Move on to <a href="<page |
|
108 |
+docs/vidalia-doc-unix>#polipo">step two</a> of the "Vidalia on Linux/Unix" |
|
109 |
+instructions. |
|
110 |
+</p> |
|
111 |
+ |
|
112 |
+<hr /> |
|
113 |
+ |
|
114 |
+<p>If you have suggestions for improving this document, please <a |
|
115 |
+href="<page contact>">send them to us</a>. Thanks!</p> |
|
116 |
+ |
|
117 |
+ </div><!-- #main --> |
|
118 |
+</div> |
|
119 |
+ |
|
120 |
+#include <foot.wmi> |
|
121 |
+ |
|
0 | 122 |