debian11中lua改为5.1

This commit is contained in:
wandoubaba 2023-10-11 15:14:17 +08:00
parent 04e7b6c95c
commit 90e4007758
6 changed files with 47 additions and 7 deletions

View File

@ -36,6 +36,7 @@ module.exports = {
sidebarDepth: 1, // 可选的, 默认值是 1 sidebarDepth: 1, // 可选的, 默认值是 1
children: [ children: [
'/freeswitch/debian11', '/freeswitch/debian11',
'/freeswitch/mod_unimrcp',
'/freeswitch/debian-service', '/freeswitch/debian-service',
'/freeswitch/ubuntu1604' '/freeswitch/ubuntu1604'
] ]
@ -64,6 +65,7 @@ module.exports = {
sidebarDepth: 1, // 可选的, 默认值是 1 sidebarDepth: 1, // 可选的, 默认值是 1
children: [ children: [
'/freeswitch/debian11', '/freeswitch/debian11',
'/freeswitch/mod_unimrcp',
'/freeswitch/debian-service', '/freeswitch/debian-service',
'/freeswitch/ubuntu1604', '/freeswitch/ubuntu1604',
'/freeswitch/fail2ban' '/freeswitch/fail2ban'

38
docs/docker/command.md Normal file
View File

@ -0,0 +1,38 @@
# docker命令备忘
## 基础操作
### 查看磁盘占用
```sh
# 查看镜像、容器、卷的总磁盘占用情况
docker system df
# 查看每个image、container的详细空间占用情况
docker system df -v
```
## 清理操作
### 删除关闭的容器和未使用的镜像
```sh
docker system prune -a
```
## 镜像操作
### 把容器导出为镜像
```sh
docker commit <容器ID或容器名> <镜像名>:<镜像tag>
```
### 镜像导入导出save & load
```sh
docker save -o <要保存的文件名>.tar <本地镜像名>:<本地镜像tag>
```
```sh
docker load > <镜像文件名>
```

View File

@ -1,8 +1,8 @@
# Debian11编译安装FreeSWITCH1.10 # Debian11编译安装FreeSWITCH1.10.10
> wandoubaba / 2023-01-15 > wandoubaba / 2023-01-15
本文以Debian11和FreeSWITCH1.10为例介绍一步一步编译安装FreeSWITCH的方法。 本文以Debian11和FreeSWITCH1.10.10为例介绍一步一步编译安装FreeSWITCH的方法。
## 先下载/克隆各种资源 ## 先下载/克隆各种资源
@ -10,7 +10,7 @@
# 假设所有资源都下载到/opt/目录下 # 假设所有资源都下载到/opt/目录下
cd /opt cd /opt
# 下载FreeSWITCH源码 # 下载FreeSWITCH源码
git clone -b v1.10 https://github.com/signalwire/freeswitch freeswitch git clone -b v1.10.10 https://github.com/signalwire/freeswitch freeswitch
# 下载libks源码 # 下载libks源码
git clone https://github.com/signalwire/libks git clone https://github.com/signalwire/libks
# 下载sofia-sip源码 # 下载sofia-sip源码
@ -39,7 +39,7 @@ sudo apt-get install -y \
libldns-dev \ libldns-dev \
python3-dev \ python3-dev \
libavformat-dev libswscale-dev libavresample-dev \ libavformat-dev libswscale-dev libavresample-dev \
liblua5.2-dev \ liblua5.1-dev \
libopus-dev \ libopus-dev \
libpq-dev \ libpq-dev \
libshout3-dev libmpg123-dev libmp3lame-dev \ libshout3-dev libmpg123-dev libmp3lame-dev \

View File

@ -1,4 +1,4 @@
# 使用fail2ban自动拦截向FreeSWITCH发起恶意注册的IP地址 # 使用fail2ban自动拦截恶意注册
> wandoubaba / 2023-07-10 > wandoubaba / 2023-07-10

View File

@ -1,4 +1,4 @@
## FreeSWITCH安装mod_unimrcp模块 ## FreeSWITCH安装mod_unimrcp模块
> wandoubaba / 2023-01-18 > wandoubaba / 2023-01-18

View File

@ -1,4 +1,4 @@
# 在ubuntu16.04系统上安装freeswitch1.6 # Ubuntu16.04安装freeswitch1.6
## 操作系统和软件版本 ## 操作系统和软件版本