ubuntu安装srs
时间: 2023-10-20 12:34:53 浏览: 333
srs2.0安装文档.docx
为了安装SRS(Simple Realtime Server),请按照以下步骤进行操作:
1. 打开终端,使用以下命令更新包列表:
```
sudo apt update
```
2. 安装依赖库:
```
sudo apt install -y build-essential libssl-dev cmake mercurial
```
3. 克隆 SRS 的源代码仓库:
```
git clone https://github.com/ossrs/srs.git
```
4. 进入源代码目录:
```
cd srs/trunk
```
5. 构建和安装 SRS:
```
./configure && make
sudo make install
```
6. 启动 SRS 服务:
```
sudo /usr/local/srs/srs -c conf/srs.conf
```
现在,你应该已经成功安装和启动了 SRS。你可以根据需要修改配置文件 `srs.conf` 来调整服务器设置。
阅读全文