我正在尝试将arm
debian创建rootfs
到我安装在的 Pen Drive 中/mnt
。
我执行:
sudo debootstrap –arch=armel –foreign stable /mnt
但随后它只是创建一个文件,/mnt/-foreign/debootstrap/debootstrap.log
其中包含以下行:
/usr/sbin/debootstrap: 481: : Permission denied
答案1
如前所述,解决这个问题的方法是简单地在 debootstrap 命令中添加双破折号
然后就变成这样了:
sudo debootstrap --arch=armel --foreign stable /mnt