摘要:
自己的联想笔记本每次重启都会自动打开小键盘,每次按FN+F8关闭小键盘比较烦,通过修改注册表可以默认关闭小键盘: 开始 –> 运行 –> 输入 Regedit –> 找到HK_USERS –> 选择 .DEFAULT –> Control Panel –> Keyboard,双击右侧 Initial 阅读全文
摘要:
server { listen 80; server_name localhost; listen 443 ssl default_server; #listen [::]:443 ssl default_server; #ipv6 ssl_certificate /usr/local/nginx/ 阅读全文
摘要:
原因:服务器不支持ipv6 解决:注释掉nginx配置下面这句 阅读全文
摘要:
推流修改比特率和帧数: streamlink $URL 720p -O | ffmpeg -re -i pipe:0 -vcodec h264 -b:v 300k -r 15 -c:a aac -f flv $RTMP https://blog.csdn.net/DaveBobo/article/d 阅读全文
摘要:
1.到python的官网去下载python3.7.2安装包,必须是Linux版本的 2.在/usr/tmp下下载python安装包 wget https://www.python.org/ftp/python/3.*.*/Python-3.*.*.tgz 3.解压python到/usr/local/ 阅读全文
摘要:
1、在虚拟机Ubuntu系统中打开终端 (ctrl+shift+T)输入命令 sudo vim /etc/default/grub 2、在vim打开的文件中找到GRUB_CMDLINE_LINUX_DEFAULT将其修改为GRUB_CMDLINE_LINUX_DEFAULT="quiet splas 阅读全文
摘要:
grubby --update-kernel=ALL --args="video=hyperv_fb:1600x900" reboot https://blog.csdn.net/superlover_/article/details/90581400 https://www.cnblogs.com 阅读全文
摘要:
centos: echo 密码 | passwd --stdin 用户名 ubuntu:(需先设置一个密码) sudo passwd username https://blog.csdn.net/mi_lan_kun_de_la/article/details/102660654 阅读全文
摘要:
nginx配置文件80配置中增加 rewrite ^ https://$http_host$request_uri? permanent; 如图: https://blog.csdn.net/jiandangxiaodiao/article/details/85011187 阅读全文
摘要:
官方版本列表:http://nginx.org/download/ 1.安装 wget http://nginx.org/download/nginx-1.10.3.tar.gz tar -zxvf nginx-1.10.3.tar.gz cd nginx-1.10.3 ./configure ma 阅读全文
摘要:
1.创建服务 sc create ServerName binpath= "E:\MySql5.5\bin\mysqld.exe" 2.启动服务 sc start ServerName 3.删除服务 sc delete ServerName https://www.cnblogs.com/shinn 阅读全文
摘要:
通用 #查看cpu使用情况 top -bn 1 -i -c Nginx #编辑配置文件vi /usr/local/nginx/conf/nginx.conf #服务重启systemctl restart nginx.service #服务开机启动systemctl enable nginx.serv 阅读全文
摘要:
1.准备 1)Centos7镜像 官方:https://www.centos.org/ 阿里镜像:http://mirrors.aliyun.com/centos/ 2)安装windows7系统的电脑 3)U盘(8G空间以上) 4)u盘刻录软件:UltraISO(建议版本高于9.3.6) 2.分配c 阅读全文
摘要:
ln -s 源文件 目标目录 https://blog.csdn.net/ljw_jiawei/article/details/91044595 阅读全文
摘要:
https://blog.csdn.net/vinkim/article/details/81546333 https://zhuanlan.zhihu.com/p/31417084 阅读全文
摘要:
https://blog.csdn.net/inchat/article/details/104294302 阅读全文
摘要:
1.下载nuget.exe 下载地址:https://dist.nuget.org/win-x86-commandline/latest/nuget.exe 或者 https://dist.nuget.org/ 下载后不用安装,放到文件夹即可 2.添加nuget.exe的path路径,例如nuget 阅读全文
摘要:
server { listen 80; server_name example.com *.example.com; location / { proxy_pass http://localhost:5000; proxy_http_version 1.1; proxy_set_header Upg 阅读全文
摘要:
1 准备工具 使用yum安装git [root~]# yum -y install git 下载nginx-rtmp-module,官方github地址 // 通过git clone 的方式下载到服务器上 [root~]# git clone https://github.com/arut/ngin 阅读全文
摘要:
C#调用python脚本错误: 使用cmd直接运行脚本报错: TabError: inconsistent use of tabs and spaces in indentation 查看日志报错: Python脚本运行出现语法错误:IndentationError: unindent does n 阅读全文