01 2023 档案

摘要:背景 ubuntu20系统卸载snap占用一堆挂载 步骤如下 查看snap安装了哪些包 snap list 逐个卸载 sudo snap remove lxd --purge sudo snap remove core20 --purge sudo snap remove snapd --purge 阅读全文
posted @ 2023-01-16 17:27 ishmaelwanglin 阅读(2654) 评论(0) 推荐(0) 编辑
摘要:服务器信息 |节点|角色|地址| |:-|:-|:-| |node-1| mon,mgr,mds,osd | 192.168.100.11| |node-2|mon,mgr,mds,osd| 192.168.100.12| |node-3|mon,mgr,mds,osd|192.168.100.13 阅读全文
posted @ 2023-01-16 12:03 ishmaelwanglin 阅读(119) 评论(0) 推荐(0) 编辑
摘要:说明 ​ lsof 是关于文件打开信息的标准输出工具 输出标题 COMMAND: 进程的名称 PID: 进程标识符 USER: 进程所有者 FD: 文件描述符,应用程序通过文件描述符识别该文件。如cwd、txt等 TYPE: 文件类型,如DIR、REG等 DEVICE: 指定磁盘的名称 SIZE/O 阅读全文
posted @ 2023-01-15 10:50 ishmaelwanglin 阅读(385) 评论(0) 推荐(0) 编辑
摘要:查看存储设备名 # 通过qmp查看 virsh qemu-monitor-command DOMAIN --pretty '{ "execute": "query-block" }' # 通过hmp查看 virsh qemu-monitor-command DOMAIN --hmp 'info bl 阅读全文
posted @ 2023-01-15 10:48 ishmaelwanglin 阅读(1470) 评论(0) 推荐(0) 编辑
摘要:说明 ethtool是一个针对网卡驱动的工具,通过驱动暴露给NAPI的接口调用。 选项 ethtool eth0: 查询ethx网口基本设置。 -a: 查看网卡中接收模块RX、发送模块TX和Autonegotiate模块的状态:启动on 或 停用off -A: 修改网卡中 接收模块RX、发送模块TX 阅读全文
posted @ 2023-01-15 10:40 ishmaelwanglin 阅读(8610) 评论(0) 推荐(1) 编辑
摘要:findmnt主要是用来查看文件系统信息的工具 数据来源: /etc/fstab /etc/mtab /proc/self/mountinfo 帮助信息: ➜ ~ findmnt --help Usage: findmnt [options] findmnt [options] <device> | 阅读全文
posted @ 2023-01-15 10:36 ishmaelwanglin 阅读(510) 评论(0) 推荐(0) 编辑
摘要:目录目标步骤检测安装效果附录control文件字段描述contol架构字段控制文件的描述信息DEBIAN/preinst样例DEBIAN/postinst样例DEBIAN/prermDEBIAN/postrmInstall的执行过程Upgrade的执行过程Purge的执行过程Remove的执行过程 阅读全文
posted @ 2023-01-11 16:27 ishmaelwanglin 阅读(1893) 评论(0) 推荐(0) 编辑
摘要:chrony的服务,在centos上是chronyd,在ubuntu上是chrony 环境信息 |操作系统系统|Server|Client|外网NTP服务器| |:-|:-|:-|:-| |ubuntu20|192.168.100.21|192.168.100.22|ntp.aliyun.com| 阅读全文
posted @ 2023-01-10 21:16 ishmaelwanglin 阅读(602) 评论(0) 推荐(0) 编辑
摘要:禁止自动分析源码添加不应该加入的依赖 在spec文件中加入Autoreq: 0即可 opnvswitch源码打包需要加入,否则会解析代码中的依赖,在ISO中安装检测失败/bin/python3 %post 部分如果有shell 则依赖关系会自动增加/bin/sh , 如果合并入镜像是不能有/bin/ 阅读全文
posted @ 2023-01-07 19:26 ishmaelwanglin 阅读(830) 评论(0) 推荐(0) 编辑
摘要:实时预览markdown 安装markdown all in one插件以后 编写markdown文档可以, 通过command + shift + p打开 vscode的配置, 输入>Markdown: Open Preview to the Side 即可打开预览效果如图 也可以通过快捷键ctr 阅读全文
posted @ 2023-01-03 11:18 ishmaelwanglin 阅读(8639) 评论(0) 推荐(2) 编辑