Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

完善 readme,区分x86和cross #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,25 @@ Streaming_media_broadcasting_system_based_on_IPv4/

## 部署

### Clone 代码
```shell
$ git clone https://github.com/litbubo/Streaming_media_broadcasting_system_based_on_IPv4.git #Github # https://jihulab.com/litbubo/Streaming_media_broadcasting_system_based_on_IPv4.git jihulab
$ cd Streaming_media_broadcasting_system_based_on_IPv4/
```

### X86 Linux
```shell
$ sudo cp -r ./medialib/ /var/
$ cd server/
$ make -f Makefile
$ ./server -R 0 # 守护进程运行
$ cd ../client/
$ make -f Makefile
$ ./start.sh # 启动客户端,为防止丢帧,首次启动务必使用此脚本
```

### Arm
```shell
$ sudo cp -r ./medialib/ /var/
$ cd server/
$ make
Expand Down