How To Install tinc on Fedora 36
Introduction
In this tutorial we learn how to install tinc
on Fedora 36.
What is tinc
tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and encryption to create a secure private network between hosts on the Internet. Because the tunnel appears to the IP level network code as a normal network device, there is no need to adapt any existing software. This tunnelling allows VPN sites to share information with each other over the Internet without exposing any information to others.
We can use yum
or dnf
to install tinc
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install tinc.
Install tinc on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install tinc
using dnf
by running the following command:
sudo dnf -y install tinc
Install tinc on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install tinc
using yum
by running the following command:
sudo yum -y install tinc
How To Uninstall tinc on Fedora 36
To uninstall only the tinc
package we can use the following command:
sudo dnf remove tinc
tinc Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/9b
/usr/lib/.build-id/9b/cdc50f45ab69f4fe458d76e41d645b57c57d4c
/usr/lib/systemd/system/tinc.service
/usr/lib/systemd/system/[email protected]
/usr/sbin/tincd
/usr/share/doc/tinc
/usr/share/doc/tinc/AUTHORS
/usr/share/doc/tinc/COPYING.README
/usr/share/doc/tinc/NEWS
/usr/share/doc/tinc/README
/usr/share/doc/tinc/THANKS
/usr/share/doc/tinc/sample-config
/usr/share/doc/tinc/sample-config/hosts
/usr/share/doc/tinc/sample-config/hosts/alpha
/usr/share/doc/tinc/sample-config/hosts/beta
/usr/share/doc/tinc/sample-config/rsa_key.priv
/usr/share/doc/tinc/sample-config/tinc-down
/usr/share/doc/tinc/sample-config/tinc-up
/usr/share/doc/tinc/sample-config/tinc.conf
/usr/share/doc/tinc/texinfo.tex
/usr/share/info/tinc.info.gz
/usr/share/licenses/tinc
/usr/share/licenses/tinc/COPYING
/usr/share/man/man5/tinc.conf.5.gz
/usr/share/man/man8/tincd.8.gz
References
Summary
In this tutorial we learn how to install tinc
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).