LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   assistance to change Screen Resolution [Fedora 10] (https://www.linuxquestions.org/questions/linux-newbie-8/assistance-to-change-screen-resolution-%5Bfedora-10%5D-696282/)

Sammora 01-10-2009 05:58 AM

assistance to change Screen Resolution [Fedora 10]
 
like to use my native resolution of 1024x768

Code:

# lspci | grep VGA
01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1)
[root@samhost Desktop]# xrandr -q
Screen 0: minimum 640 x 480, current 800 x 600, maximum 800 x 600
default connected 800x600+0+0 0mm x 0mm
  800x600        61.0*
  640x480        60.0

/etc/X11/xorg.conf :

Code:

# Xorg configuration created by livna-config-display

Section "Files"
        ModulePath  "/usr/lib/xorg/modules"
EndSection

Section "ServerFlags"
        Option            "AIGLX" "on"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Extensions"
        Option            "Composite" "Enable"
EndSection

Code:

$ lsmod
Module                  Size  Used by
fuse                  49436  6
bridge                43668  0
stp                    6148  1 bridge
bnep                  14848  2
sco                    12932  2
l2cap                  21504  3 bnep
bluetooth              48608  5 bnep,sco,l2cap
sunrpc                155924  3
ip6t_REJECT            7296  2
nf_conntrack_ipv6      15864  2
ip6table_filter        6400  1
ip6_tables            14736  1 ip6table_filter
ipv6                  230132  20 ip6t_REJECT,nf_conntrack_ipv6
p4_clockmod            8324  0
dm_multipath          17164  0
uinput                10624  0
ppdev                  10372  0
snd_intel8x0          30876  3
snd_ac97_codec        96672  1 snd_intel8x0
ac97_bus                5504  1 snd_ac97_codec
snd_seq_dummy          6660  0
snd_seq_oss            30364  0
snd_seq_midi_event      9600  1 snd_seq_oss
snd_seq                48320  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device          9996  3 snd_seq_dummy,snd_seq_oss,snd_seq
floppy                51988  0
snd_pcm_oss            41600  0
snd_mixer_oss          16896  1 snd_pcm_oss
snd_pcm                64772  3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
snd_timer              21896  2 snd_seq,snd_pcm
snd                    51768  16 snd_intel8x0,snd_ac97_codec,snd_seq_dummy,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
soundcore              9416  1 snd
pcspkr                  6272  0
snd_page_alloc        11144  2 snd_intel8x0,snd_pcm
e100                  33804  0
iTCO_wdt              13732  0
iTCO_vendor_support    6916  1 iTCO_wdt
mii                    8192  1 e100
parport_pc            25620  0
parport                31956  2 ppdev,parport_pc
ata_generic            8452  0
pata_acpi              7680  0

best regards

Didier Spaier 01-10-2009 06:46 AM

I've almost the same card:
Code:

01:00.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX Go5200 64M] (rev a1)
and no problem with the vesa driver.

Please provide all sections "Screen", including all subsections "Display" of your xorg.conf.

[EDIT]Post was incomplete

Sammora 01-10-2009 06:48 AM

Quote:

Originally Posted by Didier Spaier (Post 3403424)
I've almost the same card:

and so ;

did you solve this problem ?

Didier Spaier 01-10-2009 06:56 AM

Quote:

Originally Posted by Sammora (Post 3403427)
did you solve this problem ?

I did not have any problem. Please answer my completed first post.

Sammora 01-10-2009 07:37 AM

Quote:

Originally Posted by Didier Spaier (Post 3403424)
I've almost the same card:
Code:

01:00.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX Go5200 64M] (rev a1)
and no problem with the vesa driver.

Please provide all sections "Screen", including all subsections "Display" of your xorg.conf.

[EDIT]Post was incomplete

how can i do this ?

Didier Spaier 01-10-2009 07:51 AM

Quote:

Originally Posted by Sammora (Post 3403465)
how can i do this ?

The same way you provided the extract of your /etc/X11/xorg.conf included in your first post.

Include the entire content of that file in your next post, it will be OK

Sammora 01-10-2009 08:16 AM

Quote:

Originally Posted by Didier Spaier (Post 3403489)
The same way you provided the extract of your /etc/X11/xorg.conf included in your first post.

Include the entire content of that file in your next post, it will be OK

i have installed nvidia driver following this guide here http://www.my-guides.net/en/content/...drivers_nvidia

For GeForce FX cards

su -c 'yum install kmod-nvidia-173xx xorg-x11-drv-nvidia-173xx xorg-x11-drv-nvidia-173xx-libs'
__________________

after installation

Code:

$ xrandr -q
Screen 0: minimum 320 x 240, current 640 x 480, maximum 640 x 480
default connected 640x480+0+0 0mm x 0mm
  640x480        50.0*
  320x240        51.0

Code:

$ gedit /etc/X11/xorg.conf

# Xorg configuration created by livna-config-display

Section "Files"
        ModulePath  "/usr/lib/xorg/modules/extensions/nvidia"
        ModulePath  "/usr/lib/xorg/modules"
EndSection

Section "ServerFlags"
        Option            "AIGLX" "on"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "nvidia"
        Option            "AddARGBGLXVisuals" "True"
EndSection

Section "Extensions"
        Option            "Composite" "Enable"
EndSection


Didier Spaier 01-10-2009 08:37 AM

Install nvidia drivers was *not* necessary to get 1024x768. Still, I guess you didn't send the *whole* content of /etc/X11/xorg.conf as I asked for. And the link you provided is broken.

Anyhow, if the nvidia driver is properly installed you should have now installed nvidia-setup or something like that. Try using it to setup your screen size.

Otherwise provide the *whole* content of /etc/X11/xorg.conf

Sammora 01-10-2009 09:16 AM

it is strange thing happend

when i reboot i lost kernell 2.6.27.9-159.fc10 i686

and i use the Previous kernel to open fedora

is it any way to reinstall kernell 2.6.27.9-159.fc10 i686 ; or fix it again ?

Didier Spaier 01-10-2009 10:29 AM

If you have a new problem please open a new thread and provide useful information, e.g. output of uname -a.

Then as long as your computer works, why bother which kernel it uses ?

Sammora 01-10-2009 10:42 AM

Quote:

Originally Posted by Didier Spaier (Post 3403643)
If you have a new problem please open a new thread and provide useful information, e.g. output of uname -a.

Then as long as your computer works, why bother which kernel it uses ?

thanks brother

Code:

[root@samhost Desktop]# uname -a
Linux samhost.localdomain 2.6.27.5-117.fc10.i686 #1 SMP Tue Nov 18 12:19:59 EST 2008 i686 i686 i386 GNU/Linux


Didier Spaier 01-10-2009 10:55 AM

So you have a working kernel. You may upgrade if you want but unless you really need it -- e.g. for security reasons -- that's not urgent. Meanwhile did you solve your screen size issue ?

Take care


All times are GMT -5. The time now is 11:21 PM.