Results 1 to 5 of 5

Thread: Installing Ubuntu in a HP dv5-1235dx

  1. #1
    Join Date
    May 2007
    Beans
    980
    Distro
    Ubuntu 18.04 Bionic Beaver

    Installing Ubuntu in a HP dv5-1235dx

    HP dv5-1235dx

    Problem: no GUI (videocard not working)

    I'm booting in safe graphics mode :-S

    Using:
    Code:
    uname -nrmo
    ubuntu 2.6.27-7-generic i686 GNU/Linux
    Video card:
    Code:
    sudo lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    Screen: Generic PnP Monitor
    Graphics: Mobile Intel(R) 4 Series Express Chipset Family
    Adapter string / Media accelerator: GMA 4500MHD

    From the Live-CD I get this:
    Code:
    cat /var/log/Xorg.0.log | grep EE
    (EE) VESA(0): No valid modes
    (EE) Screen(s) found, but none have a usable configuration.
    
    and then this shows up
    
    giving up.
    xinit: Connection refused (errno 111): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    This didn't work:
    Code:
    sudo dpkg-reconfigure xserver-xorg
    I read on intrepid's release page that the xorg.conf file is not used anymore, at least is supposed to be able to work without it.
    Last edited by Diabolis; March 1st, 2009 at 07:16 PM. Reason: added info

  2. #2
    Join Date
    May 2007
    Beans
    980
    Distro
    Ubuntu 18.04 Bionic Beaver

    64 version didn't work either

    Code:
    uname -nrmo
    ubuntu 2.6.27-7-generic x86_64 GNU/Linux
    The Xorg.0.log contains the same errors as before.

  3. #3
    Join Date
    May 2007
    Beans
    980
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Installing Ubuntu in a HP dv5-1235dx

    Found the cause of the errors: http://www.x.org/wiki/FAQErrorMessag...8f9a8364001e5b

    In most cases this means there are no video modes available for your configuration.

    Code:
    sudo cat /var/log/Xorg.0.log | grep Not
    
    (II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
    (II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
    (II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
    (II) VESA(0): Not using built-in mode "1024x768" (hsync out of range)
    (II) VESA(0): Not using built-in mode "800x600" (hsync out of range)
    (II) VESA(0): Not using built-in mode "640x480" (hsync out of range)
    Edited the xorg.conf file to look like this:
    Code:
    Section "Screen"
        Identifier  "Default Screen"
        Monitor     "Configured Monitor"
        Device      "Configured Video Device"
    	DefaultDepth	8
    
    	SubSection "Display"
            Depth       16
            Modes       "1280x800" "1024x768"
        EndSubSection
    
        SubSection "Display"
            Depth       32
            Modes       "1280x800" "1024x768"
        EndSubSection
    EndSection
    Still get the same errors.
    Last edited by Diabolis; March 1st, 2009 at 07:22 PM.

  4. #4
    Join Date
    May 2007
    Beans
    980
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Installing Ubuntu in a HP dv5-1235dx

    double post
    Last edited by Diabolis; March 1st, 2009 at 07:21 PM.

  5. #5
    Join Date
    May 2007
    Beans
    980
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Installing Ubuntu in a HP dv5-1235dx

    just had to change the xorg.conf file from vesa to intel :-S

Tags for this Thread

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
  •