当前位置: 首页 > news >正文

wap网站 链接微信南阳网站优化排名

wap网站 链接微信,南阳网站优化排名,新农村建设官方网站,二手手表网站1. 构建环境 在麒麟V10服务器操作系统上构建#xff1a;Kylin-Server-V10-GFB-Release-2204-Build03-ARM64.iso。由于只是编译 podman 源码#xff0c;没必要特地在物理机或服务上安装一个这样的操作系统#xff0c;故采用在虚拟机里验证。 2. 安装依赖 参考资料#xf…1. 构建环境 在麒麟V10服务器操作系统上构建Kylin-Server-V10-GFB-Release-2204-Build03-ARM64.iso。由于只是编译 podman 源码没必要特地在物理机或服务上安装一个这样的操作系统故采用在虚拟机里验证。 2. 安装依赖 参考资料 (https://podman.io/docs/installation#building-missing-dependencies) podman安装 2.1 安装基础包 yum install python3-pip pkg-config ninja-build cmake pip3 install meson -i https://pypi.tuna.tsinghua.edu.cn/simple2.2. 安装高版本的 go 系统自带的 go 版本不满足编译要求需要安装高版本的gowget https://go.dev/dl/go1.23.3.linux-arm64.tar.gz tar -zxvf go1.23.3.linux-arm64.tar.gz -C /opt/ echo export PATH$PATH:/opt/go/bin ~/.bashrc source ~/.bashrc卸载系统自带的低版本的go yum remove go -y这会卸载git所以再安装一次git安装git , yum install -y git2.3. 安装conmon git clone https://github.com/containers/conmon cd conmon export GOCACHE$(mktemp -d) make sudo make podman2.4. 安装runc git clone https://github.com/opencontainers/runc.git cd runc make BUILDTAGSselinux seccomp #报错解决方法在错误1 sudo cp runc /usr/bin/runc2.5. 安装slirp4netns wget https://github.com/rootless-containers/slirp4netns/archive/refs/tags/v1.3.1.zipunzip v1.3.1.zipcd slirp4netns-1.3.1./autogen.sh./configure # 报错解决方法在错误2make make install2.6. 安装netavark netavark 依赖 rust, protoc, gowget https://github.com/containers/netavark/archive/refs/tags/v1.13.0.zip unzip v1.13.0.zip cd netavark-1.13.0 make # 报错解决方法在错误3 make install3. 编译安装podman 从git下载源代码 wget https://github.com/containers/podman/archive/refs/tags/v5.3.1.zip unzip v5.3.1.zip cd podman-5.3.1 make BUILDTAGSselinux seccomp PREFIX/usr make install PREFIX/usr4. 添加配置 sudo mkdir -p /etc/containers sudo curl -L -o /etc/containers/registries.conf https://raw.githubusercontent.com/containers/image/main/registries.conf sudo curl -L -o /etc/containers/policy.json https://raw.githubusercontent.com/containers/image/main/default-policy.json参考 https://podman.io/docs/installation#building-missing-dependencies 中 Configuration files章节 4.1 修改配置 registries.conf 添加 unqualified-search-registries [docker.io] [[registry]] locationlocalhost:5000 # 自己私有镜像仓库地址或国内镜像仓库地址 insecuretrue 4.2 修改policy.json 添加 {default: [{type: insecureAcceptAnything}],transports:{docker-daemon:{: [{type:insecureAcceptAnything}]}} }4.3 修改网络配置 参考 设置网络模式 为了在启动容器时保证使用的是slirp4netns网络模式添加配置文件 mkdir -p /etc/containers/containers.conf添加 [network] default_rootless_network_cmd slirp4netns5. 验证 podman 基本命令执行正常 podman version Client: Podman Engine Version: 5.3.1 API Version: 5.3.1 Go Version: go1.23.3 Built: Sun Nov 24 20:13:35 2024 OS/Arch: linux/arm64 [rootlocalhost ~]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE [rootlocalhost ~]# podman ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES[rootlocalhost ~]# podman info .....设置环境变量消除警告 echo export PODMAN_IGNORE_CGROUPSV1_WARNING1 ~/.bashrc source ~/.bashrc新建一个Dockerfile文件 FROM centos:7RUN EOF #!/bin/bash -exyum makecache yum install -y wget curl tar tree vim git python3-pip ninja-build gcc gcc-c yum clean all EOFWORKDIR /root CMD [/bin/bash]执行 podman build -t test . 新建一个镜像报错 STEP 4/6: RUN EOF (#!/bin/bash -ex...) error running container: from /usr/bin/runc creating container for [/bin/sh -c /bin/bash -ex /dev/pipes/buildahheredoc3982280730]: time2024-11-26T14:59:3708:00 levelerror msgrunc create failed: invalid mount {Source:/var/tmp/buildah2198621294/mnt/buildah-bind-target-10 Destination:/dev/pipes/buildahheredoc3982280730 Device:bind Flags:20480 ClearedFlags:1 PropagationFlags:[278528] Data:z,Z Relabel: RecAttr:nil Extensions:0 IDMapping:nil}: bind mounts cannot have any filesystem-specific options applied : exit status 1ERRO[0015] did not get container create message from subprocess: EOF Error: building at STEP RUN EOF: while running runtime: exit status 1从报错看是容器运行时 runc 执行出了问题查看 https://podman.io/docs/installation#building-missing-dependencies 的 Install runtime dependencies 让安装的 容器运行时是 crun但后面的步骤又是安装 runcpodman info 看到的 ociRuntime 是 runc, 这里不纠结了直接从 git 下载crun 源码编译安装 git clone https://github.com/containers/crun.git cd crun ./autogen.sh ./configure --prefix/usr/ # 这里报错需要安装yajl-devel, systemd-devel make -j4 make install 再次执行 podman build -t test . 成功 这里没去深究了猜测是 runc不支持 EOF语法 新建镜像和容器 [rootlocalhost crun]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE localhost/test latest ef1c61187ffc 7 minutes ago 1.1 GB [rootlocalhost crun]# podman ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES [rootlocalhost crun]# podman ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 83c018b47440 localhost/test:latest /bin/bash 22 seconds ago Exited (127) 10 seconds ago test至此完成 !!! 6. buildah 工具 参考 buildah工具 Buildah 是一个用于构建 OCI 和 Docker 容器镜像的工具旨在提供一种灵活且高效的方式来创建和管理容器镜像 不依赖于守护进程。 Buildah run 相当执行containerfile文件中的 RUN是更底层的。 从git 源码下载 git clone https://github.com/containers/buildah.git cd buildah make make install错误 错误1 编译runc报错 找不到libseccomp.pc 安装 libseccomp-devel, yum install -y libseccomp-devel 错误2 编译slirp4netns报错 缺少slirp 依赖slirp但是官方源上没有自己从git下载编译 git clone -b v4.8.0 https://gitlab.freedesktop.org/slirp/libslirp.git meson setup build -Dprefix/usr/ meson compile -C build meson install -C build缺少libcap 安装libcap-devel, yum install -y libcap-devel 错误3: 编译netavark报错报当前系统自带的 cargo 1.29.0 版本不支持edition特性版本太低导致 由于cargo 是同 rust一起安装的rustc --version 是1.29.0 安装 rust有两种方式 1. 在线安装 使用中科大源 echo export RUSTUP_DIST_SERVERhttps://mirrors.ustc.edu.cn/rust-static ~/.bashrc echo export RUSTUP_UPDATE_ROOThttps://mirrors.ustc.edu.cn/rust-static/rustup ~/.bashrc source .bashrccurl --proto https --tlsv1.2 -sSf https://sh.rustup.rs | sh source $HOME/.cargo/env查看cargo 版本和安装位置 which cargo /root/.cargo/bin/cargocargo --version cargo 1.82.0 (8f40fc59f 2024-08-21)2. 从git 上拉取rust源代码自己编译高版本的rust 参考 rust源码编译安装 git clone https://github.com/rust-lang/rust.git cd rust git checkout 1.82.0 python x.py build #这里经常会失败可以手动先下载包 python x.py install可以在科学上网的情况下先手动下载包 wget https://static.rust-lang.org/dist/2024-09-05/rust-std-1.81.0-aarch64-unknown-linux-gnu.tar.xz wget https://static.rust-lang.org/dist/2024-09-05/rustc-1.81.0-aarch64-unknown-linux-gnu.tar.xz wget https://static.rust-lang.org/dist/2024-09-05/rust-std-1.81.0-aarch64-unknown-linux-gnu.tar.xz 放到: rust-1.82.0/build/cache/2024-09-05/下 如果是下载的v1.82.0.zip解压编译不是zip包解压的可以忽略编译会报错另外zip包缺少.git文件夹导致 无法下载子模块我的解决办法是把git上这个项目的.git目录复制到解压目录下 thread main panicked at src/core/config/config.rs:2803:10: called Result::unwrap() on an Err value: command did not execute successfully: cd \/root/xqs/rust-1.82.0\ env -u GIT_ALTERNATE_OBJECT_DIRECTORIES -u GIT_DIR -u GIT_INDEX_FILE -u GIT_OBJECT_DIRECTORY -u GIT_WORK_TREE \git\ \rev-list\ \--authorborsrust-lang.org\ \-n1\ \--first-parent\ \HEAD\\nexpected success, got: exit status: 128\n note: run with RUST_BACKTRACE1 environment variable to display a backtrace Build completed unsuccessfully in 0:09:25更换国内源 新建/root/.cargo.config添加如下内容 [source.crates-io] replace-with ustc [source.ustc] registry https://mirrors.ustc.edu.cn/crates.io-index再次python x.py build git clone 的直接看这后面 报错 CMake Error at CMakeLists.txt:3 (cmake_minimum_required):CMake 3.20.0 or higher is required. You are running version 3.12.1需要安装更高版本的CMake 从git 上下载源码编译安装 先安装依赖 openssl-devel, yum install -y openssl-devel wget https://github.com/Kitware/CMake/archive/refs/tags/v3.31.1.zip unzip v3.31.1.zip cd CMake-3.31.1 ./configure --prefix/usr/ make  make install继续报错gcc 版本太低需要自己编译安装高版本的gcc 网上资料很多这里不在说明。 CMake Error at cmake/modules/CheckCompilerVersion.cmake:37 (message):Host GCC version must be at least 7.4, your version is 7.3.0. Call Stack (most recent call first):cmake/modules/CheckCompilerVersion.cmake:47 (check_compiler_version)cmake/config-ix.cmake:16 (include)CMakeLists.txt:949 (include)protoc 编译安装 系统自带的protoc 版本为 3.9.0如果系统不自带也需要自己安装 针对比 2204 更高的版本 protoc --version libprotoc 3.9.0可以下载高版本的protoc 安装 wget https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-aarch_64.zip unzip protoc-28.3-linux-aarch_64.zip cp -af ./bin/protoc /usr/bin/
http://www.hkea.cn/news/14415192/

相关文章:

  • 上海站群优化wordpress内容修改
  • 不需要网站备案的广告联盟青岛网站建设多少钱
  • 做帖子的网站有哪些自适应影视网站模板
  • 开源网站建设工具永远免费的域名
  • 太原市建设银行网站网站建设实践总结
  • 纪检网站建设动态主题网站排名西安
  • 泰安润泽建设工程有限公司网站公司做网站要多长时间审核
  • 网站建设先进事迹西安企业网站开发
  • 网站开发工具 售价北京做网站的大公司有哪些
  • 青岛需要做网站的公司有哪些北京网站制作收费标准
  • 做仿网站的书html访问人数统计代码
  • 专业网站推荐18款禁用软件黄app免费
  • 河北pc端网站建设企业网站东莞网站建设制作
  • 做阀门网站效果怎么样英文网站 模板
  • 成品网站w灬源码1688用自己的名字设计头像
  • 越秀公司网站建设郑州网站关键词优化公司
  • 工厂的网站在哪里做的php做的购物网站
  • 网站session 验证网上书店网站建设规划书
  • 网站建设流程公司十堰秦楚网公众号
  • 在网站里面如何做支付工具网站关闭了域名备案
  • 手机搞笑网站模板下载安装seo系统
  • 精品网站建设费用 地址磐石网络长沙网站推广系统
  • 广州网站推广哪家强做wordpress模板赚钱
  • 哪些网站专门做细胞的东莞做网站做seo优化外包网络公司
  • 简约网站建设公司wordpress移植数据库
  • 深圳wap网站建设公司铁岭网站建设移动网站
  • 最新淘宝客网站程序wordpress微信h5
  • 郑州网站建设三猫网络静态网页的特点
  • 网站竞争对手如何做调研哈尔滨网站建设教程
  • 好学校平台网站模板now9999网站提示建设中