NVIDIA GEForce 7300 on Fedora Core 7

Graphic Board
As you can see here:
Fedora 7 nvidia driver e direct rendering problem
I’ve tried to install nvidia driver for my nvidia GE FORCE 7300
but with yum and rpm packege i cannot enable direct rendering.

glxinfo | grep rend

direct rendering: No

So i have installed manually:

Download
http://us.download.nvidia.com/XFree86/Linux-x86/100.14.09/NVIDIA-Linux-x86-100.14.09-pkg1.run

then write from konsole

telinit 3
yum remove kmod-nvidia.i686
yum install kernel-devel gcc
chmod ugo+x NVIDIA-Linux-x86-100.14.09-pkg1.run
./NVIDIA-Linux-x86-100.14.09-pkg1.run

follow necessary steps
then

telinit 5

so….

glxinfo | grep rend
direct rendering: Yes
OpenGL renderer string: GeForce Go 7300/PCI/SSE2

This is my xorg.conf :

[root@trinity2 ~]# cat /etc/X11/xorg.conf

# Xorg configuration created by system-config-display
Section “ServerLayout”
Identifier “single head configuration”
Screen 0 “Screen0” 0 0
InputDevice “Keyboard0” “CoreKeyboard”
InputDevice “Synaptics” “CorePointer”
EndSection

Section “Files”
ModulePath “/usr/lib/xorg/modules”
EndSection

Section “Module”
Load “ddc”
Load “dri”
Load “fbdevhw”
Load “record”
Load “GLCore”
Load “extmod”
Load “freetype”
Load “glx”
Load “int10”
Load “type1”
Load “vbe”
Load “glx”
Load “dbe”
Load “extmod”
EndSection

Section “InputDevice”
Identifier “Keyboard0”
Driver “kbd”
Option “XkbModel” “pc105”
Option “XkbLayout” “it”
EndSection

Section “InputDevice”
Identifier “Synaptics”
Driver “synaptics”
Option “Device” “/dev/input/mice”
Option “Protocol” “auto-dev”
Option “Emulate3Buttons” “yes”
EndSection

Section “Monitor”
Identifier “Monitor0”
VendorName “Unknown”
ModelName “Unknown”
HorizSync 30.0 – 110.0
VertRefresh 50.0 – 150.0
Option “DPMS”
EndSection

Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce Go 7300”
EndSection

Section “Screen”
Identifier “Screen0”
Device “Device0”
Monitor “Monitor0”
DefaultDepth 24
Option “NoRenderExtension” “False”
Option “DamageEvents” “True”
SubSection “Display”
Depth 24
EndSubSection

Option “AllowGLXWithComposite” “True”
Option “RenderAccel” “True”
Option “AddARGBGLXVisuals” “True”
Option “TripleBuffer” “true”
EndSection

Section “Extensions”
Option “RENDER” “true”
Option “DAMAGE” “true”
Option “Composite” “Enable”
EndSection

.