Skip to content

Commit 853bcfe

Browse files
authored
Add Rocky 10 RPM Repo to tor_relay.md (#3087)
1 parent a3bf4f1 commit 853bcfe

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

docs/guides/proxies/tor_relay.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ tags:
88
- proxies
99
---
1010

11-
!!! warning "Temporary Hold"
12-
13-
`tor` is currently missing from the EPEL. It will probably be built. The Docs Team will continue to test availability in the EPEL as time allows. For now, your only option is to build `tor` from source, and the instructions for doing that are currently missing here.
14-
1511
## Introduction
1612

1713
[Tor](https://www.torproject.org/) is an anonymity service and software that routes traffic by way of three volunteer-run servers called relays. The three-hop design is to ensure privacy by resisting surveillance attempts.
@@ -36,6 +32,24 @@ To install Tor, you need to first install the EPEL (Extra Packages for Enterpris
3632
dnf -y install epel-release && dnf -y update
3733
```
3834

35+
If you're on Rocky Linux 10, you need to add the RPM repository. The author uses `vi` for this, but if you prefer `nano` or something else, go ahead and substitute that in:
36+
37+
```bash
38+
vi /etc/yum.repos.d/tor.repo
39+
```
40+
41+
Insert the following:
42+
43+
```bash
44+
[tor]
45+
name=Tor for Enterprise Linux $releasever - $basearch
46+
baseurl=https://rpm.torproject.org/centos/$releasever/$basearch
47+
enabled=1
48+
gpgcheck=1
49+
gpgkey=https://rpm.torproject.org/centos/public_gpg.key
50+
cost=100
51+
```
52+
3953
Then install Tor:
4054

4155
```bash
@@ -44,7 +58,7 @@ dnf -y install tor
4458

4559
## Configuring Tor
4660

47-
With the packages installed, you need to configure Tor. The author uses `vi` for this, but if you prefer `nano` or something else, go ahead and substitute that in:
61+
With the packages installed, you need to configure Tor:
4862

4963
```bash
5064
vi /etc/tor/torrc

0 commit comments

Comments
 (0)