]> git.lizzy.rs Git - torbrowser-launcher.git/blob - README.md
added xz-utils as a dependency (fixes #93)
[torbrowser-launcher.git] / README.md
1 # Tor Browser Launcher
2
3 Tor Browser Launcher is intended to make the Tor Browser Bundle (TBB) easier to maintain and use for GNU/Linux users. You install ```torbrowser-launcher``` from your distribution's package manager and it handles everything else, including:
4
5 * Downloading the most recent version of TBB for you, in your language and for your architecture
6 * Automatically updating (while preserving your bookmarks and preferences)
7 * Verifying the TBB's [GnuPG signature](http://www.gnupg.org/gph/en/manual/x135.html)
8 * Adding a "Tor Browser" application launcher to your desktop environment's menu
9
10 If you use Ubuntu, you can install it now from my PPA (see "Installing in Ubuntu" below). [Soon](https://github.com/micahflee/torbrowser-launcher/issues/31) it will be in Debian. To install it in any other distribution, follow the "Quick Start" instructions.
11
12 ## Quick Start
13
14 First, clone the repository:
15
16     git clone https://github.com/micahflee/torbrowser-launcher.git
17     cd torbrowser-launcher
18
19 Then install dependencies, build a package, and install:
20
21 ### Debian, Ubuntu, Linux Mint, etc.
22
23     sudo apt-get install build-essential python-all python-stdeb python-gtk2 python-psutil python-twisted python-lzma wmctrl gnupg fakeroot xz-utils
24     ./build_deb.sh
25     sudo dpkg -i deb_dist/torbrowser-launcher_*.deb
26
27 Optionally you can install python-pygame if you want to play a modem sound while Tor Browser is launching.
28
29 ### Red Hat, Fedora, CentOS, etc.
30
31     sudo yum install python-psutil python-twisted wmctrl gnupg fakeroot
32     ./build_rpm.sh
33     sudo yum install dist/torbrowser-launcher-*.rpm
34
35 Optionally you can install pygame if you want to play a modem sound while Tor Browser is launching.
36
37 ### Run without installing
38
39 Install the dependencies: sadly, not all of them are available in virtualenv, so you will need to install (some of) them system-wide.
40 Then, you can run: `TBL_SHARE=share ./torbrowser-launcher`
41
42 ## Installing in Ubuntu
43
44 I've created a PPA where I'm maintaining torbrowser-launcher binaries. You can install in an Ubuntu-based distribution like this:
45
46     sudo add-apt-repository ppa:micahflee/ppa
47     sudo apt-get update
48     sudo apt-get install torbrowser-launcher
49
50 ## Enabling AppArmor Profiles
51
52 AppArmor is a Linux kernel hardening technology that lets you confine specific programs to only use specific resources. For example, if you visit a website that exploits a bug in the Tor Browser to get arbitrary code execution, the attacker won't be able to access files in ~/.gnupg. Here's how you turn on the AppArmor profiles for Tor Browser Launcher and for the programs bundled in the TBB.
53
54     sudo apt-get install apparmor-utils
55     sudo aa-enforce /etc/apparmor.d/usr.bin.torbrowser-launcher
56     sudo aa-enforce /etc/apparmor.d/torbrowser.start-tor-browser
57     sudo aa-enforce /etc/apparmor.d/torbrowser.Browser.firefox
58     sudo aa-enforce /etc/apparmor.d/torbrowser.Tor.tor
59