其他分享
首页 > 其他分享> > debian11安装SRS教程

debian11安装SRS教程

作者:互联网

一、安装依赖
apt install -y --force-yes git make sudo tar unzip pkg-config gcc g++
二、下载SRS
进入要安装的目录,如:cd /usr
执行:git clone -b 4.0release https://gitee.com/ossrs/srs.git
三、修改安装文件
找到./srs/trunk/auto/depends.sh
搜索yum替换为apt
搜索gcc-c++替换为g++
四、修改配置编译文件
找到下面文件,其中Platform-Linux-5.11.22-GCC10.2.1-SRS4-x86_64目录可能由于版本原因略有不同。
./srs/trunk/Platform-Linux-5.11.22-GCC10.2.1-SRS4-x86_64/libsrtp-2-fit/crypto/math/datatypes.c
搜索char bit_string[MAX_PRINT_STRING_LEN]; 前面加static
即:static char bit_string[MAX_PRINT_STRING_LEN];
五、安装运行
./configure && make && ./objs/srs -c conf/srs.conf
OK了


备注:
查看运行状态命令:./etc/init.d/srs status
可以看到程序运行的进程号

结束进程命令:kill -9 进程号
修改配置文件后可以通过./objs/srs -c conf/srs.conf重新运行程序。

标签:教程,git,22,SRS,objs,srs,conf,debian11,安装
来源: https://www.cnblogs.com/surplus/p/15319061.html