Compare commits

...

3 Commits

Author SHA1 Message Date
M0VUB ce25822668
Update README.md
Clean up readme.md
2022-01-10 14:19:30 +00:00
M0VUB 42c3e4de75
Update README.md
Add reload-deamon
2022-01-10 14:16:41 +00:00
M0VUB 9a553c9aae
Update README.md
edit system unit
2022-01-10 14:12:11 +00:00
1 changed files with 20 additions and 6 deletions

View File

@ -1,11 +1,11 @@
# AMBEd Installer for XLXd (Debain 11 Support!)
## ambed-debian-installer
## ambed-debian-installer v2
This installer was orginally created by N5AMD. The script has been slightly changed with updated dependencies & updated links from FTDI. Thanks to all
the contributors on this script! The original script can be found here https://github.com/n5amd/ambed-debian-installer
To continue to use this fork please follow the instructions below:
To continue to use this fork/version please follow the instructions below:
This is a simple install script to install AMBEd, a piece of software that when combined with hardware AMBE vocoder chips and another piece of software, XLXD, can transcode digital voice modes. This script simply runs through the official install instructions found at:
https://github.com/LX3JL/xlxd/blob/master/ambed/readme
@ -15,13 +15,27 @@ https://github.com/LX3JL/xlxd/blob/master/ambed/readme
1. Have a Debian 9, 10 or 11 x86/ARM computer ready and up to date with preferably a 64bit CPU.
Script works with aarch64 and Ubuntu 21.10, tried and tested on ARM. (Pi-4)!!!
3. Plug the AMBE vocoder chips into the server.
4.
```sh
git clone https://github.com/shaymez/ambed-debian-installer
cd ambed-debian-installer
./ambed-debian-installer
./ambe-debian-installer
```
5. Reboot after installation is complete.
### Edit AMBEd system unit for LocalHost
6. If you are running this transcoder on the same LocalHost as XLXd then there is no need to edit. If running AMBED on a remote site then you will need to include
your local IP address in the system unit file. Change the default 127.0.0.1 to your LOCAL IP etc 192.168.1........ otherwise trancoding will not work.
```sh
nano /etc/systemd/system/ambed.service
```
7. If you have changed the system unit file you will need to restart the daemon and restart the AMBEd service.
```sh
systemctl daemon-reload
systemctl restart ambed
```
4. Reboot after installation is complete.
### To interact with AMBEd after installation:
```sh
@ -31,13 +45,13 @@ systemctl start|stop|status|restart ambed
- Logs are via systemctl status
### Watchdog for AMBEd
5. Install additional tools. Assuming you are still in the ambed-debian-installer dir..
8. Install additional tools. Assuming you are still in the ambed-debian-installer dir..
```sh
cd templates
cp watchdog /ambed/watchdog
chmod 0755 /ambed/watchdog
```
6. You can run the watchdog every 5 mins with a cron job
9. You can run the watchdog every 5 mins with a cron job
```sh
*/5 * * * * /ambed/./watchdog >> /ambed/watchdog.log
```