zoukankan      html  css  js  c++  java
  • WARNING: Unable to open an initial console

    WARNING: Unable to open an initial console

    这个主要是没有建立控制台,解决方式:

    内核选择如下选项:

    Device Drivers  --->
    Character devices  --->
        [*] Virtual terminal
     Serial drivers  --->
             <*> 8250/16550 and compatible serial support 
       [*]   Console on 8250/16550 and compatible serial port
     (2) Maximum number of 8250/16550 serial ports 
     (2) Number of 8250/16550 serial ports to register at runtime  
        [*] Unix98 PTY support


    缺少 /dev/console 和 /dev/null
    在建立他们之前UDEV就先使用到他们了

    文件系统中建立如下设备文件:
    cd /dev
    mknod -m 660 console c 5 1
    mknod -m 660 null c 1 3


    备注:console的权限最好是600,而null的权限最好是666


  • 相关阅读:
    有关数据恢复的几个概念的理解
    cmsr 1.0.6
    Cmsr 1.0.5
    Cmsr 1.0.4
    vue中的v-model 与 .sync
    es6中clss做了些什么 怎么继承
    Cmsr 1.0.2
    Cmsr 1.0.1
    Cmsr 1.0.0
    VUE3.0新特性
  • 原文地址:https://www.cnblogs.com/java20130726/p/3218578.html
Copyright © 2011-2022 走看看