使用netcat (nc 命令) 可以实现快速拷贝(懒得插拔usb了, scp也有问题)
比如
popobox:
dd if=/dev/mtdblock0 | nc -l -p 3333
ubuntu host:
nc popobox's_ip 3333 > mtdblock0.img
Debootstrap制作的rootfs(--arch=armel)是可以完美chroot的,
还可以修改 /etc/rc.d/rc.local,开机调用脚本
/mnt/flash/sandbox/
debian_start.sh----
flash_2_path=/mnt/flash/sandbox
debian_img=$flash_2_path/debian1g.img
debian_root=$flash_2_path/debian
mkdir -p $debian_root
mount -o loop $debian_img $debian_root
mount -o bind /proc $debian_root/proc
mount -o bind /dev $debian_root/dev
mount -o bind /sys $debian_root/sys
----
然后就可以随时chroot,或者开机启动一些自定义的服务了