How To Install coturn-utils on CentOS 8
Introduction
In this tutorial we learn how to install coturn-utils
on CentOS 8.
What is coturn-utils
This package contains the TURN client utils.
We can use yum
or dnf
to install coturn-utils
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install coturn-utils.
Install coturn-utils on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install coturn-utils
using dnf
by running the following command:
sudo dnf -y install coturn-utils
Install coturn-utils on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install coturn-utils
using yum
by running the following command:
sudo yum -y install coturn-utils
How To Uninstall coturn-utils on CentOS 8
To uninstall only the coturn-utils
package we can use the following command:
sudo dnf remove coturn-utils
coturn-utils Package Contents on CentOS 8
/usr/bin/turnutils_natdiscovery
/usr/bin/turnutils_oauth
/usr/bin/turnutils_peer
/usr/bin/turnutils_stunclient
/usr/bin/turnutils_uclient
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/61aff921e8fc696ba5e51de2ac9538a1871360
/usr/lib/.build-id/49
/usr/lib/.build-id/49/273127f2e545696355e37f5c41201f52d729e6
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/6b6bed89cb0b53aa9f01ae9b508b89decb2e01
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/dc953a016081e89a598d034d9bfaaffac60791
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/9548d06f05c233e2069af8bd0a64111db58680
/usr/share/doc/coturn/README.turnutils
/usr/share/licenses/coturn-utils
/usr/share/licenses/coturn-utils/LICENSE
/usr/share/man/man1/turnutils.1.gz
/usr/share/man/man1/turnutils_natdiscovery.1.gz
/usr/share/man/man1/turnutils_oauth.1.gz
/usr/share/man/man1/turnutils_peer.1.gz
/usr/share/man/man1/turnutils_stunclient.1.gz
/usr/share/man/man1/turnutils_uclient.1.gz
References
Summary
In this tutorial we learn how to install coturn-utils
on CentOS 8 using yum and dnf.