正则时光 - 生活原本沉闷,但跑起来就有风!
正则时光 - 生活原本沉闷,但跑起来就有风!
最新发布吾生也有涯,而知也无涯!第67页
02_Linux下Qt程序打包及应用图标 - 正则时光

02_Linux下Qt程序打包及应用图标

一、前言 程序打包后,可以让程序在没有安装QT环境的服务器上运行。 在Windows下,使用windeployqt进行打包 在Linux下,使用linuxdeployqt进行打包 二、linuxdeployqt下载安装 Releases · prob...
11月12日
2025
实例解释MAC地址表、ARP表、路由表的作用 - 正则时光

实例解释MAC地址表、ARP表、路由表的作用

一、简介 MAC地址表 MAC地址表是交换机等网络设备记录MAC地址和端口的映射关系(见下图),代表了交换机从哪个端口学习到了某个MAC地址,交换机把这个信息记录下来,后续交换机需要转发数据的时候...
Linux chkconfig命令 - 正则时光

Linux chkconfig命令

chkconfig命令用于检查,设置系统的各种服务 语法: Chkconfig [–add] [–del] [–list] [系统服务] 或 chkconfig [–level <等级代号>] [系统服务] [on/off/reset] 参数: –add 增加所...
Docker-Desktop更换存储数据目录报错:Error migrating WSL disk An error occurred while migrating the Docker Desktop WSL data disk ... - 正则时光

Docker-Desktop更换存储数据目录报错:Error migrating WSL disk An error occurred while migrating the Docker Desktop WSL data disk …

问题现象 默认情况下,Docker Desktop将WSL 2引擎的数据存储在C:\Users[USERNAME]\AppData\Local\Docker\WSL中。例如,如果您想将位置更改为另一个驱动器,可以通过Docker Dashboard的Settings...
Wireshark屏蔽更新 - 正则时光

Wireshark屏蔽更新

选择 编辑-首选项-高级,搜索找到gui.update.enabled,双击值变为false即可
centos解压zip文件报错:End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive.... - 正则时光

centos解压zip文件报错:End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive….

问题现象 从虚拟机中拖放传输的zip文件,在解压时报错:End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part arch...
vsftp启动时报错:500 OOPS: can only support ipv4 and ipv6 currently - 正则时光

vsftp启动时报错:500 OOPS: can only support ipv4 and ipv6 currently

问题现象 安装好vsftpd后,重新启动报错:Job for vsftpd.service failed because the control process exited with error code. See 'systemctl status vsftpd.service' and 'journalctl -xe' ...
实例:Linux RAID 磁盘阵列的创建及管理操作 - 正则时光

实例:Linux RAID 磁盘阵列的创建及管理操作

需求背景 在生产环境中,对单块磁盘的利用往往会在数据读写的吞吐率上出现瓶颈,并且在单块磁盘上对写入数据是没有冗余备份的措施,使用 RAID 磁盘阵列技术将会很好的解决这些问题。 操作步骤 1...