git 部分问题记录

git clone完所有文件提示有更改 方法 1:重新设置 Git 索引 重建 Git 索引可以修复因索引损坏导致的问题: rm -f .git/index git reset --hard 这会删除索引并强制重新生成,同时丢弃本地的所有未提交更改。 方法 2…

ffmpeg 部分用法收集

语音合成拼接 点击查看 语音合成 tts   wma转MP3  ffmpeg -i input.wma output.mp3   提取音频为aac ffmpeg -i input.mp4 -c cop…

haproxy 设置 https 证书

haproxy在使用https模式的时候,需要设置证书,这样后端服务器可以使用http服务,对用户来说是个半程的https访问。(没仔细测试后端的https,这样就是全程2段的https) frontend https-in     mode&nbs…

Linux流量监控工具 – iftop (最全面的iftop教程)

在类Unix系统中可以使用top查看系统资源、进程、内存占用等信息。查看网络状态可以使用netstat、nmap等工具。若要查看实时的网络流量,监控TCP/IP连接等,则可以使用iftop。 一、iftop是什么? iftop是类似于top的实时流量监控工具。 官方网站:http://www.ex-…

tcping for windows & linux

下载链接 windows: 来源页面:http://www.elifulkerson.com/projects/ Linux: 来源页面:http://linuxco.de/tcping/tcping.html yum install -y tcptraceroute&…

yum 用法

# 查找命令所属软件包 [root@bogon msls31]# yum whatprovides yum-config-manager Loaded plugins: fastestmirror, refresh-packagekit Loading mirror speeds from cach…

rar & zip

============zip文件的操作================================== zip -r data.zip data 解释:将data文件夹压缩成了data.zip格式。 unzip data.zip 解释:将data.zip文件解压到当前文件夹。 --------…