docs/en/debian.wml
2a9aaa80
 ## translation metadata
40e07e2e
 # Revision: $Revision$
2a9aaa80
 # Translation-Priority: 3-low
 
 #include "head.wmi" TITLE="Tor Project: Debian/Ubuntu Instructions" CHARSET="UTF-8"
 <div id="content" class="clearfix">
   <div id="breadcrumbs">
b289ef06
     <a href="<page index>">Home &raquo; </a>
2a9aaa80
     <a href="<page docs/documentation>">Documentation &raquo; </a>
     <a href="<page docs/debian>">Debian/Ubuntu Instructions</a>
   </div>
529218b3
   <div id="maincol">
c22b7380
 <a id="debian"></a>
6e6b263c
 <h2><a class="anchor" href="#debian">Option one: Tor on Debian stable,
c22b7380
 Debian sid, or Debian testing</a></h2>
 <br />
 
 <p>
ad472e85
 If you're using Debian, just run<br />
c20d0cd9
 <tt>apt-get install tor</tt>
c22b7380
 as root.
 </p>
 
 <p>
 Note that this might not always give you the latest stable Tor version, but
 you will receive important security fixes. To make sure that you're running
 the latest stable version of Tor, see option two below.
 </p>
 
 <p>
 Now Tor is installed and running. Move on to <a href="<page
2736971f
 docs/tor-doc-unix>#using">step two</a> of the "Tor on Linux/Unix"
c22b7380
 instructions.
 </p>
 
 <hr />
 
 <a id="ubuntu"></a>
 <a id="packages"></a>
 <h2><a class="anchor" href="#ubuntu">Option two: Tor on Ubuntu or
 Debian</a></h2>
 <br />
 
 <p>
ad472e85
 <b>Do not use the packages in Ubuntu's universe.</b> In the past they have
 not reliably been updated. That means you could be missing stability
 and security fixes.
c22b7380
 </p>
 
529218b3
 <p>
 <b>Raspbian is not Debian.</b> These packages will be confusingly broken
 for Raspbian users, since Raspbian called their architecture armhf but
61a4bb18
 Debian already has an armhf. See <a
 href="http://tor.stackexchange.com/questions/242/how-to-run-tor-on-raspbian-on-the-raspberry-pi">this
 post</a> for details.
529218b3
 </p>
 
c22b7380
 <p>
 You'll need to set up our package repository before you can fetch
3047321b
 Tor. First, you need to figure out the name of your distribution. A
74a3475b
 quick command to run is <tt>lsb_release -c</tt> or <tt>cat /etc/debian_version</tt>.
363e2bcd
 If in doubt about your Debian version, check <a href="http://www.debian.org/releases/">the Debian website</a>.
 For Ubuntu, ask <a href="https://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Table_of_versions">Wikipedia</a>.
c22b7380
 
 Then add this line to your
 <tt>/etc/apt/sources.list</tt>
 file:<br />
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 deb     http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
 </pre>
74a3475b
 where you put the codename of your distribution (i.e. lenny, sid,
b38bc7d3
 saucy or whatever it is)
3047321b
 in place of &lt;DISTRIBUTION&gt;.
c22b7380
 </p>
 
 <p>
 Then add the gpg key used to sign the packages by running the following
 commands at your command prompt:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 gpg --keyserver keys.gnupg.net --recv 886DDD89
 gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
 </pre>
af46839e
 Now refresh your sources, running the following command (as root) at your
 command prompt:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 apt-get update
af46839e
 </pre>
 If there are no errors you're good to continue.
 </p>
 
 <p>
 We provide a Debian package to help you keep our signing key current.  It is
 recommended you use it.  Install it using
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
af46839e
 apt-get install deb.torproject.org-keyring
 </pre>
 </p>
 
 <p>
 To finally install Tor just run:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
af46839e
 apt-get install tor
c22b7380
 </pre>
 </p>
 
 <p>
 Now Tor is installed and running. Move on to <a href="<page
2736971f
 docs/tor-doc-unix>#using">step two</a> of the "Tor on Linux/Unix"
c22b7380
 instructions.
 </p>
 
 <p style="font-size: small">
 The DNS name <code>deb.torproject.org</code> is actually a set of independent
 servers in a DNS round robin configuration.  If you for some reason cannot
 access it you might try to use the name of one of its part instead.  Try
 <code>deb-master.torproject.org</code>,
 <code>mirror.netcologne.de</code> or
 <code>tor.mirror.youam.de</code>.
 </p>
 
 <hr />
 
 <a id="development"></a>
 <h2><a class="anchor" href="#development">Option three: Using the
 development branch of Tor on Debian or Ubuntu</a></h2>
 <br />
 
3047321b
 <p>If you want to use the <a href="<page
 download/download>#packagediff">development branch</a> of Tor instead
 (more features and more bugs), you need to add a different set of lines
 to your <tt>/etc/apt/sources.list</tt> file:<br />
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 deb     http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
9b79eea1
 deb     http://deb.torproject.org/torproject.org tor-experimental-0.2.5.x-&lt;DISTRIBUTION&gt; main
c22b7380
 </pre>
74a3475b
 where you again substitute the name of your distro (lenny,
b38bc7d3
 sid, saucy, ...) in place of
3047321b
 &lt;DISTRIBUTION&gt;.
c22b7380
 </p>
 
 <p>
 Then run the following commands at your command prompt:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 gpg --keyserver keys.gnupg.net --recv 886DDD89
 gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
 apt-get update
2a20852a
 apt-get install tor deb.torproject.org-keyring
c22b7380
 </pre>
 </p>
 
 <p>
 Now Tor is installed and running. Move on to <a href="<page
2736971f
 docs/tor-doc-unix>#using">step two</a> of the "Tor on Linux/Unix"
c22b7380
 instructions.
 </p>
 
 <hr />
 
 <a id="source"></a>
 <h2><a class="anchor" href="#source">Building from source</a></h2>
 <br />
 
 <p>
 If you want to build your own debs from source you must first add an
 appropriate <tt>deb-src</tt> line to <tt>sources.list</tt>.
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 # For the stable version.
 deb-src http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
 
 # For the unstable version.
 deb-src http://deb.torproject.org/torproject.org &lt;DISTRIBUTION&gt; main
a6e4983a
 deb-src http://deb.torproject.org/torproject.org tor-experimental-0.2.5.x-&lt;DISTRIBUTION&gt; main
c22b7380
 </pre>
9215766f
 Substitute the name of your distro (wheezy, sid, trusty, ...) in place of &lt;DISTRIBUTION&gt;. Now refresh your sources by running (as root):
 <pre style="margin: 1.5em 0 1.5em 2em">
 apt-get update
 </pre>
 You also need to install the necessary packages to build your own debs and the 
c22b7380
 packages needed to build Tor:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 apt-get install build-essential fakeroot devscripts
 apt-get build-dep tor
 </pre>
 Then you can build Tor in ~/debian-packages:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 mkdir ~/debian-packages; cd ~/debian-packages
 apt-get source tor
 cd tor-*
 debuild -rfakeroot -uc -us
 cd ..
 </pre>
 Now you can install the new package:
9afa5bcd
 <pre style="margin: 1.5em 0 1.5em 2em">
c22b7380
 sudo dpkg -i tor_*.deb
 </pre>
 </p>
 
 <p>
 Now Tor is installed and running. Move on to <a href="<page
2736971f
 docs/tor-doc-unix>#using">step two</a> of the "Tor on Linux/Unix"
c22b7380
 instructions.
 </p>
 
 <hr />
 
 <p>If you have suggestions for improving this document, please <a
 href="<page about/contact>">send them to us</a>. Thanks!</p>
 
 <!-- END MAIN COL -->
2a9aaa80
   </div>
   <div id = "sidecol">
 #include "side.wmi"
 #include "info.wmi"
   </div>
   <!-- END SIDECOL -->
 </div>
 <!-- END CONTENT -->
 #include <foot.wmi>