linux安装freeswitch

1.编译安装配置

https://files.freeswitch.org/downloads/libs/

https://www.jianshu.com/p/61ce097c9026

https://blog.csdn.net/sadoshi/article/details/113804713

https://blog.csdn.net/TangVim/article/details/88324960

http://www.voidcn.com/article/p-gsotsdgo-bqn.html

https://www.kancloud.cn/ichenpeng/blog/1090584

2.yum安装

yum install -y https://files.freeswitch.org/repo/yum/centos-release/freeswitch-release-repo-0-1.noarch.rpm epel-release
yum install -y freeswitch-config-vanilla freeswitch-lang-* freeswitch-sounds-*

卸载

yum remove freeswitch-config-vanilla 
yum remove freeswitch-*
yum remove freeswitch-config-*
yum remove freeswitch-lang-*
yum remove freeswitch-sounds-*
#或者
yum list installed | grep freeswitch | awk '{print $1}' | xargs yum -y remove
原文地址:https://www.cnblogs.com/lazy-sang/p/14785285.html