poc-3119 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
poc-3119: command not found
or when using sudo you get the following error message
sudo: poc-3119: command not found
Solutions to poc-3119: command not found
How To Fix poc-3119: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu poc-3119 is provided by poc-streamer package.
poc-streamer is:
poc is a suite of MP3 tools and MP3 streaming programs. It can stream MP3s over HTTP, RTP multicast (RFC 2250 and RFC 3119) and a special multicast protocol to enable the use of Forward Error Correction to protect the MP3 stream against packet loss. It can also stream OGGs over HTTP.
In addition to the streaming programs, poc contains two MP3 tools: mp3cue and mp3cut. mp3cue can cut a big MP3 file according to a tracklisting contained in a .cue file. mp3cut can split and concatenate MP3 files according to time slices given on the command line. mp3cut cuts MP3 files on ADU (autonomous data units) frames to ensure best quality.
To fix this problem, we can install more using the command below.
sudo apt-get -y install poc-streamer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install poc-streamer.
sudo apt -y install poc-streamer
Or if you have aptitude installed you can use the following command.
sudo aptitude install poc-streamer
Summary
In this tutorial we learn how to fix poc-3119 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.