摘要: 第〇部分 准备工作 1、查询老光猫上的 LOID (电信、联通)、Password(移动)。1.1 用光猫默认账号密码(详见光猫底部铭牌)访问光猫; 状态-状态总览:宽带识别码(LOID): 网络-远程管理-宽带识别码(LOID)认证-宽带识别码(LOID):2、记录老光猫的互联网、IPTV的默认配 阅读全文
posted @ 2025-11-07 21:03 遇见、 阅读(32) 评论(0) 推荐(0)
摘要: chmod和chmod -R目录常用于修改文件,文件夹权限。加上-R参数会迭代的修改子目录和文件的权限。 如果只想修改文件的权限,文件夹的权限不受影响。则可以使用下面的方法: chmod 750 `find /a /b -type f` 会修改文件夹/a,/b下的文件的权限。同时会迭代的修改/a,/ 阅读全文
posted @ 2025-10-13 08:41 遇见、 阅读(17) 评论(0) 推荐(0)
摘要: 在 /etc/udev/rules.d/ 目录下建立挂载规则 文件名后缀为 xxx.rules KERNEL=="sd[a-z][1]", ACTION=="add", SUBSYSTEMS=="usb", SUBSYSTEM=="block", RUN{program}+="/usr/bin/sy 阅读全文
posted @ 2025-09-17 21:09 遇见、 阅读(17) 评论(0) 推荐(0)
摘要: yt-dlp 下 win7 x64 打开会提示一下错误 failed to execute script pyi_rth_multiprocessing 需要安装系统补丁 kb2533623 https://download.microsoft.com/download/f/1/0/f106e158 阅读全文
posted @ 2025-08-09 21:00 遇见、 阅读(55) 评论(0) 推荐(0)
摘要: 剪辑指定时间的视频 ffmpeg -i input.mp4 -ss 00:01:00 -t 30 -c copy output.mp4 ffmpeg -i input.mp4 -ss 00:01:10 -to 00:01:50 -c copy output_to.mp4 -to 指定结束时间 -ss 阅读全文
posted @ 2025-08-02 21:37 遇见、 阅读(31) 评论(0) 推荐(0)
摘要: sed -i 's/旧字符串/新字符串/g' /etc/apt/source.list 如果vim也可以直接替换文本 :%s/old/new/g 阅读全文
posted @ 2025-07-19 10:59 遇见、 阅读(5) 评论(0) 推荐(0)
摘要: 关于树莓派(debian 系统)我看很多网上的教程都是修改 /etc/network/interfaces 文件,其实这种方法是不对的,其中提示信息很明确: # Please note that this file is written to be used with dhcpcd # For st 阅读全文
posted @ 2024-11-02 22:31 遇见、 阅读(148) 评论(0) 推荐(0)
摘要: 下载谷歌 chrome 浏览器离线安装包的方法 进入 Chrome 官网:https://www.google.cn/chrome/ 修改地址加上参数: - ?standalone=1 代表离线安装包 - platform=win 32位win - platform=mac mac版本 也可以安装完 阅读全文
posted @ 2024-09-23 22:49 遇见、 阅读(12862) 评论(0) 推荐(3)
摘要: ① imagex 解包 install.wim 文件到移动硬盘C盘 ② 利用 regedit 加载单元 修改移动硬盘内的系统注册表 Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet00α\Contro 阅读全文
posted @ 2024-09-12 23:25 遇见、 阅读(71) 评论(0) 推荐(0)
摘要: 注册表HKLM\system注意 注册表项包含windows启动的三个控件组(额外还可能存在一个备份控件组)。在初始状态下。它们各自是ControlSet001、ControlSet002以及CurrentControlSet。这些控件组中包括了操作系统配置的信息,比方服务、驱动、系统控制、枚举信息 阅读全文
posted @ 2024-09-12 23:15 遇见、 阅读(354) 评论(0) 推荐(0)