如何在没有插入显示器的情况下启动 Ubuntu?

Jac*_*lbo 6 boot monitor

如何在没有监视器/键盘/鼠标的情况下启动 Ubuntu 12.10 我用作服务器并通过远程桌面查看器连接到它

12.04 没问题,但升级后我收到消息低图形或未检测到显示器

我尝试使用来自互联网的多个建议解决方案创建一个 /etc/X11/xorg.conf ,但没有成功。

Jac*_*lbo 3

我找到了解决方法,但是当我插入屏幕时,没有更多图像

  1. 安装虚拟显示器

    sudo apt-get install xserver-xorg-video-dummy
    
    Run Code Online (Sandbox Code Playgroud)
  2. 备份 xorg.conf

    sudo  mv /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
    
    Run Code Online (Sandbox Code Playgroud)
  3. 创建一个新的 xorg.conf

    sudo gedit /etc/X11/xorg.conf
    
    Run Code Online (Sandbox Code Playgroud)

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
EndSection

Section "Monitor"
    Identifier  "Configured Monitor"
    HorizSync 31.5-48.5
    VertRefresh 50-70
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1152x864"
    EndSubSection
EndSection
Run Code Online (Sandbox Code Playgroud)