Loading...
>要学好计算机网络的内容,首先是得对计算机网络有个全貌的概况了解,七层模型, 四层协议,都是需要先理解的概念,本章带你入门计算机网络 [111](https://fingerprintjs.github.io/fingerprintjs/ "111") [222](https://ajlovechina.github.io/fingerprintDemo/ "222") # 1.什...
1.官网下载最新ffmpeg包 地址:https://ffmpeg.zeranoe.com/builds/ 2.解压到指定目录,将bin文件目录添加到path路径(电脑-属性-高级系统设置-环境变量-path-新建) 3.cmd输入:ffmpeg -version显示以下界面表示安装成功:  -profile:v baseline -level 3.0 -s 1920x1080 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls (转出的m3u8文件路径) ``` 如mp4转m3u8 ffmpeg -i G:\sp\1.mp4 -profile:v baseline...
# Linux 安装Mysql 1.检查是否安装Mysql ```shell rpm -qa | grep mysql ``` 2.新建一个临时文件,使用wget下载Mysql安装包 ```shell wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.12-x86_6...
1.禁止显示 index of目录 编辑http.conf文件 ```shell 找到: Options indexes FollowSymLinks 改为: Options FollowSymLinks ``` 2.Apache添加多端口 编辑http.conf文件 在Listen 80处另起一行输入 ```shell Liste...