顯示具有 chroot 標籤的文章。 顯示所有文章
顯示具有 chroot 標籤的文章。 顯示所有文章

2012年3月15日 星期四

Warning: cannot open /proc/net/dev (沒有此一檔案或目錄). Limited output.

在 chroot 中, 使用 ifconfig 會出現

Warning: cannot open /proc/net/dev (沒有此一檔案或目錄). Limited output.




解法:
# mount -o bind /proc /TheMountPoint/proc

2011年10月31日 星期一

chroot: failed to run command `/bin/bash': No such file or directory

chroot 報錯, 以錯誤訊息來看, 原因是切換進去後的資料夾沒有 /bin/bash, 但我要客製的 rootfs 資料夾有 /bin/sh


處理 :
1 -> 在 chroot 之前將 /bin/bash 及相關函式庫複製進去

2 -> 不要使用 bash, 改用 sh
     # SHELL=/bin/sh chroot myrootfs/