Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,235
» Latest member: pwcreator
» Forum threads: 4,030
» Forum posts: 16,405

Full Statistics

Online Users
There are currently 188 online users.
» 0 Member(s) | 184 Guest(s)
Baidu, Bing, Google, Yandex

Latest Threads
Wi-Fi works for a few min...
Forum: Network Problems
Last Post: kabifff
2025-12-15, 12:57 AM
» Replies: 0
» Views: 54
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 3,603
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 113,331
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 60,873
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 4,969
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 8,640
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 46,031
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 144,493
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 79,955
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 62,742

 
  nvidia drivers and fedora core 3
Posted by: anyweb - 2004-11-16, 02:45 PM - Forum: nVidia Problems - Replies (16)


to install the nvidia driver and get it working with the default kernels shipped with Fedora Core Release 3 do as follows (you may want to print this document or save it as a file to read while in Text mode):-

 

Step one: GET THE DRIVER

 

first of all get this nvidia driver (for i386, if you have amd or other architecture, go to www.nvidia.com and download the correct driver).

 

download it somewhere easy to remember like /home/anyweb

 

Step Two: BACKUP IMPORTANT FILES

 

now login via root in a console and do as follows

 



Code:
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.org
cp /boot/grub/grub.conf /boot/grub/grub.conf.org
cp /etc/inittab /etc/inittab.org




 

Step Three: EDIT SOME FILES

 

* first we will stop the GUI from automatically loading

 

login as root and do as follows:

 



Code:
vi /etc/inittab

find the line that reads

id:5:initdefault: and change it to read id:3:initdefault:

save your changes with :wq




 

*now (as root) we will edit the grub boot loader and stop the red hat graphical boot (rhgb)

 



Code:
vi /boot/grub/grub.conf

find the line that reads

kernel /vmlinuz-2.6.9-1.667 ro root=LABEL=/1 rhgb quiet
and change it to read
kernel /vmlinuz-2.6.9-1.667 ro root=LABEL=/1 quiet




 

Step Four: EXIT GUI MODE

 

easy way to do this is to reboot, so go ahead and reboot, or as root type init 3

 

Step Five: INSTALL THE DRIVER

 

Login as root again, and cd to the directory you saved the nvidia file (/home/anyweb/)

 

do as follows

 

 



Code:
sh NVIDIA-Linux-x86-1.0-6629-pkg1.run




 

answer OK to any questions it asks and make note of any errors (there will be some, don't worry).

 

Step Six: EDIT YOUR xorg.conf FILE

 

now we need to edit the xorg.conf file and remove the following line (under module)

 

 

 

 



Code:
vi /etc/X11/xorg.conf

find this section

Section "Module"
       Load  "dbe"
       Load  "extmod"
       Load  "fbdevhw"
       Load  "glx"
       Load  "record"
       Load  "freetype"
       Load  "type1"
       Load  "dri"
EndSection

edit it so it now reads

Section "Module"
       Load  "dbe"
       Load  "extmod"
       Load  "fbdevhw"
       Load  "glx"
       Load  "record"
       Load  "freetype"
       Load  "type1"
EndSection


and find this section

Section "Device"
       Identifier  "Videocard0"
       Driver      "vesa"
       VendorName  "Videocard vendor"
       BoardName   "VESA driver (generic)"


edit it so it now reads

Section "Device"
       Identifier  "Videocard0"
       Driver      "nvidia"
       VendorName  "Videocard vendor"
       BoardName   "VESA driver (generic)"



save the file :wq




 

Step Seven: LOAD THE NVIDIA MODULE AT BOOT

 

login as root and do as follows:



Code:
vi /etc/rc.d/rc.local

add the line 'modprobe nvidia
' so it now looks something like this

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
modprobe nvidia

save the file :wq




 

Step Eight: COPY FILE/CHANGE OWNERSHIP

 

now copy some files.. as root

 



Code:
cp -a /dev/nvidia* /etc/udev/devices
chown root.root /etc/udev/devices/nvidia*




 

 

Step Nine REBOOT THE COMPUTER

 

this howto worked fine for me on a plain Fedora Core Release 3 install, with Nvidia Geforce 6800 GT (AGP) and the default kernel.

 

Quote:[anyweb@localhost ~]$ glxgears45844 frames in 5.0 seconds = 9168.800 FPS

66613 frames in 5.0 seconds = 13322.600 FPS

56198 frames in 5.0 seconds = 11239.600 FPS

66199 frames in 5.0 seconds = 13239.800 FPS

68422 frames in 5.0 seconds = 13684.400 FPS

68244 frames in 5.0 seconds = 13648.800 FPS

68221 frames in 5.0 seconds = 13644.200 FPS

66314 frames in 5.0 seconds = 13262.800 FPS

68218 frames in 5.0 seconds = 13643.600 FPS

67884 frames in 5.0 seconds = 13576.800 FPS

65867 frames in 5.0 seconds = 13173.400 FPS

66753 frames in 5.0 seconds = 13350.600 FPS

68425 frames in 5.0 seconds = 13685.000 FPS

66579 frames in 5.0 seconds = 13315.800 FPS

66013 frames in 5.0 seconds = 13202.600 FPS

57304 frames in 5.0 seconds = 11460.800 FPS

42549 frames in 5.0 seconds = 8509.800 FPS

51651 frames in 5.0 seconds = 10330.200 FPS

57783 frames in 5.0 seconds = 11556.600 FPS

67616 frames in 5.0 seconds = 13523.200 FPS

68449 frames in 5.0 seconds = 13689.800 FPS

65505 frames in 5.0 seconds = 13101.000 FPS
 

look at those numbers ^^ !!! :P

 

here is my working xorg.conf for you in case you are interested

 

cheers

 

anyweb

xorg.conf



Attached Files
.conf   xorg.conf (Size: 2.8 KB / Downloads: 17)
Print this item

  Wanna buy cigarettes Marlboro
Posted by: Arnie28 - 2004-11-15, 10:53 PM - Forum: General Chat - Replies (3)


Good afternoon to all of you!

Will you be so kind to give me the address of some internet shop where I can buy cigarettes Marlboro?

Print this item

  makes your own rpms
Posted by: hijinks - 2004-11-15, 10:13 PM - Forum: Redhat - Replies (5)


So where I work we have around 100 or so RH9 servers. Most of these are cranking 24/7 and its the general rule of thumb around here that if something isn't broke.. lets not fix it. So as you may know RH9 isn't supported anymore. So if a new openssh problem is released.. there is no offical RH patch for 9. So what can you do?

 

Well you have two options..

1) remove the openssh rpms and install from source (yuck!)

2) grab a nice.. say core3 source rpm and rebuild it (yes!)

 

well I guess you know which one i like. For me to rebuild the source on all machines would take awhile. If i build a rpm made for RH9 it will work on the rest of my servers. So I have a dedicated apt server that hosts all the RH9 rpms and updates. Once i place an update there others will find it and install the update.. then i'm done.

 

So here are some simple instructions for building your own rpm.. the easy way.

 

So lets grab and install the core2 openssh source rpm

 



Code:
rpm -ivh http://ayo.freshrpms.net/fedora/linux/2/i386/SRPMS.core/openssh-3.6.1p2-34.src.rpm




 

now lets try to build the rpm

 



Code:
rpmbuild -ba /usr/src/redhat/SPECS/openssh.spec




 

we now see we get something like this (probably anyway)

 



Code:
[root@monitor root]# rpmbuild -ba /usr/src/redhat/SPECS/openssh.spec
error: Failed build dependencies:
       sharutils is needed by openssh-3.6.1p2-34
       gnome-libs-devel is needed by openssh-3.6.1p2-34
[root@monitor root]#




 

so we have some depandancy issues. DAMN! the good thing is they can easily be worked out. . so both of these packages are avaliable for RH9 so we can either install them or work around it. Installing them is staight forward. My goal is to teach you how to work around these.. so lets so that.

 

so edit the file /usr/src/redhat/SPECS/openssh.spec

look for the following line. (line #123 on my file)

 



Code:
BuildPreReq: openssl-devel, perl, sharutils, tcp_wrappers, zlib-devel




 

change it to

 



Code:
BuildPreReq: openssl-devel, perl, tcp_wrappers, zlib-devel




 

now lets run it again

 



Code:
[root@monitor root]# rpmbuild -ba /usr/src/redhat/SPECS/openssh.spec
error: Failed build dependencies:
       gnome-libs-devel is needed by openssh-3.6.1p2-34
[root@monitor root]#




 

great.. down to the gnome library devel package. so now lets ax that out

 

so look for this line

line #16 for me

 



Code:
%define no_gnome_askpass 0




 

and change it to



Code:
%define no_gnome_askpass 1




 

now lets run rpmbuild command again

 

NOTE: on my system.. i don't place the path to kerberos in my path. I need kerberos auth on my system. if you don't want it.. look for %define kerberos5 1 and make it a 0

 



Code:
rpmbuild -ba /usr/src/redhat/SPECS/openssh.spec




 

now thats all my depandancies.. you may have more that you will need to install rpms for to get it to compile.. this is just a gernal doc on how to keep a system upgraded by working with a fedora source rpm. It makes my life 10x easier :)

 

now i see it made this

 



Code:
Wrote: /usr/src/redhat/SRPMS/openssh-3.6.1p2-34.src.rpm
Wrote: /usr/src/redhat/RPMS/i386/openssh-3.6.1p2-34.i386.rpm
Wrote: /usr/src/redhat/RPMS/i386/openssh-clients-3.6.1p2-34.i386.rpm
Wrote: /usr/src/redhat/RPMS/i386/openssh-server-3.6.1p2-34.i386.rpm
Wrote: /usr/src/redhat/RPMS/i386/openssh-debuginfo-3.6.1p2-34.i386.rpm




 

there's my new rpms i can dist out to all other RH9 servers.. so openssh will continue to be secure

 

J to the Y strikes again!

Print this item

  My FC3 screenshots!
Posted by: lerum - 2004-11-15, 12:37 PM - Forum: Linux - Replies (3)


:) Just upgraded!<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-11-1100522235.png" data-fileid="227">[img]<fileStore.core_Attachment>/post-11-1100522235.png[/img]</a>



Attached Files
.png   Screenshot.png (Size: 354.24 KB / Downloads: 0)
Print this item

  I`v got 2 problems, help me please.
Posted by: Noid - 2004-11-14, 12:24 PM - Forum: How Do I? - Replies (1)


Hello, I`v got 2 problems.

 

Problems number one: "1"

 

So, when i intsall rpm file:

rpm -ivh bcm4400-1.0.2-1.src.rpm

warning: cannot create % sourcedir/usr/src/redhat/SOURCES

 

Problem number two: "2"

 

#make

gcc- DMODULE -D__KERNEL__ - DDBG=0 -Wall -Wstrict -prototype -06

-I/usr/src/linux/include -c -o b44um.o b44um.c

make: gcc:Command not found

make: ***[b44um.o]warning 127

 

What should I do ?? Any help...

Print this item

  Installing lm sensors in redhat 9?
Posted by: DR_K13 - 2004-11-14, 07:07 AM - Forum: Redhat - Replies (4)


ok I tryed to install lm sensors for redhat 9 via rpm. I tryed rpms made for Rh9 but nothing works.

Is there a lm sensors kernel out there? I tryrf to install a kernel for it. but my OS froze up and I had to reboot. please help

Print this item

  core3
Posted by: wm009 - 2004-11-13, 11:09 PM - Forum: Linux - Replies (3)


Here's my core3

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-11-1100387387.png" data-fileid="224">[img]<fileStore.core_Attachment>/post-11-1100387387.png[/img]</a>



Attached Files
.png   Screenshot.png (Size: 802.47 KB / Downloads: 0)
Print this item

  dual monitor config in mandrake?
Posted by: crowyguy - 2004-11-13, 05:58 PM - Forum: How Do I? - No Replies


I have an ATI Radeon 7500 64mb video card with dual outputs, and i want to know how to get a configuration for dual heads to use them without having both monitors mirrored. Think someone can help me out?

 

I would really appreciate the help

Print this item

  apt for fedora core release 3
Posted by: anyweb - 2004-11-12, 10:16 PM - Forum: Fedora Core Release 3 - Replies (14)


cheers to Enigma for finding it !

 

anyweb

 

[/url]http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/3/apt

 

once downloaded (if from here) do

 



Code:
[anyweb@localhost ~]$ mv fcr3-apt-get_rename_to_.rpm_.zip fcr3-apt.rpm




 

then login as root (su -) and rpm -ivh fcr3-apt.rpm

[url=<___base_url___>/applications/core/interface/file/attachment.php?id=220]fcr3_apt_get_rename_to_.rpm_.zip



Attached Files
.zip   fcr3_apt_get_rename_to_.rpm_.zip (Size: 936.43 KB / Downloads: 68)
Print this item

  what do you think of Fedora Core release 3
Posted by: anyweb - 2004-11-12, 09:57 PM - Forum: Polls - Replies (5)


well FCR3 is out now, most of us have already installed it, so what do you think ? are they getting better with these releases ? got any gripes ? (i do, the new xchat sux, the color scheme is so wrong, and changing it is a nightmare.... - small gripe i know)

 

let us know

 

cheers

 

anyweb

Print this item