摘要: 介绍: GStreamer 是一个用于创建流媒体应用程序的框架。基本设计来自 Oregon Graduate Institute 的video的管道(pipeline)以及 DirectShow 的一些想法和理念。 GStreamer 的开发框架可以编写任何类型的流式多媒体应用程序。GStreame 阅读全文
posted @ 2024-08-27 15:51 风吹大风车 阅读(380) 评论(0) 推荐(0)
摘要: 方法一:使用裁剪的基础镜像 方法二:使用多层镜像构建优化,build使用一个镜像,RUN使用另一个裁剪镜像 方法三:合并冗余命令,FROM、RUN、COPY 都会增加层数并增加镜像的大小,使用&&合并一次执行多条语句 方法四:使用docker-slim工具进行镜像生成后的再优化,下载地址:https 阅读全文
posted @ 2024-08-27 15:28 风吹大风车 阅读(297) 评论(0) 推荐(0)
摘要: 步骤1:创建/etc/yum.repos.d/mongodb-org-4.4.repo 文件,内容如下 命令如下: echo $'[mongodb-org-4.4] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat 阅读全文
posted @ 2022-01-28 10:46 风吹大风车 阅读(228) 评论(0) 推荐(0)
摘要: 问题1:修改docker0的默认IP centos下如果docker0的默认IP与本机局域网IP在同一网段,此时会影响正常网络访问,需要修改docker0的默认IP 修改方法如下: 1:vim /etc/docker/daemon.json { "registry-mirrors": ["https 阅读全文
posted @ 2022-01-20 09:51 风吹大风车 阅读(34) 评论(0) 推荐(0)
摘要: 问题1: 目标主机使用双系统,Ubuntu和Centos进行切换后,windows无法直接登录目标主机, 解决方法: 删除C:\Users\Administrator\.ssh\known_hosts 文件下的对应IP的记录信息后,重新连接目标主机 阅读全文
posted @ 2022-01-19 15:32 风吹大风车 阅读(93) 评论(0) 推荐(0)
摘要: QUIC: A UDP-Based Multiplexed and Secure Transport Abstract This document defines the core of the QUIC transport protocol. QUIC provides applications 阅读全文
posted @ 2022-01-12 16:50 风吹大风车 阅读(288) 评论(0) 推荐(0)
摘要: 1:npm卸载安装特定版本node-gyp 命令如下: npm uninstall -g node-gypnpm install -g node-gyp@7.1.2 2:centos安装mongodb 命令如下: vim /etc/yum.repos.d/mongodb-org-4.2.repo [ 阅读全文
posted @ 2022-01-06 17:55 风吹大风车 阅读(77) 评论(0) 推荐(0)
摘要: 1:U盘引导 2:TAB键修改 将最下面的vmlinuz initrd=initrd.img inst.stage2=hd:LABEL=CentOS\x207\x20x86_64 rd.live.check quiet 改为 vmlinuz initrd=initrd.img inst.stage2 阅读全文
posted @ 2022-01-06 15:18 风吹大风车 阅读(235) 评论(0) 推荐(0)
摘要: 命令如下: wget https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1.tar.gz tar -xzvf cmake-3.22.1.tar.gz && cd cmake-3.22.1/ && ./boots 阅读全文
posted @ 2021-12-14 09:42 风吹大风车 阅读(2135) 评论(0) 推荐(0)
摘要: 问题: 在进行linux编程中,必定存在socket的相关编程操作,在获取客户端地址时由于传入地址的长度初始化异常导致无法获取到recvfrom中client的地址 具体代码如下: #include <sys/types.h> #include <sys/socket.h> #include <ne 阅读全文
posted @ 2021-12-01 14:10 风吹大风车 阅读(990) 评论(0) 推荐(0)