#!/bin/sh
|
|
echo "Step one: requires admin rights and will reboot the system!"
|
|
sudo -s
|
|
#Install NVM
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
|
|
export NVM_DIR="$HOME/.nvm"
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
Echo "Step 2 - please confirm the installations"
|
|
nvm install 13
|
|
apt install make
|
apt install gcc
|
apt install cmake
|
apt install python3
|
|
cd node-modules
|
npm install audify
|
cd ..
|
cd
|
|
|
apt install unzip
|
|
wget https://github.com/almoghamdani/audify/archive/refs/heads/master.zip
|
mv master.zip audify.zip
|
unzip audify.zip
|
cd audify-master
|
|
git clone https://github.com/teletype1/aes67-sender-enhanced.git
|
cd aes67-sender-enhanced
|
npm install
|
|
node aes67 --help
|