无法使用 Cubic 在 chroot 中连接到互联网

无法使用 Cubic 在 chroot 中连接到互联网

目前正在尝试使用 Cubic 修改自定义 ISO 映像。

按照,我应该输入

ln -sr /run/systemd/resolve/resolve.conf /run/systemd/resolve/stub-resolve.conf

但返回的是

ln:failed to create symbolic link '/run/systemd/resolve/stub-resolve.conf': no such file or directory 

甚至hostname -i沒有解決。

我需要使用 apt,那么如何才能访问互联网呢?

答案1

您必须使用 mkdir 创建文件夹 /run/systemd/resolve:

mkdir /run/systemd/resolve

然后你可以使用以下命令创建链接:

ln -sr /var/run/resolvconf/resolv.conf /run/systemd/resolve/stub-resolv.conf

相关内容