How To Install icecast on Fedora 34
Introduction
In this tutorial we learn how to install icecast
on Fedora 34.
What is icecast
Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. It is very versatile in that new formats can be added relatively easily and supports open standards for communication and interaction.
We can use yum
or dnf
to install icecast
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install icecast.
Install icecast 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 icecast
using dnf
by running the following command:
sudo dnf -y install icecast
Install icecast 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 icecast
using yum
by running the following command:
sudo yum -y install icecast
How To Uninstall icecast on Fedora 34
To uninstall only the icecast
package we can use the following command:
sudo dnf remove icecast
icecast Package Contents on Fedora 34
/etc/icecast.xml
/etc/logrotate.d/icecast
/usr/bin/icecast
/usr/lib/.build-id
/usr/lib/.build-id/88
/usr/lib/.build-id/88/4b2d06877fb099561221eee95bd710268ecd05
/usr/lib/systemd/system/icecast.service
/usr/share/doc/icecast
/usr/share/icecast
/usr/share/icecast/admin
/usr/share/icecast/admin/listclients.xsl
/usr/share/icecast/admin/listmounts.xsl
/usr/share/icecast/admin/manageauth.xsl
/usr/share/icecast/admin/moveclients.xsl
/usr/share/icecast/admin/response.xsl
/usr/share/icecast/admin/stats.xsl
/usr/share/icecast/admin/updatemetadata.xsl
/usr/share/icecast/admin/vclt.xsl
/usr/share/icecast/admin/xspf.xsl
/usr/share/icecast/web
/usr/share/icecast/web/auth.xsl
/usr/share/icecast/web/icecast.png
/usr/share/icecast/web/key.png
/usr/share/icecast/web/server_version.xsl
/usr/share/icecast/web/status-json.xsl
/usr/share/icecast/web/status.xsl
/usr/share/icecast/web/status3.xsl
/usr/share/icecast/web/style.css
/usr/share/icecast/web/tunein.png
/usr/share/icecast/web/xml2json.xslt
/usr/share/licenses/icecast
/usr/share/licenses/icecast/COPYING
/var/log/icecast
References
Summary
In this tutorial we learn how to install icecast
on Fedora 34 using yum and dnf.