ComputerForum.com ComputerForum.com  
Go Back   Computer Forum > Computer Software > Operating Systems

Reply
 
LinkBack Thread Tools Display Modes
Old 03-08-2007, 01:24 PM   #1 (permalink)
banned
 
Join Date: Nov 2006
Location: sussex, UK
Age: 30
Posts: 264
Default cant use graphics card to full potential on linux

i have just installed ubuntu and it doesn't seem to have an option to change the screen resolution other than the option for 800x600 and 640x480, which i assume are the standard linux OS screen sizes, the card is a Nvidia Geforce4 mx 440 agp 8x , not exactly a great card but i just need to get a bigger resolution size so i don't feel i'm inside the bloody screen.
microchipper is offline   Reply With Quote


Old 03-08-2007, 03:50 PM   #2 (permalink)
Platinum Member
 
Join Date: Sep 2006
Posts: 969
Default

You need to install the nvidia drivers.

There are a few ways to do this.

Easiest for you is probably:

1. Open a terminal and type sudo apt-get update

2. Type sudo apt-get install nvidia-glx

3. Type sudo apt-get upgrade

4. Type sudo dpkg-reconfigure xserver-xorg
* Select the nvidia driver from the X server driver list and follow the on-screen steps to complete the configuration

5. Once finished with the configuration, hold down ctrl/alt/backspace to restart X server. You should be presented with a nice NVIDIA splash screen signaling that the driver is installed and working

6. You can test this in the terminal by typing glxinfo | grep direct (the output should be direct rendering: yes)

7. You can also type glxgears to watch your card at work

If this does not resolve the issue then do not despair, you'll just need to edit your xorg. I'll explain how if the above doesn't sort it.

Last edited by _simon_; 03-08-2007 at 03:53 PM.
_simon_ is offline   Reply With Quote
Old 03-08-2007, 08:16 PM   #3 (permalink)
banned
 
Join Date: Nov 2006
Location: sussex, UK
Age: 30
Posts: 264
Exclamation

well i followed what you said thank you , but it has come up with

xlib: extension "glx" missing on display ":0.0" (three times in a row, and then)

error: couldn't find RGB GLX visual (followed by 6 rows of the error above)

i'm new to this linux stuff but i do like it a lot and it seems very quick to use to and hopefully not too taxing on the old grey matter to learn, please advise me to what i'm doing wrong
microchipper is offline   Reply With Quote
Old 03-08-2007, 08:29 PM   #4 (permalink)
Platinum Member
 
Join Date: Sep 2006
Posts: 969
Default

Quick search, has I hope found the solution.

Open terminal.

Type:

Code:
sudo /etc/X11/xorg.conf
Note, the above is case sensitive.

Enter your password when prompted.

Now you need to comment out some lines so that they look like this:
(comment out = place a # before them)

Code:
Section "InputDevice"

# /dev/input/event
# for USB
Identifier "stylus"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"

# /dev/input/event
# for USB
Identifier "eraser"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"

# /dev/input/event
# for USB
Identifier "cursor"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Then do CTRL ALT BACKSPACE and hopefully all should be well.
_simon_ is offline   Reply With Quote
Old 03-08-2007, 09:15 PM   #5 (permalink)
banned
 
Join Date: Nov 2006
Location: sussex, UK
Age: 30
Posts: 264
Default

hi simon, i have just typed in sudo /etc/X11/xorg.conf and it prompted me for password, so i put it in and it came up with sudo: /etc/X11/xorg.conf: command not found . i thought maybe i had entered password incorrectly so i restarted and tried again and got the same result !!!! what do i do now?
microchipper is offline   Reply With Quote


Old 03-09-2007, 05:06 AM   #6 (permalink)
Diamond Member
 
patrickv's Avatar
 
Join Date: Jul 2006
Location: Soul Chamber
Posts: 5,850
Default

You entered your account's password.NOT ROOT,i think you have to enable root.Root on ubuntu is disabled by default. to enable root do this
sudo xterm
passwd

Supply root password.

You can now log in as root or issue
the su command to change to root.

to run program as you its 'sudo', to do as root its 'su'

or if the above is not working try this as console :
sudo passwd root
This will ask for a new root password and once you confirm it, you can start using the root account to login.
In case you will want to disable back the root account, just lock the root account by running:
__________________
Laptop: Thinkpad X60: Core2Duo T7200 @ 2Ghz,1GB DDR2,120GB SATA -winXP ProSP3
Work:CoreDuo E2180 @ 2Ghz,1.5GB DDR2,240GB Sata II HD - XP PRO SP3

Broken: Dell Optiplex 210L @ 2.8ghz P4HT,512MB DDR2 533, 80GB HD- OSX 10.5.2
patrickv is offline   Reply With Quote
Old 03-09-2007, 08:27 AM   #7 (permalink)
Platinum Member
 
Join Date: Sep 2006
Posts: 969
Default

no no no!

You do not need to create a root account on Ubuntu. sudo does the job!

I'm very sorry it's my fault, might help if I specified an editor *blush*

Try:

Code:
sudo gedit /etc/X11/xorg.conf
_simon_ is offline   Reply With Quote
Old 03-09-2007, 08:52 AM   #8 (permalink)
Diamond Member
 
patrickv's Avatar
 
Join Date: Jul 2006
Location: Soul Chamber
Posts: 5,850
Default

no simon he's not creating root, root is already there but its disabled, but some few programs requires root,very few. Anyways i thought it was that case.anyhows a new linux is out now based on ubuntu its called Mint. check it out
http://linuxmint.com/
__________________
Laptop: Thinkpad X60: Core2Duo T7200 @ 2Ghz,1GB DDR2,120GB SATA -winXP ProSP3
Work:CoreDuo E2180 @ 2Ghz,1.5GB DDR2,240GB Sata II HD - XP PRO SP3

Broken: Dell Optiplex 210L @ 2.8ghz P4HT,512MB DDR2 533, 80GB HD- OSX 10.5.2
patrickv is offline   Reply With Quote
Old 03-09-2007, 09:25 AM   #9 (permalink)
banned
 
Join Date: Nov 2006
Location: sussex, UK
Age: 30
Posts: 264
Default

i will try both your suggestions and let you know if any success i am extremely new to LINUX so please be gentle ha ha. i'm just wondering if my graphics card is supported at all Geforce mx440 AGP 8x, does anyone know for certain about this cards compatability?

THANK YOU BOTH SO FAR FOR YOUR HELP AND SUPPORT
microchipper is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Can an integrated graphics card be replaced somehow? HELP cwhite86720 Video Cards and Monitors 3 01-08-2007 11:24 PM
Graphics card & monitor Jaap Video Cards and Monitors 9 01-07-2007 07:32 PM
Yet another problem with my graphics card its_me123 Video Cards and Monitors 1 06-07-2006 03:26 PM
Need graphics card..help? Nothing General Computer Chat 20 03-17-2006 09:08 PM
Upgrade Playstation 2 graphics card? MOD time ! Greg J. Computer Games and Consoles 5 10-03-2004 07:03 AM

All times are GMT +1. The time now is 05:48 AM.


Powered by: vBulletin Version 3.7.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.
Copyright © 2002-2008 Computer Forum and Web Design Forum