翼度科技»论坛 云主机 LINUX 查看内容

使用ruri快速构建跨架构chroot容器

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
在开发过程中,我们偶尔会用到跨架构Linux容器。
ruri全称“轻量型,用户友好的Linux容器实现”,是一个1M左右大小的Linux容器实现,提供了一系列功能选项,致力于成为更加强大且安全的chroot命令替换。
我们以在x86_64系统下运行arm64的Ubuntu容器为例:
确认binfmt_misc支持:
  1. ~$ cat /proc/filesystems | grep binfmt_misc
  2. nodev   binfmt_misc
复制代码
确保能看见binfmt_misc的输出,大多系统甚至安卓的GKI内核应该都是支持的。
安装qemu-user-static:
  1. sudo apt install qemu-user-static
复制代码
获取rootfs:

这里使用作者编写的rootfstool脚本:
  1. git clone https://github.com/Moe-hacker/rootfstool
  2. cd rootfstool
  3. ./rootfstool download --mirror bfsu --distro ubuntu --version noble --arch arm64
复制代码
于是我们得到了rootfs.tar.xz
获取ruri二进制:

前往https://github.com/moe-hacker/ruri/releases,下载最新的ruri-x86_64
  1. wget https://github.com/Moe-hacker/ruri/releases/download/v3.3/ruri-x86_64
  2. chmod 777 ruri-x86_64
复制代码
解压rootfs,启动:
  1. mkdir ubuntu-arm64
  2. tar -xvf /path/to/rootfs.tar.xz -C ubuntu-arm64
  3. cp /usr/bin/qemu-aarch64-static ubuntu-arm64/
  4. sudo ./ruri-x86_64 -a aarch64 -q /qemu-aarch64-static ./ubuntu-arm64/
复制代码
配置容器DNS:

最后在容器中:
  1. rm /etc/resolv.conf
  2. echo nameserver 114.114.114.114 > /etc/resolv.conf
复制代码
来源:https://www.cnblogs.com/Moe-hacker/p/18289497
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具