I'm David and this is my blog.


Wednesday, February 07, 2007

Ubuntu on Gateway MX8711

I am outlining here my attempt to run Ubuntu 6.10 Edgy Eft on a brand new Gateway mx8711 laptop. The conclusion of my trials was a failure at starting X11. I'm posting my notes here so the next guy(maybe you?) doesn't have to repeat my work or can maybe get some ideas on whatever problem they're actually working on.

I'm using Edgy Eft as a live cd only, I didn't install it on the local hard drive.

First boot: X would not start and I got the error "Failed to start the xserver..." By looking at the detailed error info and scrolling down(which isn't apparent when the scroll bars are all this random screwed up looking character) I saw somethinng like "screens found but none have a useable configuration."

Second boot: This time I hit F4 at the boot options to try the 1024x768x32 video mode. Same result.

Third boot: Used boot option vga=771. This made the bootup sequence look a little different but I got the same result as above.

Fourth boot: At this point, I decided to try Dapper Drake or 6.06 LTS. It still didn't work but I was able to get to a command line with the live cd so more work is possible(as always).

And that's about all the time I had to try out thelivecd on this laptop. If you're in the same boat, I wish you better luck. Let me know if it works for you!

4 Comments:

  • try fedora 6!

    By Anonymous Anonymous, At 2/14/07 9:08 PM  

  • I had the same thing. This is what I did to make it run:

    ctrl-alt-F1 (to get terminal)
    dpkg-reconfigure xserver-xorg
    (here I basically used the defaults - 1440x900 - also chose medium for monitor config and set freq to 1440x900@100Hz or MHz - whatever)
    sudo killall gdm
    sudo gdm

    and up it came. Then I installed it to the hard drive. The issue I'm dealing with now is getting the wireless card to work.

    By Anonymous elpresidente, At 2/15/07 10:31 AM  

  • i have the same Gateway laptop...

    i installed Fedora 6 and the following worked for me. Im sure a similar process would work on Ubuntu but the paths to the scripts mentioned would be different...

    1) change run level to 5 to load X server
    # vi /etc/inittab
    id:5:initdefault:

    2) install the popular 915resolution Bios hack, search in google for it if you dont have YUM installed.
    # yum install 915resolution

    3) modify your monitor settings, i included all my settings which includes my irrelevant keybrd settings
    # vi /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "single head configuration"
    Screen 0 "Default Screen" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Synaptics" "CorePointer"
    EndSection

    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    EndSection

    Section "InputDevice"
    Identifier "Synaptics"
    Driver "synaptics"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "auto-dev"
    Option "Emulate3Buttons" "yes"
    Section "ServerLayout"
    Identifier "single head configuration"
    Screen 0 "Default Screen" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Synaptics" "CorePointer"
    EndSection

    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    EndSection

    Section "InputDevice"
    Identifier "Synaptics"
    Driver "synaptics"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "auto-dev"
    Option "Emulate3Buttons" "yes"
    EndSection

    Section "Monitor"
    Identifier "Generic Monitor"
    HorizSync 28.0 - 72.0
    VertRefresh 59.0 - 75.0
    Option "DPMS"
    EndSection

    Section "Device"
    Identifier "Intel Corporation Mobile Integrated Graphics Controller"
    Driver "i810"
    VideoRam 65536
    Option "ForceBIOS" "1024x768=1440x900"
    BusID "PCI:0:2:0"
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Device "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor "Generic Monitor"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1440x900" "1024x768"
    EndSubSection
    EndSection

    4) see what shitty monitor modes are available
    # 915resolution -l
    Intel 800/900 Series VBIOS Hack : version 0.5.2
    Chipset: 945GM
    BIOS: TYPE 1
    Mode Table Offset: $C0000 + $269
    Mode Table Entries: 36

    Mode 30 : 640x480, 8 bits/pixel
    Mode 32 : 800x600, 8 bits/pixel
    Mode 34 : 1024x768, 24 bits/pixel

    5) choose a shitty mode and hack it everytime computer boots
    ->add this line
    # vi /etc/rc.d/rc.local
    /usr/sbin/915resolution 34 1440 900 24

    6) if you want you can now see that mode 34 is now hacked.
    # 915resolution -l
    Mode 30 : 640x480, 8 bits/pixel
    Mode 32 : 800x600, 8 bits/pixel
    Mode 34 : 1440x900, 24 bits/pixel

    7) reboot and it should load in perfect pixelation yumminess...
    # reboot

    By Anonymous mr. macrodot, At 2/17/07 2:20 PM  

  • The latest Ubuntu/Kubuntu Feisty Fawn 7.04 works great on this laptop. I have the MX8711 as well, and within 30-40 minutes I had it installed and up and running without any problems.

    By Anonymous Anonymous, At 6/21/07 12:39 PM  

Post a Comment



<< Home