mount: mounting proc on /proc failed: Device or resource busy

/**********************************************************************
* mount: mounting proc on /proc failed: Device or resource busy
* 说明:
* 使用initramfs启动buildroot搭建的文件系统,会导致proc挂载问题,proc
* 已经在initramfs中进行了挂载,排查了switch_root后的文件系统,最终确定
* 引起报错的是在/etc/inittab中,之前有怀疑是在/etc/fstab中。
*
* 2018-7-17 深圳 宝安西乡 曾剑锋
*********************************************************************/ cat /etc/inittab
[...省略] # Startup the system
::sysinit:/bin/mount -t proc proc /proc # 删除这一行
::sysinit:/bin/mount -o remount,rw /
::sysinit:/bin/mkdir -p /dev/pts
::sysinit:/bin/mkdir -p /dev/shm
::sysinit:/bin/mount -a
::sysinit:/bin/hostname -F /etc/hostname
# now run any rc scripts
[...省略]
上一篇:MTK 系统禁止通知状态栏下拉


下一篇:Elasticsearch索引的操作,利用kibana(如何创建/删除一个es的索引?)