Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Booting ubuntu with no monitor

  1. #1
    Join Date
    Nov 2009
    Beans
    50

    Booting ubuntu with no monitor

    Ok i have managed to get ubuntu to boot with no monitor but its at a low resolution. I access the computer by remote desktop connection. The current resolution is at 800 X 600. below is the current xorg.conf file what do i need to do to make the resolution higher. basically i edited the xorg.conf file in the device section of the xorg.conf file and change or added Driver "vesa"

    Thanks


    Code:
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # Note that some configuration settings that could be done previously
    # in this file, now are automatically configured by the server and settings
    # here are ignored.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #   sudo dpkg-reconfigure -phigh xserver-xorg
    
    Section "Device"
        Identifier    "Configured Video Device"
        Driver "vesa"
    EndSection
    
    Section "Monitor"
        Identifier    "Configured Monitor"
    EndSection
    
    Section "Screen"
        Identifier    "Default Screen"
        Monitor        "Configured Monitor"
        Device        "Configured Video Device"
    EndSection
    Also here is a link to another post about another problem.
    http://ubuntuforums.org/showthread.php?t=1322284

  2. #2
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    Bump

  3. #3
    Join Date
    Jan 2007
    Location
    London, UK
    Beans
    3,525
    Distro
    Ubuntu Development Release

    Re: Booting ubuntu with no monitor

    Post output of following command:
    Code:
    lspci
    You came empty handed, that is how you shall leave. Whatever you claim as yours today, belonged to someone else yesterday, will be someone else's tomorrow.

  4. #4
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    Quote Originally Posted by ukripper View Post
    Post output of following command:
    Code:
    lspci

    Code:
    fileserver@Fileserver-01:~$ lspci
    00:00.0 Host bridge: Intel Corporation 82945G/GZ/P/PL Memory Controller Hub (rev 02)
    00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
    00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
    00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
    02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8056 PCI-E Gigabit Ethernet Controller (rev 12)
    fileserver@Fileserver-01:~$
    Thanks

  5. #5
    Join Date
    Jan 2007
    Location
    London, UK
    Beans
    3,525
    Distro
    Ubuntu Development Release

    Re: Booting ubuntu with no monitor

    You are using vesa drivers. You need intel ones.
    Run this command in terminal and see if it fixes your resolution:
    Code:
    sudo apt-get update && sudo apt-get install xserver-xorg-video-intel
    Just reboot after this.
    You came empty handed, that is how you shall leave. Whatever you claim as yours today, belonged to someone else yesterday, will be someone else's tomorrow.

  6. #6
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    Code:
    Reading package lists... Done
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    xserver-xorg-video-intel is already the newest version.
    The following packages were automatically installed and are no longer required:
      linux-headers-2.6.27-7 linux-headers-2.6.27-7-generic
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded
    I think i already have it installed....

  7. #7
    Join Date
    Jan 2007
    Location
    London, UK
    Beans
    3,525
    Distro
    Ubuntu Development Release

    Re: Booting ubuntu with no monitor

    Quote Originally Posted by stroyeror View Post
    Code:
    Reading package lists... Done
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    xserver-xorg-video-intel is already the newest version.
    The following packages were automatically installed and are no longer required:
      linux-headers-2.6.27-7 linux-headers-2.6.27-7-generic
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded
    I think i already have it installed....
    Can you run below command and follow the steps:
    Code:
    sudo dpkg-reconfigure -phigh xserver-xorg
    You came empty handed, that is how you shall leave. Whatever you claim as yours today, belonged to someone else yesterday, will be someone else's tomorrow.

  8. #8
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    Quote Originally Posted by ukripper View Post
    Can you run below command and follow the steps:
    Code:
    sudo dpkg-reconfigure -phigh xserver-xorg
    When i ran that i got this

    Code:
    fileserver@Fileserver-01:~$ sudo dpkg-reconfigure -phigh xserver-xorg
    xserver-xorg postinst warning: overwriting possibly-customised configuration
       file; backup in /etc/X11/xorg.conf.20091114140258
    fileserver@Fileserver-01:~$

  9. #9
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    OK after that i rebooted and it it still stopped every thing. And when i plugged a monitor into the machine it had the Ubuntu booted into low graphics mode message.

  10. #10
    Join Date
    Nov 2009
    Beans
    50

    Re: Booting ubuntu with no monitor

    OK i have figured it out

    In the Device section you have to add
    Code:
    Driver "vesa"
    In the monitor section you have to add
    Code:
    HorizSync       28-73
    Then reboot.

    Thats what worked for me.

    Below is my xorg.conf

    Code:
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # Note that some configuration settings that could be done previously
    # in this file, now are automatically configured by the server and settings
    # here are ignored.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #   sudo dpkg-reconfigure -phigh xserver-xorg
    
    Section "Device"
        Identifier    "Configured Video Device"
        Option        "UseFBDev"        "true"
        Driver "vesa"
    EndSection
    
    Section "Monitor"
        Identifier    "Configured Monitor"
        HorizSync       28-73
    EndSection
    
    Section "Screen"
        Identifier    "Default Screen"
        Monitor        "Configured Monitor"
        Device        "Configured Video Device"
    EndSection

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •