Page 1 of 7 123 ... LastLast
Results 1 to 10 of 64

Thread: HOWTO: Install OpenGL/Graphic card Benchmark utility - SVN

  1. #1
    Join Date
    Oct 2004
    Location
    Denmark - Scandinavia
    Beans
    19,553
    Distro
    Ubuntu Budgie Development Release

    HOWTO: Install OpenGL/Graphic card Benchmark utility - SVN

    Doesn't work in Ubuntu Breezy 5.10 and below
    Tested: 6.04 x86, 6.10 x86, 7.04 x86 | 7.10 64-bit, 8.04 64-bit and 8.10 64-bit


    NB: Nvidia 9xxx driver support GL_shadow.

    A couple a months ago I found this handy little tool which are build for benchmarking your Graphic card. The name of the tool is GLobs.
    Before you start, make sure you have universe enable in your sourcelist. There's plenty of threads and howtos throughout the forum to do so.

    ---------------------------------------------------------------

    Before Installation:

    Make sure that your sourcelist is properly set up and your 3D driver for your graphic card is working.
    Next step is getting you the right compiling tools and depended libs to compile and making Globs working:

    7.04 and previous releases:
    Code:
    sudo apt-get update && sudo apt-get upgrade
    sudo apt-get install build-essential subversion scons
    sudo apt-get install libsdl-image1.2-dev libsqlite0-dev libsqlite3-0 libsqlite3-dev python-gnome2-dev python-gobject-dev python-gtk2-dev python2.4-opengl x11proto-gl-dev libgtk2.0-dev python2.4-pysqlite2 freeglut3-dev
    7.10, 8.04 and 8.10:
    Code:
    sudo apt-get update && sudo apt-get upgrade
    sudo apt-get install build-essential subversion scons
    sudo apt-get install libsdl-image1.2-dev libsqlite0-dev libsqlite3-0 libsqlite3-dev python-gnome2-dev python-gobject-dev python-gtk2-dev python-opengl x11proto-gl-dev libgtk2.0-dev python2.4-pysqlite2 freeglut3-dev


    Installation:

    Now to the compiling and installing;

    Code:
    cd ~/Desktop
    svn co https://globs.svn.sourceforge.net/svnroot/globs/globs/trunk globs
    svn co https://globs.svn.sourceforge.net/svnroot/globs/benchmarks/trunk globs/src/benchmarks
    cd globs
    scons
    sudo scons install prefix=/usr
    sudo python patchdir.py prefix=/usr
    sudo python setup.py install --prefix=/usr

    Last step is making an application launcher;

    Code:
    sudo rm -f /usr/share/applications/globs.desktop
    sudo nano /usr/share/applications/globs.desktop

    add the following text:

    [Desktop Entry]
    Name=GL O.B.S.
    Comment=OpenGL Benchmark Utility
    Exec=globs %F
    Icon=/usr/share/globs/pixmaps/globs.png
    Terminal=false
    Type=Application
    Categories=Application;System;



    Save and exit.
    [ctrl]+[o] | [ctrl]+[x]

    You can now start GLobs in the Application tab ---> System Tools or type globs in the terminal.
    Attached Images Attached Images
    Last edited by Perfect Storm; November 12th, 2008 at 01:22 PM.

  2. #2
    Join Date
    Feb 2006
    Location
    Colorado Springs CO
    Beans
    58
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    Quote Originally Posted by Artificial Intelligence
    A couple a months ago I found this handy little tool which are build for benchmarking your Graphic card. The name of the tool is GLobs.
    Before you start, make sure you have universe enable in your sourcelist. There's plenty of threads and howtos throughout the forum to do so.

    ---------------------------------------------------------------

    1) Download GLobs to your Desktop. You can download it here: http://sourceforge.net/project/showf...roup_id=161613

    2) Next step is getting you the right compiling tools and depended libs to compile and making Globs working:

    Code:
    sudo apt-get install build-essential libsqlite0-dev libsqlite3-0 libsqlite3-dev python-gnome2-dev python-gobject-dev python-gtk2-dev python2.4-opengl scons x11proto-gl-dev libgtk2.0-dev freeglut3-dev
    3) Now to the compiling and installing:

    Code:
    cd Desktop
    tar zxvf globs-0.1.tar.gz
    cd globs-0.1
    scons
    sudo scons install prefix=/usr
    sudo python patchdir.py prefix=/usr
    sudo python setup.py install --prefix=/usr
    4) Last step is making an application launcher:

    Code:
    sudo rm -f /usr/share/applications/globs.desktop
    sudo gedit /usr/share/applications/globs.desktop
    add:



    Save an exit.
    You can now start GLobs in the Application tab ---> System Tools
    or type globs in the terminal.


    This howto is also tested on Dapper.
    Quote Originally Posted by namit
    I am gettting this error message
    Can anyone help?

    Attempting to start 3ddesktop server.
    3ddeskd: glXIsDirect failed, no Direct Rendering possible!
    3ddeskd: Please configure hardware acceleration. Exiting.
    Daemon started. Run 3ddesk to activate.
    Server not found after waiting 5 seconds.
    Could not find server.
    Try starting manually (3ddeskd)
    got this error

    jason@jason:~/Desktop/globs-0.1$ scons
    scons: Reading SConscript files ...
    sh: sdl-config: command not found
    sh: sdl-config: command not found
    :: Checking for libs
    Checking for SDL_Init(SDL_INIT_VIDEO) in C library libSDL... no
    Did not find libSDL, exiting!


    and this

    scons: Reading SConscript files ...
    sh: sdl-config: command not found
    sh: sdl-config: command not found
    :: Checking for libs
    Checking for SDL_Init(SDL_INIT_VIDEO) in C library libSDL... no
    Did not find libSDL, exiting!
    Core i7 920 OC @3.8ghz 6 GB Gskill 1333 Dram Freq 744 mhz Antec 1200 Case 850W Single
    Rail Corsair PSU COOLER MASTER Hyper N 520 Logitech G9 and G15 gen2 KB 24' HD 1080P 3ms
    Multiplier x20 Bus 190 mhz QPI 3420 mhz NB 3040 mhz Nvidia GTX 260

  3. #3
    Join Date
    Oct 2004
    Location
    Denmark - Scandinavia
    Beans
    19,553
    Distro
    Ubuntu Budgie Development Release

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    Try install the devel package of libsdl.

  4. #4
    Join Date
    Feb 2006
    Location
    Colorado Springs CO
    Beans
    58
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    Quote Originally Posted by Artificial Intelligence
    Try install the devel package of libsdl.

    tried.

    jason@jason:~/Desktop/globs-0.1$ scons
    scons: Reading SConscript files ...
    :: Checking for libs
    Checking for SDL_Init(SDL_INIT_VIDEO) in C library libSDL... no
    Did not find libSDL, exiting!
    Core i7 920 OC @3.8ghz 6 GB Gskill 1333 Dram Freq 744 mhz Antec 1200 Case 850W Single
    Rail Corsair PSU COOLER MASTER Hyper N 520 Logitech G9 and G15 gen2 KB 24' HD 1080P 3ms
    Multiplier x20 Bus 190 mhz QPI 3420 mhz NB 3040 mhz Nvidia GTX 260

  5. #5
    Join Date
    Jan 2006
    Location
    Leuven, Belgium
    Beans
    3,414

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    python-gobject-dev is not available from breezy repo's.

  6. #6
    Join Date
    Apr 2006
    Beans
    84
    Distro
    Dapper Drake Testing/

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    Followed all the recommendations/directions here and at the main GL OBS site - still, I got compile errors when I ran scons.

    My post/inquiry/plea for help is here GL OBS on Ubuntu PPC?.

    Anyhelp would be appreciated. You can pm me.

    thanks,

    davygravy
    Davygravy is Using Jaunty & Enjoying It... as he works with...
    foonas
    Buffalo NAS Central
    OpenEmbedded

  7. #7
    Join Date
    Apr 2006
    Beans
    84
    Distro
    Dapper Drake Testing/

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    bump...anyone?
    Davygravy is Using Jaunty & Enjoying It... as he works with...
    foonas
    Buffalo NAS Central
    OpenEmbedded

  8. #8
    Join Date
    Oct 2004
    Location
    Denmark - Scandinavia
    Beans
    19,553
    Distro
    Ubuntu Budgie Development Release

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    Sorry don't know. It might be PPC related somehow.
    But you might take contact with the developer of Globs to straighten out the errors.

  9. #9
    Join Date
    Jan 2006
    Location
    Columbus, Ohio
    Beans
    34
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    When I try to get the globs installed, I get this message:
    Reading package lists... Done
    Building dependency tree... Done
    E: Couldn't find package python-gobject-dev

    I get that after I input this:
    sudo apt-get install build-essential python-gnome2-dev python-gtk2-dev python-gobject-dev libwnck-dev libxres-dev x11proto-resource-dev libgnome-desktop-dev libstartup-notification0-dev automake1.8 python-gobject

    How do I get python-gobject-dev installed?
    Hoping to move away from Windows completely.

  10. #10
    Join Date
    Oct 2004
    Location
    Denmark - Scandinavia
    Beans
    19,553
    Distro
    Ubuntu Budgie Development Release

    Re: HOWTO: Install OpenGL/Graphic card Benchmark utility (GL o.b.s.)

    It might be called something else on breezy, because I've manage to install it on breezy but I've moved to dapper and wrote the howto through there. A mistake of mine.

    But you could try and see if the dapper version of the file works or you ran into dependency problems: http://packages.ubuntulinux.org/cgi-...=all&type=main

Page 1 of 7 123 ... 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
  •