Results 1 to 6 of 6

Thread: Ubuntu can't start with Ati Radeon 9250.

  1. #1
    Join Date
    Jun 2011
    Beans
    2

    Exclamation Ubuntu can't start with Ati Radeon 9250.

    So, I just installed the new version of ubuntu (11.04), I was using Windows for a while..and the first thing I saw after inserting the DVD and restarting the PC was that Ubuntu freezes at a black screen while loading and wont continue. So I changed to my onboard graphic card and it was working perfectly.

    Once installed, I shutdown the PC, put back the AGP Video card (Radeon 9250) and tried to run ubuntu, but it freezes on the Grub. Practically it wont even display the grub start options or anything, just the purple color and nothing more.

    So can anyone please tell me, why is this happening ?

    My PC:

    Motherboard: Gigabyte GA-8VM800PMD-775
    Processor: Intel Pentium 4 (3.00)
    Onboard Video Card: VIA (AGP)
    AGP Video Card: ATI Radeon 9250 (250mb)


    Note that in previous versions (long time ago) it was working perfectly.


    Thanks and sorry for my english =)
    Last edited by drvymonkey; June 20th, 2011 at 01:26 AM.

  2. #2
    Join Date
    Jun 2011
    Beans
    8

    Re: Ubuntu can't start with Ati Radeon 9250.

    It may not be compatible with the Radeon card. Try this thread:

    http://ubuntuforums.org/showthread.php?t=1744188

    You can probably get your Ubuntu to boot if you blacklist the radeon module.

  3. #3
    Join Date
    Nov 2009
    Beans
    Hidden!
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: Ubuntu can't start with Ati Radeon 9250.

    use an older version to ubuntu and upgrade the driver with PPA if needed.
    Read the easy to understand, lots of pics Ubuntu manual.
    Do i need antivirus/firewall in linux?
    Full disk backup (newer kernel -> suitable for newer PC): Clonezilla
    User friendly full disk backup: Rescuezilla

  4. #4
    Join Date
    Nov 2005
    Location
    Uppsala, Sweden
    Beans
    2,180
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Ubuntu can't start with Ati Radeon 9250.

    Quote Originally Posted by iggi916 View Post
    It may not be compatible with the Radeon card. Try this thread:

    http://ubuntuforums.org/showthread.php?t=1744188

    You can probably get your Ubuntu to boot if you blacklist the radeon module.
    That link will not do anything to solve drvymonkey's problem. It's only for modern laptops that are capable of switching between two grahic cards.

    @drvymonkey: If it freezes with a purple screen it means it has already gone through grub and freezes during actually booting ubuntu.
    To get the grub menu, press the shift key before grub loads (while you still see the bios screen) and keep it pressed until you see the menu.
    One thing you can do is to inactivate kernel modesetting for the radeon driver. To test this, highlight the first boot option, press 'e' to edit the boot parameters. Move the cursor to the end of the line that starts with "Linux":
    Code:
    linux    /boot/vmlinuz-2.6.38-10-generic root=UUID=0d76854e-ae85-42be-8840-07ee9fb1b56c ro   quiet splash
    Type "radeon.modeset=0" after "splash", so it now looks like this:
    Code:
    linux    /boot/vmlinuz-2.6.38-10-generic root=UUID=0d76854e-ae85-42be-8840-07ee9fb1b56c ro   quiet splash radeon.modeset=0
    To boot, press Ctrl+X (I think that's it, but in case I'm wrong the correct key combination is written below the grub editor). Note that this change is only temporary, so if this works you will need to do a few more things to make it permanent.
    If it does not work, you may need to inactivate the onboard video. Try to find out if it's possible to inactivate the VIA gpu in your motherboard's bios. Or maybe it's possible to blacklist the driver for the VIA gpu...

  5. #5
    Join Date
    Jun 2011
    Beans
    2

    Re: Ubuntu can't start with Ati Radeon 9250.

    Thanks for the replies,

    Well, @jocko, that worked! Thanks, can you help me making the change permanent ?



    Thanks again.

  6. #6
    Join Date
    Nov 2005
    Location
    Uppsala, Sweden
    Beans
    2,180
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Ubuntu can't start with Ati Radeon 9250.

    Run this in a terminal:
    Code:
    gksudo gedit /etc/default/grub
    Find the line that looks like this:
    Code:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    Make it look like this:
    Code:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash radeon.modeset=0"
    Save and close the file, then run this in a terminal:
    Code:
    sudo update-grub
    Now it should work when you reboot.

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
  •