LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-09-2003, 12:24 PM   #1
simanyay
LQ Newbie
 
Registered: Jul 2003
Location: Imperial Library, Trantor
Distribution: SuSe Linux 9.3 Pro
Posts: 23

Rep: Reputation: 15
How to add OpenGL support?


Hi! I install Linux Slackware 9.0 but Gnome and KDE are very slow I think I need to add OpenGL support to Linux to make X more fast. My computer is:
Intel Celeron 1.2Ghz
256 Mb Ram
Audio - Video Integrated to i815 chipset.
Thanks.
 
Old 07-09-2003, 01:12 PM   #2
neenee
Member
 
Registered: Feb 2003
Location: Netherlands
Distribution: debian (sid)
Posts: 693

Rep: Reputation: 30
opengl will not speed up 2D for you, unless you're using
directFB (but since that is not installed by default, your
2D/desktop performance will not increase when you
install hardware accelerated drivers).

and please explain which part of gnome / kde are slow?
 
Old 07-09-2003, 07:22 PM   #3
tr4nce
Member
 
Registered: Mar 2003
Location: Buenos Aires, Argentina
Distribution: Slackware-current
Posts: 75

Rep: Reputation: 15
have you got a NVIDIA chipset Video Card?

install the latest Drivers, do the proper modifications to XF86Config, select the correct Horizontal and Vertical Refresh of your monitor, change "nv" to "nvidia", set "(your resolution)/85Hz" and then restart X server...

Here is some peaks of my XF86Config, i have a PIII 750 Mhz with a Geforce2 MX and KDE has a Good Performance

PHP Code:
Section "Module"

# This loads the DBE extension module.

    
Load        "dbe"      # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    
SubSection  "extmod"
      
Option    "omit xfree86-dga"   # don't initialise the DGA extension
    
EndSubSection

# This loads the font modules
    
Load        "type1"
    
Load        "freetype"
    
Load        "speedo"

# This loads the GLX module
    
Load       "glx"

EndSection 
PHP Code:
# Any number of monitor sections may be present

Section "Monitor"

    
Identifier  "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    
HorizSync   30-70

#    HorizSync    30-64         # multisync
#    HorizSync    31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync    15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    
VertRefresh 50-160

vendorname 
"Samsung"
modelname "SyncMaster 710s"
ModeLine "1024x768/85Hz" 98.9 1024 1056 1216 1408 768 782 788 822  -HSync -VSync
EndSection 
PHP Code:
# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
    
Identifier  "VESA Framebuffer"
    
Driver      "nvidia"
    
#VideoRam    4096
    # Insert Clocks lines here if appropriate
vendorname "NVidia"
boardname "GeForce2 MX DDR"
EndSection 
PHP Code:
# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    
Identifier  "Screen 1"
    
Device      "VESA Framebuffer"
    
Monitor     "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

#   DefaultDepth 8
#   DefaultDepth 16
   
DefaultDepth 24
#   DefaultDepth 32

# "1024x768" is also a conservative usable default resolution.  If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

    
Subsection "Display"
        
Depth       8
        Modes 
"1024x768/85Hz" "800x600" "640x480" 
        
Virtual 0 0
    EndSubsection
    Subsection 
"Display"
        
Depth       16
        Modes 
"1024x768/85Hz" "800x600" "640x480" 
        
Virtual 0 0
    EndSubsection
    Subsection 
"Display"
        
Depth       24
        Modes 
"1024x768/85Hz" "800x600" "640x480" 
        
Virtual 0 0
    EndSubsection
    Subsection 
"Display"
        
Depth       32
        Modes 
"1024x768/85Hz" "800x600" "640x480" 
        
Virtual 0 0
    EndSubsection

EndSection 

Last edited by tr4nce; 07-09-2003 at 07:24 PM.
 
Old 07-10-2003, 11:17 AM   #4
simanyay
LQ Newbie
 
Registered: Jul 2003
Location: Imperial Library, Trantor
Distribution: SuSe Linux 9.3 Pro
Posts: 23

Original Poster
Rep: Reputation: 15
KDE is very slow when I resizing, moving windows. I think it's something in the config files cause RedHat at school with KDE and Gnome are working fast with same hardware.
 
Old 07-10-2003, 01:26 PM   #5
scottwest2
Member
 
Registered: Jun 2003
Distribution: Mac OS X 10.5.7, Athlon 64 X2 4200+, 2GB Ram, nVidia GeForce 9400 GT 1GB --- Ubuntu 9.04 Jaunty x64
Posts: 58

Rep: Reputation: 16
do u have anything running in the background that starts when kde and gnome start? Try turning them off.
 
Old 07-10-2003, 01:47 PM   #6
tobyl
Member
 
Registered: Apr 2003
Location: uk
Distribution: slackware current
Posts: 768

Rep: Reputation: 64
one thing that may help a bit is kde/control centre/desktop/windows behaviour select 'moving' tab, and experiment with the settings there.
 
Old 07-11-2003, 08:58 AM   #7
simanyay
LQ Newbie
 
Registered: Jul 2003
Location: Imperial Library, Trantor
Distribution: SuSe Linux 9.3 Pro
Posts: 23

Original Poster
Rep: Reputation: 15
Thanks.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
OpenGL support with Intel 915GM ? phen Linux - Hardware 4 05-31-2005 01:06 AM
ATI OpenGL support? phrenicNerve Fedora 5 01-10-2005 02:54 PM
No OpenGL support corbis_demon Linux - Newbie 0 07-01-2004 04:25 AM
Having trouble with 3D or OpenGL support Nic-MDKman Linux - General 4 04-14-2004 08:42 PM
I lost my openGL support! digital bots Slackware 0 09-02-2002 08:27 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:04 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration