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

Thread: ATI Radeon x1200 Motherboard intergration not getting detected

  1. #1
    Join Date
    May 2011
    Beans
    14
    Distro
    Ubuntu 11.04 Natty Narwhal

    ATI Radeon x1200 Motherboard intergration not getting detected

    how to i get ubuntu to use my on board gfx card because it can't find it. games that run super fast in windows are bogged down(and proably rendering using the cpu) and it was enough for cube and cube 2.

    any command i can use to scan for the mobo card or is it called something totally different than a VGA.
    Last edited by grandmasterhack; May 21st, 2011 at 04:53 AM.

  2. #2
    Join Date
    May 2011
    Beans
    14
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    bump...

  3. #3
    Join Date
    Nov 2008
    Location
    Malvern PA USA
    Beans
    207
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    You could try sudo lshw -C video. That should return information on the enabled video device and driver in use.

  4. #4
    Join Date
    May 2011
    Beans
    14
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    command used:
    Code:
    sudo lshw -C video
    output returned:

    Code:
     *-display               
           description: VGA compatible controller
           product: RS690M [Radeon X1200 Series]
           vendor: ATI Technologies Inc
           physical id: 5
           bus info: pci@0000:01:05.0
           version: 00
           width: 64 bits
           clock: 33MHz
           capabilities: pm msi vga_controller bus_master cap_list rom
           configuration: driver=radeon latency=64
           resources: irq:18 memory:f0000000-f7ffffff memory:f8100000-f810ffff ioport:9000(size=256) memory:f8000000-f80fffff
    how do i tell if I'm using the correct driver?
    Attached Files Attached Files
    Last edited by grandmasterhack; June 22nd, 2011 at 01:09 AM. Reason: question specification

  5. #5
    Join Date
    Oct 2010
    Location
    Pikes Peak
    Beans
    1,175
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    It looks like you are using the open source driver, radeon. Look at this for what you may be able to do to test and tweak it. https://help.ubuntu.com/community/RadeonDriver

    If you still can't get good enough performance, you could go to the closed source driver. This is the link on that. https://help.ubuntu.com/community/BinaryDriverHowto/ATI
    Jim
    Toshiba Satellite L505-S6946
    Precise, Fedora, Kororaa, Bodhi

  6. #6
    Join Date
    Jun 2011
    Beans
    11
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    I have exactly the same video card ... and it is not properly working as well.
    I use Ubuntu 10.04 LTS and don't want to upgrade it, will it work ?
    As I could reead they mention the Maverick 10.10 version ...
    Thanks !

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

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    Quote Originally Posted by Blasphemist View Post
    If you still can't get good enough performance, you could go to the closed source driver. This is the link on that. https://help.ubuntu.com/community/BinaryDriverHowto/ATI
    Amd/ATI have not made any driver for that card for years, so there is no way that link can help.

  8. #8
    Join Date
    Jun 2007
    Beans
    14,793

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    The best thing you can do for 3D performance is use the xorg-edgers PPA, and make sure you disable SwapBuffersWait in xorg.conf: https://launchpad.net/~xorg-edgers/+archive/ppa

  9. #9
    Join Date
    Jun 2011
    Beans
    11
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    I'm kind of lost

    These instructions are not meant to be executed for beginners ...
    Any script or step-by-step using only terminal commands ?

  10. #10
    Join Date
    Jun 2007
    Beans
    14,793

    Re: ATI Radeon x1200 Motherboard intergration not getting detected

    First off, if you tried to install the proprietary ATI fglrx/Catalyst driver, see this: http://wiki.cchtml.com/index.php/Ubu...talyst.2Ffglrx
    Code:
    sudo apt-add-repository ppa:xorg-edgers/ppa
    sudo apt-get update
    sudo apt-get dist-upgrade
    Next, create an /etc/X11/xorg.conf file:
    Code:
    gksu gedit /etc/X11/xorg.conf
    Copy,paste,save,exit,restart.
    Code:
    Section "Monitor"
        Identifier     "Monitor0"
    EndSection
    
    Section "Device"
        Identifier     "Device0"
        Option "SwapbuffersWait" "false"
    EndSection
    
    Section "Screen"
        Identifier     "Screen0"
        Device         "Device0"
        Monitor        "Monitor0"
        DefaultDepth    24
        SubSection     "Display"
            Depth       24
        EndSubSection
    EndSection

Page 1 of 2 12 LastLast

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
  •