我正在尝试使用linux内核版本4.4.4在busybox rootfs中运行shell脚本。测试脚本尝试安装procfs。
#!/bin/sh
mount -t proc none /proc
我可以使用sh test.sh
运行此脚本,但如果我尝试使用./test.sh
运行,则会显示/bin/sh test.sh not found
。奇怪的是手动挂载procfs后
mount -t proc none /proc
我可以运行./test.sh
。对于busybox,我使用静态启用的默认配置。