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
    [...省略]
原文地址:https://www.cnblogs.com/zengjfgit/p/9323709.html