How to resolve -bash: netstat: command not found centos stream 9

How to resolve -bash: netstat: command not found centos stream 9

Today, after installing a centos stream 9 minimal, Getting the error like -bash: netstat: command not found centos stream 9. Let see how to resolve this.New Install Asterisk 18 from source on CentOS Stream 8 In Linux distributions such as CentOS, the package that comprises the net-stat is known as “net-tools“. The “net-tools” package has … Read more

python script to STT output in a text file

To output the Speech-to-Text (STT) transcription into a text file using Vosk and Python, you can modify the AGI script or any standalone Python script to write the transcription to a file after processing the audio.SPEECH RECOGNITION WITH GOOGLE CLOUD API ON ASTERISK 15 python script to STT output in a text file Here is … Read more

New Install Asterisk 18 from source on CentOS Stream 8

Since Centos 7/8 approaches it’s EOL, below you will find all necessary commands and files to new install Asterisk 18 from source on Centos 8 Stream.Installing Asterisk 20 From source On Rocky 9 Prerequisites First of all make sure that you run all command as root user. Just run su command and enter root password. Update the system and install required dependencies. … Read more

How to save audio stream from Asterisk to a file via WebSocket

To save an audio stream from Asterisk to a file via WebSocket, you need to capture the audio being streamed from Asterisk and write it to an audio file format (such as WAV or PCM). Here’s a step-by-step guide to accomplish this: create web socket and save data in a text file Requirements: Asterisk: To … Read more

create web socket and save data in a text file

Today, we will create a websocket in linux and save the data received in a text file.webrtc implementation asterisk : Webphone To create a WebSocket server in Linux that listens for incoming WebSocket connections and saves the received data to a text file, you can use Python with the websockets library. Below is a step-by-step … Read more

How to capture and analyze traffic with tcpdump

Network administrators use tcpdump to analyze traffic in Linux systems. Learn how to install and use tcpdump, as well as examine the results of captured traffic. tcpdump : Linux Network Sniffer Tool Protocol analyzers, also known as packet sniffers, capture network data for display or use by administrators. The captures include transport layer content, application layer … Read more

Installing Asterisk 20 From source On Rocky 9

Update your system and install the required dependencies. At the same time, install a convenient text editor, for example Nano, and the wget and tar applications to download and unpack the installer. If we are used to the yum installer, here we will use the DNF package manager, which is its newer equivalent. Webrtc with … Read more

html drop down with search from table php mysql

To create an HTML dropdown with a search functionality that fetches data from a MySQL table using PHP and displays it with Bootstrap styling, you can follow these steps: Learn more How to SUM Columns value in MYSQL Set up the MySQL database and table (assuming you already have a database and table ready). Create … Read more

How to Install and Use FFmpeg on CentOS 8

Here, we will see how to Install and Use FFmpeg on CentOS 8. Convert audio files for Asterisk FFmpeg is a free and open-source collection of tools for handling multimedia files. With FFmpeg, you can convert between various video and audio formats, set sample rates, capture streaming audio/video, and resize videos. Now we will see … Read more