我正在尝试创建一个arm debian rootfs到一个笔驱动器中,我在/mnt中安装了这个驱动器。
我执行:
sudo debootstrap –arch=armel –foreign stable /mnt但是,它只是在/mnt/-foreign/debootstrap/debootstrap.log中创建了一个文件,其中包含以下行:
/usr/sbin/debootstrap: 481: : Permission denied发布于 2021-10-14 06:46:47
如前所述,解决此问题的方法是简单地在debootstrap命令中添加双破折号。
它变成了这样:
sudo debootstrap --arch=armel --foreign stable /mnthttps://unix.stackexchange.com/questions/673052
复制相似问题