上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 98 下一页
摘要: 替换字典值,路径中的符号 >>> a={"cover": "cover_images\\test.png"} >>> >>> a=eval(str(a).replace("\\\\","/")) >>> >>> print(a) {'cover': 'cover_images/test.png'} 阅读全文
posted @ 2022-12-11 20:20 悟透 阅读(327) 评论(0) 推荐(0)
摘要: 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 修改错误会导致系统命令行和其他界面失效,启动系统时报错。 制作 ubuntu 的启动 阅读全文
posted @ 2022-12-06 13:16 悟透 阅读(2777) 评论(0) 推荐(0)
摘要: make 时总提示 “Makefile:142: recipe for target 'xxx' failed ” 解决方法: 路径里,不要在有中文的路径 阅读全文
posted @ 2022-12-06 13:00 悟透 阅读(1317) 评论(0) 推荐(0)
摘要: 问题: 如何将两个数字拼接 解决方法:将整形数字转成字符串拼接后,在转回整形。 >>> a = 1 >>> b = 2 >>> c = str(a) + str(b) >>> print(int(c)) 12 阅读全文
posted @ 2022-12-02 23:33 悟透 阅读(457) 评论(0) 推荐(0)
摘要: 错误:NameError: name 'getopt' is not defined 原因:没有引入模块,脚本里添加下面内容 import getopt 错误:NameError: name 'argv' is not defined 原因:没有给 main() 函数传入 argv 参数。即便多次跳 阅读全文
posted @ 2022-12-02 14:39 悟透 阅读(291) 评论(0) 推荐(0)
摘要: 原文:https://mp.weixin.qq.com/s/Mm1NFoyz7gy5QtionKLq9w 可以很肯定地说,find 命令是 Linux 后台开发人员必须熟知的操作之一,除非您使用的是 Windows Server。 对于技术面试,它也是一个热门话题。让我们看一道真题: 如果你的 Li 阅读全文
posted @ 2022-11-18 10:30 悟透 阅读(112) 评论(0) 推荐(0)
摘要: NotepadNext 项目地址:https://github.com/dail8859/NotepadNext/ 下载 .AppImage 文件: https://github.com/dail8859/NotepadNext/releases/tag/v0.5.5 使用: 启动 .AppImag 阅读全文
posted @ 2022-11-09 14:21 悟透 阅读(1507) 评论(0) 推荐(0)
摘要: 一、安装相关依赖或工具 sudo apt install -y yasm sudo apt-get install -y autoconf automake build-essential git libass-dev libfreetype6-dev libsdl2-dev \ libtheora 阅读全文
posted @ 2022-11-09 12:21 悟透 阅读(260) 评论(0) 推荐(0)
摘要: 原因: ubuntu系统默认开启多显示器,鼠标会去到另一个显示器(就算用户实际就一个显示器,系统也会当成两) 解决方法: 方法一: 鼠标一直向 左移动,就能看到了。 方法二: 设置成单显示器 桌面 -- (右上角) -- 设置 -- 显示器 , 显示模式 -- 单显示器, 点 “应用” 确认。 默认 阅读全文
posted @ 2022-11-02 09:41 悟透 阅读(4856) 评论(0) 推荐(0)
摘要: 一、问题: VHD装完的 ubuntu 22.04 没有WIFI联网图标、不能用手机USB上网、屏幕亮度不能调整。 二、原因分析: 1. ubuntu 22.04 使用的的内核是 5.14 版本,而网上说的要重新编译文件, 才能手机USB上网,是5.10以下版本才需要,经过实测也确实没有解决问题。 阅读全文
posted @ 2022-11-01 23:39 悟透 阅读(2515) 评论(0) 推荐(0)
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 98 下一页