How To Install badvpn on Fedora 34
Introduction
In this tutorial we learn how to install badvpn
on Fedora 34.
What is badvpn
BadVPN is a layer 2 peer-to-peer VPN solution.
We can use yum
or dnf
to install badvpn
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install badvpn.
Install badvpn on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install badvpn
using dnf
by running the following command:
sudo dnf -y install badvpn
Install badvpn on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install badvpn
using yum
by running the following command:
sudo yum -y install badvpn
How To Uninstall badvpn on Fedora 34
To uninstall only the badvpn
package we can use the following command:
sudo dnf remove badvpn
badvpn Package Contents on Fedora 34
/usr/bin/badvpn-client
/usr/bin/badvpn-flooder
/usr/bin/badvpn-ncd
/usr/bin/badvpn-ncd-request
/usr/bin/badvpn-server
/usr/bin/badvpn-tun2socks
/usr/bin/badvpn-tunctl
/usr/bin/badvpn-udpgw
/usr/lib/.build-id
/usr/lib/.build-id/16
/usr/lib/.build-id/16/2ba0126cf5a106019935b49b83a69e421eac8d
/usr/lib/.build-id/21
/usr/lib/.build-id/21/190630e1c70ded0079702557ecf90ffcfd2f02
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/203c0da6605990547a932dc86e4d7ee759b1ae
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/adc3c63fca807e444dbe2a136581dee20b241f
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/4c61e9ebaa2bf40f28f0685bd6a5bbfd0af56a
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/4977ca5e14e703233798cf8301d1a1ba3c9c8d
/usr/lib/.build-id/e5
/usr/lib/.build-id/e5/326b9c6a6b1a83e354d711da1c8298deccd9d2
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/236d3f4910494ca115bebadfded74d4074757c
/usr/share/licenses/badvpn
/usr/share/licenses/badvpn/COPYING
/usr/share/man/man7/badvpn.7.gz
/usr/share/man/man8/badvpn-client.8.gz
/usr/share/man/man8/badvpn-server.8.gz
/usr/share/man/man8/badvpn-tun2socks.8.gz
References
Summary
In this tutorial we learn how to install badvpn
on Fedora 34 using yum and dnf.