1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Oracle LinuxにTorをインストールする方法にハマったので備忘録

Last updated at Posted at 2021-09-22

まずは公式を見る

yum install epel-release # エラーになりました
  • /etc/yum.repos.d/tor.repoを作成して追加?
[tor]
name=Tor for Enterprise Linux $releasever - $basearch
baseurl=https://rpm.torproject.org/centos/$releasever/$basearch
enabled=1
gpgcheck=1
gpgkey=https://rpm.torproject.org/centos/public_gpg.key
cost=100
  • からのyum install torは余裕でエラーになった

解決方法

  • 全部有効化してやる
sed -i -e "s/enabled=0/enabled=1/" /etc/yum.repos.d*.repo
yum install tor

Oracle Linuxを触った感想

  • epelを有効化する情報がすぐに調べて出てこないのがありえない、Alway Freeだから使ってやってる
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?