Attention: These instructions are meant for installing tor
the network daemon i.e. little-t-tor.
For instructions on installing Tor Browser, refer to Tor Browser user manual.
Admin access: To install Tor you need root privileges.
Below all commands that need to be run as root user like apt and dpkg are prepended with '#
', while commands to be run as user with '$
' resembling the standard prompt in a terminal.
Debian / Ubuntu
Không sử dụng các gói package trong không gian Universe của Ubuntu.
In the past they have not reliably been updated.
That means you could be missing stability and security fixes.
Configure Tor package repository.
Enable the Tor Project APT repository by following the instructions.
Package installation
# apt install tor
Fedora
Configure Tor Package repository
Enable the Tor Project's RPM package repository by following the instructions.
Package installation
# dnf install tor
FreeBSD
Package installation
# pkg install tor
OpenBSD
Package installation
# pkg_add tor
macOS
Install a package manager
There are two package managers on OS X: Homebrew and Macports.
Bạn có thể sử dụng trình quản lý gói package mà bạn chọn.
Để cài đặt Homebrew, hãy làm theo các hướng dẫn trên brew.sh.
To install Macports follow the instructions on macports.org.
Package installation
Nếu như bạn đang sử dụng Homebrew trong cửa sổ Terminal, hãy chạy:
# brew install tor
Nếu bạn đang sử dụng Macports trong cửa sổ Terminal, hãy chạy:
$ sudo port install tor
Arch Linux
To install the tor
package on Arch Linux, run:
# pacman -Syu tor
DragonFlyBSD
Bootstrap pkg
DragonFlyBSD's daily snapshots and releases (starting with 3.4) come with pkg
already installed. Upgrades from earlier releases, however, will not have it. If pkg
is missing on the system for any reason, it can be quickly bootstrapped without having to build it from source or even having DPorts installed:
# cd /usr
# make pkg-bootstrap
# rehash
# pkg-static install -y pkg
# rehash
Recommended steps to setup pkg
Here, it will be similar to what we have on a FreeBSD system, and we are going to use HTTPS to fetch our packages, and updates - so here we also need an extra package to help us out (ca_root_nss
).
Installing the ca_root_nss
package:
# pkg install ca_root_nss
For fresh installations, the file /usr/local/etc/pkg/repos/df-latest.conf.sample
is copied to /usr/local/etc/pkg/repos/df-latest
. The files ending in the ".sample" extension are ignored; pkg(8) only reads files that end in ".conf" and it will read as many as it finds.
DragonflyBSD có 2 gói kho lưu trữ packages repositories:
- Avalon (mirror-master.dragonflybsd.org);
- Wolfpond (pkg.wolfpond.org).
We can simply edit the URL used to point out the repositories on /usr/local/etc/pkg/repos/df-latest
and that's it! Remember to use pkg+https:// for Avalon.
Sau khi áp dụng tất cả những thay đổi này, chúng tôi cập nhật lại danh sách các gói package và thử kiểm tra xem là đã có bản cập nhật mới nào để áp dụng chưa:
# pkg update -f
# pkg upgrade -y -f
Package installation
Cài đặt gói package tor
:
# pkg install tor
NetBSD
Setup pkg_add
Modern versions of the NetBSD operating system can be set to use pkgin
, which is a piece of software aimed to be like apt
or yum
for managing pkgsrc binary packages. We are not convering its setup here, and opt to use plain pkg_add
instead.
# echo "PKG_PATH=http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/$(uname -r)/All" > /etc/pkg_install.conf
Package installation
Cài đặt gói package tor
của NetBSD:
# pkg_add tor
Void Linux
Để cài đặt gói package tor
trên Void Linux, vui lòng chạy:
# xbps-install -S tor
Installing Tor from source
Download latest release and dependencies
Bạn có thể tìm thấy bản phát hành Tor mới nhất trên trang web tải xuống.
Nếu như bạn đang xây dựng từ mã nguồn, trước tiên hãy cài đặt libevent, và đảm bảo rằng bạn có openssl và zlib (bao gồm các gói package -devel nếu có).
Install tor
tar -xzf tor-<version>.tar.gz; cd tor-<version>
Replace <version>
with the latest version of tor
, for example, tor-0.4.8.12
./configure && make
Now you can run tor as src/app/tor
(0.4.3.x and later), or you can run make install
(as root if necessary) to install it into /usr/local/
, and then you can start it just by running tor.