Re: radeon 9200 driver

2003-07-24 Thread Jason P Holland
Did you even try ATI's website? They have proprietary linux drivers on there. According to http://www.xfree86.org/~dawes/4.3.0/radeon.4.html the 9000, 9100, 9500 and 9700 seem to be supported. One of those might work. Also try upgrading to rh9, xfree 4.3 is included and is newer than

Re: reminders via cron

2003-02-27 Thread Jason P Holland
cron entry... 1 2 * * * /bin/echo Dentist Appointment at 10:30am! | mail -s Dentist Visit Today! [EMAIL PROTECTED] how is that too much interaction? you can easily script this... Jason Okay, I need to send myself a reminder via email. I would think that a script using /usr/bin/mail would

Re: ldap

2002-08-20 Thread Jason P Holland
try the openldap project, it works quite good for small ldap servers. http://www.openldap.org Can someone recommend to me a good ldap software for rh 7.2? Are there any open source ldap packages? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe

Re: new user question

2002-08-19 Thread Jason P Holland
to create the group groupadd cvs to add the user with the primary group as cvs useradd -g cvs cvs to set the password passwd cvs you should then be able to login as the user. the man pages would be helpful to you. jason Hi, I'm following directions that say this: create a user ( group)

Re: File/Directory Ownership..

2002-06-24 Thread Jason P Holland
groups are you friend. create a webadmin group, add everyone who needs to update web pages to that group, then assign the group permissions to the files they need access to, such as /var/www/html or whatever. or, you could also use sudo to give limited root access to certain files and

Re: Swapusage

2002-06-21 Thread Jason P Holland
swapon -s also works jason Have you tried free? On Fri, 21 Jun 2002, Spanke, Alexander wrote: Hi, exist any command to report the swapusage ? I won't use the /proc/swaps file, which way can i use ? thnx Alex ___

Re: passwd checking script

2002-06-18 Thread Jason P Holland
the best way to do this is run crack or john against the password file periodically and see if you can crack anything. there is no such feature available that can regulary check for easy passwords. the password command should enfore this when entering a new password anyways. jason What is

Re: NeoMagic 128(XD?) / NM2160 XFree86 Problem

2002-06-18 Thread Jason P Holland
you can hit alt-ctrl-F1 to get to the first virtual console from a bad X session. or, you can try booting into single user mode. once you get to the command line, you need to edit your /etc/inittab and change the default run level to 3, from 5. jason Howdy! I am attempting to

Re: large filesystem over nfs

2002-06-14 Thread Jason P Holland
for those of you interested, i solved my problem. i mounted the nfs fs as v2, and it worked fine. i guess nfs v3 in linux is either buggy, or has interoptability issues with other nfs v3 servers running on other os platforms. i had to force the mount with a mount option of vers=2. jason

Re: SWAT, Telnet and FTP not working in 7.3

2002-06-14 Thread Jason P Holland
I just upgraded to 7.3 and can't figure a couple things out. In the other versions of RH, Telnet, Swat and FTP worked out of the box, but with 7.3 they appear to be brocken. I HAVE INSTALLED THE PACKAGES FOR EACH SERVICE I HAVE STARTED AND RESTARTED EACH SERVICE But I still

Re: How Can I change the network speed? (10Mb or 100 Mb)

2002-06-13 Thread Jason P Holland
auto negotiation is unreliable at best. i suggest going to donald beckers website, he wrote most of the network drivers in linux. he has some configuration programs you can compile to set your card to force 100fd or whatever you want in the prom. http://www.scyld.com/diag/ also, most of

large filesystem over nfs

2002-06-12 Thread Jason P Holland
guys, question about nfs with large filesystems. i'm currently trying to mount a 2.4 terabyte filesystem from an AIX 4.3 box to a redhat 7.2 box. remotely, the fs is gpfs. the aix box is running nfs v3, as well as my linux client. i can get the filesystem mounted, the size looks ok, but

RE: how to boot to linux (floppy damaged)

2001-04-10 Thread Jason P. Holland
use bootpart, a fine utility you can use to add linux to your nt boot manager. its very nice, i use it at home and work. http://www.winimage.com/bootpart.htm Jason i have a dual boot box with NT and linux fine. MBR is controlled by NT. TO boot to linux i boot from floppy. however i have

RE: kernel problems2.4

2001-03-27 Thread Jason P. Holland
depmod -a; modprobe 8139too.o jason I have upgraded my 2.2 kernel to 2.4.0 but it hasn't got the new realtek module. I'm trying to change the rtl8139 module to 8139too.o I will learn how to compile the kernel later but for now i just need to get my realtek8139 up and running to

RE: 2.4 kernel and eth0

2001-03-26 Thread Jason P. Holland
try upgrading your kernel to the lastest, 2.4.2 from www.kernel.org. second, did it load the correct module? what kind of card do you have?? run dmesg and see if it detected it. we really need some more info. Jason I just tried to install the 2.4.0-0.99.11 kernel and got problems. I got

RE: Upgrading to 2.4.2 kernel on Redhat 6.2

2001-03-20 Thread Jason P. Holland
Have you upgraded your version of ppp as noted in /usr/src/linux/Documentation/Changes??? you didn't mention if you had. Jason Greetings: I'm attempting to upgrade to kernel version 2.4.2 on my Redhat 6.2 box. After resolving the problems related to getting my RAID controller

RE: how to ftp files automatically?

2001-03-14 Thread Jason P. Holland
For automated ftp, i have done this before #!/bin/sh { echo "open server" echo "user anonymous [EMAIL PROTECTED]" sleep 2 echo "ls -l" sleep 2 echo "get file" echo "quit" } | ftp -n seems to work ok. Jason -Original Message-

RE: Screen Blanking will not go away.

2001-03-02 Thread Jason P. Holland
You can also see if this helps setterm -blank 0 which will turn off screen blanking for your current terminal. Jason If it is not a laptop check the monitor as well, alot of the new oness have screen savers as well. david On Fri, 2 Mar 2001, Ashley M. Kirchner wrote: [EMAIL

RE: compaq deskpro

2001-02-27 Thread Jason P. Holland
You need the compaq utilities partition. if its installed, use fdisk to check, the you can point lilo to it and get into the bios that way. if its not, your out of luck and you will need to install it if you ever want to get into the bios. Jason -Original Message- From: [EMAIL

RE: ps and netstat fail

2001-02-27 Thread Jason P. Holland
i have seen this before, when my school box got hacked! a trojan package was installed and ps and netstat binaries were changed. you can do a verify with rpm to check and see if the files have changed from the original rpms. # rpm -qa | grep procps procps-2.0.6-5 # rpm -V procps-2.0.6-5 and

RE: Low Level Drive Copy

2001-02-20 Thread Jason P. Holland
man dd Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steve Gulick Sent: Tuesday, February 20, 2001 9:19 AM To: [EMAIL PROTECTED] Subject: Low Level Drive Copy I need to do a low level drive caopy. Could some on epoint me in the

RE: RH7 and 3com ethernet card

2001-02-12 Thread Jason P Holland
It would be nice if you can send me the compiled module. It might help. Thanks, Raja my network card may be similar but it isnt exactly the same. maybe this info will help you. i use 3c905b network card under redhat 7.0 the standard "becker" (3c59x) driver worked for me but

RE: tar help

2001-02-11 Thread Jason P Holland
did you try tar -cvbf 20 /dev/st0 ./home ./var ./etc you can specify multiple directories on the same line Jason Dear all, How to use tar command to backup few directories with one command line... I did tried to use the following to backup, tar cvbf 20 /dev/st0 ./home tar cvbf

RE: ethernet card set to 100FDX

2001-02-06 Thread Jason P Holland
Jim, Try looking in /usr/src/linux/Documentation, the kernel documentation directory. More specifically, the networking directory. Most cards have documentation that shows how to change duplex settings. I don't know about recompiling, its usually just a parameter passed when you load the

RE: Need info on JFS

2001-02-04 Thread Jason P Holland
I have been using SGI's xfs for several months now. Its pretty sweet! Works great when the power goes out and my box has to recover my mp3 drive, which is VERY important! :) Jason On Sun, 04 Feb 2001, Trond Eivind Glomsrd wrote: John Aldrich [EMAIL PROTECTED] writes: On Sun, 04 Feb

RE: LDAP setup

2001-01-29 Thread Jason P Holland
Chris, Try reading this. its an article I wrote, basically goes through the steps for setting up openldap and using netscape address book to access that database. http://cs.selu.edu/~jholland/ldap.html lemme know if this helps out. this should get you going with a basic setup. later! Jason