Freeswitch在debian10下的安装及编译

发布时间:2022-07-02 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了Freeswitch在debian10下的安装及编译脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

Installing FreeSWITCH - Package or Source  从apt安装 

apt-get update && apt-get install -y gnupg2 wget lsb-release
wget -O - https://files.freeswitch.org/repo/deb/Debian-release/fsstretch-Archive-keyring.asc | apt-key add -

echo "deb http://files.freeswitch.org/repo/deb/debian-release/ `lsb_release -sc` main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src http://files.freeswitch.org/repo/deb/debian-release/ `lsb_release -sc` main" >> /etc/apt/sources.list.d/freeswitch.list

# you may want to populate /etc/freeswitch at this point.
# if /etc/freeswitch does not exist, the standard vanilla configuration is deployed
apt-get update && apt-get install -y freeswitch-meta-all

 

FreeSWITCH™ is now installed and can be accessed with  FreeSwitch CLI

fs_cli -rRS

 

Building From Source   从源代码编译安装Compiling Release branch (PRoduction)

apt-get update && apt-get install -yq gnupg2 wget lsb-release
wget -O - https://files.freeswitch.org/repo/deb/debian-release/fsstretch-archive-keyring.asc | apt-key add -

echo "deb http://files.freeswitch.org/repo/deb/debian-release/ `lsb_release -sc` main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src http://files.freeswitch.org/repo/deb/debian-release/ `lsb_release -sc` main" >> /etc/apt/sources.list.d/freeswitch.list

apt-get update

# Install dePEndencies required for the build
apt-get build-dep freeswitch

# then let's get the source. Use the -b flag to get a specific branch
cd /usr/src/
git clone https://github.COM/signalwire/freeswitch.git -bv1.10 freeswitch
cd freeswitch

# Because we're in a branch that will go through many rebases, it's
# better to set this one, or you'll get CONFLICTS when pulling (update).
git config pull.rebase true

# ... and do the build
./bootstrap.sh -j
./configure
make
make install

 

参考: https://freeswitch.org/confluence/display/FREESWITCH/Debian+10+Buster

 

脚本宝典总结

以上是脚本宝典为你收集整理的Freeswitch在debian10下的安装及编译全部内容,希望文章能够帮你解决Freeswitch在debian10下的安装及编译所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。