Sendmail Configuration with fetchmail

2003-01-23 Thread Andy Kirk
I am attempting to use fetchmail, to collect mail on my RH8 machine, from an internal machine that does not have a public IP address. My RH box is refusing the mail because sendmail can not verify the domain - unsurprising, as the domain name does not really exist. Is there anyway to tell sendmai

RE: Mysql will not answer outside localhost

2003-01-14 Thread Andy Kirk
For what its worth, I also had problems connecting to the default RH install of MySQL, and attempted to connect with everything from ODBC, MyCC as well as the command line all failed. I loaded then 3.23.54 rpm from www.mysql.com, recreated my users, restarted the server and have not had a problem

SMTP Relay Security

2003-01-10 Thread Andy Kirk
I was until about an hour confident that my SMTP relay was secure. At that time, I received a spam email promoting 1,000,000 email address, that appears to have been sent from my mail server. At least, the From says [EMAIL PROTECTED], and from looking at the headers, the from address also contain

Partition Sizes

2003-01-07 Thread Andy Kirk
I am running RH8, and have realised that my /usr partition is much too large, and my /var partition is much too small. Is there any way to resize these partitions without effecting the installation at all. I can not afford to reinstall. The other option would be to move my Apache Web Space and M

RE: Removing & Installing RPM's

2002-12-21 Thread Andy Kirk
;-e" swith you can erase an rpm: [root@intranet root]# rpm -e mysql-3.23.41-1 do this for all the mysql rpms Step 3) Installing RPMs A new rpm can be installed in different ways, but I always use "-Uhv": [root@intranet root]# rpm -Uhv mysql-blah.rpm for more information type in

Removing & Installing RPM's

2002-12-21 Thread Andy Kirk
I am new to Linux, and have been advised to solve a MySQL problem on RH8, I need to remove the MySQL RPM that came with RH8, and load the MySQL 3.23.54 RPM from www.mysql.com. My question is, what commands do I need to run to remove the existing RPM, and then install the new RPM. Thanks for a sim

DSL Modems Recommendations?

2002-12-13 Thread Andy Kirk
Can anyone recommed a DSL modem (pref USB) available in the UK to run on RH8? Thanks -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Samba Errors

2002-12-04 Thread Andy Kirk
I am running RH8 with Samba, and every night root is being emailed an error report approx 100Kb in size. Below is an extract of the mail, and really this section is repeated every minute 24 hours per day. Can anyone suggest what is causing the problem? ## LogWatch 2.6 Begin #

SMTP Woes

2002-11-25 Thread Andy Kirk
Running SMTP on RH 8 I have a W2K machine successfully sending email through the SMTP as a relay Whenever I attempt to send via W98 client with Outlook 2000, I get back the response Unable to relay IP name possibly forged [192.168.10.102] My net is on 192.168.10.x I can resolve the hostname as

Multiple Eth Card Configuration

2002-11-21 Thread Andy Kirk
Hi all I have RH8 running in a single eth card, and have now installed a second eth card. I want to configure the system as :- --- --- | DSL || Eth1 || RH8 |---| Eth 0 ||Local Lan | ---

Samba User Names

2002-11-20 Thread Andy Kirk
Running on RH8, I have a couple of problems with SAMBA configurations 1. The users on my Win2K PC have spaces in the names (Andy Kirk), is there any way of mapping these user names to standard unix user names. 2. I can not browse from Windows and see the Shares on Linux. Could this be an

Browsing from Win 2K to Samba

2002-11-20 Thread Andy Kirk
sure of the using iptables to check ports are open or how to open them. Regards = Andy Kirk Powerhouse Solutions Limited -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman

Re: Sybase/MSSQL

2002-11-19 Thread Kirk
I think freetds is what your looking for. http://www.freetds.org Kirk At 10:58 AM 11/19/2002 -0800, you wrote: >anyone know of a good linux client to connect >to sybase/MSSQL, almost something like >Oracle Enterprise manager. > >Thanks. > > > > >-- >redhat-list

Re: What tool to edit grub settings?

2002-11-19 Thread Gerry Kirk
stros have one. Boot settings are a part of system settings, IMO. Redhat has config tools for practically everything else. Regards, Gerry On Sun, 2002-11-17 at 22:43, Gerry Kirk wrote: > Hi, > > I can't find any X Windows tool for changing grub settings. I want to > delete ent

Re: How to mount a Windows partition as writeable?

2002-11-18 Thread Gerry Kirk
x27;t write to anywhere "normal". > Gee, wonder who they had in mind when they did that? ;) Does this apply also when using Samba to mount an XP partition? -Gerry -- Gerry Kirk IT consulting for positive change http://prime.sourceforge.net ph 705.759.8026 fax 780.401.3517 -

What tool to edit grub settings?

2002-11-17 Thread Gerry Kirk
Hi, I can't find any X Windows tool for changing grub settings. I want to delete entries for older kernels. Gerry -- Gerry Kirk IT consulting for positive change http://prime.sourceforge.net ph 705.759.8026 fax 780.401.3517 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROT

How to mount a Windows partition as writeable?

2002-11-17 Thread Gerry Kirk
Hi, I'm stumped on this one. I've tried mounting Windows (98, XP) partitions using various mount options, but it's always mounted read-only. I've tried -o rw -o umask= to no avail. Is it possible to set up a Windows partition as writeable? - Gerry -- Gerry Ki

Re: [RHL] Un-install coldfusion mx

2002-10-15 Thread Kirk
Easiest way to uninstall coldfusionmx is to just rm -rf /opt/coldfusionmx and delete the initscript it you had it install one, its /etc/rc.d/init.d/coldfusion and finally edit out the mod_jrun out of httpd.conf. IIRC that should be all. Kirk On Tue, 15 Oct 2002, Barry wrote: > &

Re: GForce4

2002-04-29 Thread Kirk
Geforce4 works great, get the driver RPMS from NVidia. Check NVidia Readme first. Kirk At 12:41 PM 4/29/2002 +0100, you wrote: >Hi all, > >I maybe looking at a GForce 4MX 440 card (either XFX or MSI) from CCL soon, >but seem to remember somewhere that X has a problem with them. &

[SOLVED] Re: Bash scripting and Filenames with spaces

2002-02-19 Thread kirk
t/dosc/quickenw /mnt/dosc/Program\_Files /mnt/dosc/rom_zips' call="find /mnt/dosc/" for i in $paths_to_exclude ; do i=$(echo $i | sed 's/\\_/ /g') call="$call -path '$i' -prune -o" done call="$call -print" echo $call eval "$cal

Bash scripting and Filenames with spaces

2002-02-18 Thread kirk
am Files' -prune -o -path '/mnt/dosc/quickenw' -prune -o -print Generates the desired output. I assume part of the problem is the "?", but I have to keep the string together or the for loop breaks it up. Is there any other way to get this thing to go thr

IPtables log pharser

2001-11-15 Thread Kirk
=TCP SPT=4719 DPT=10008 WINDOW=32120 RES=0x00 SYN URGP=0 I can read the logs but it can be very tedious, a nice perl program or something to sort it out would be great. Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com

Re: ext3 w/2.4.14

2001-11-12 Thread Kirk
Also to add to below, did you compile it as a module ? or into the kernel itself <*> ? if you compiled as a module you will have to make an initrd image to load it at boot (man mkinitrd). Kirk >On Mon, 12 Nov 2001, Dan Egli wrote: > Thats not a problem with the file system.

Re: [RHL] RH errata

2001-10-18 Thread Kirk
run up2date , IIRC you need to go to www.redhat.com/network and register. Last time i checked you get one free machine to keep updated. then just run # up2date -ui Kirk >On Thu, 18 Oct 2001 [EMAIL PROTECTED] wrote: > Dear all > > Re: Redhat 6.2 errata > > I would like t

Re: PROBLEM IN INSTALLING VER6.2

2001-05-03 Thread Kirk
Sounds like bad hardware somewhere in the system, RAM or CPU possibly. Also please turn off HTML in your mails. Kirk >At 11:32 PM 5/2/01 +0500, you wrote: > DEAR LINUX COMMUNITY, HI, 6.2 (SERVER) on my pc. what happens is >that at differeent stages of installation,sometimes

Grub

2001-05-01 Thread Kirk Taylor
Are there any issues using Grub with Redhat 7.x? I searched and couldn't find any specific problems, but I noticed that Redhat doesn't opt to use it. It seems to have some nice features similar to pricier boot managers. Thanks, Kirk kirkjtate

Re: Redirect Mail

2001-04-25 Thread Kirk
/pub/mirrors/redhat/contrib/libc6/SRPMS/ipmasqadm-0.4.2 -4.src.rpm ipmasqadm portfw -a -P tcp -L 192.168.0.3 25 -R 172.16.0.1 25 If your using a 2.4 you could use iptables. /sbin/iptables -t nat -A PREROUTING -p tcp -d 192.168.0.3 --dport 25 -j DNAT --to 10.0.0.7:25 Kirk >Network, tries to do

Re: rpm core dumps on RH7

2001-04-25 Thread Kirk
Did you upgrade RPM? Try rebuilding the rpm database. rpm --rebuilddb see if that helps. Kirk >At 11:42 AM 4/25/01 -0400, you wrote: >I have three machines running RH7, and on two of them rpm core dumps if I >try to -i (install), -U (update) or -F (freshen) any rpm... -q (query) or -

Re: problems bringing up eth0

2001-04-24 Thread Kirk
that way it tries again as the last thing on boot at which point PCMCIA should already be up. Kirk >At 07:24 PM 4/24/01 -0400, you wrote: >While I am having a few issues here, I think I should tackle this one first, >as it may be the root of my troubles. > >I have just install

7.1 seawolf install hangs (more info)

2001-04-18 Thread Kirk R. Wythers
to a screeching halt Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

seawolf install hangs

2001-04-18 Thread Kirk R. Wythers
cking partitions", or "looking for partitions", or just "partitions" something like that. I let it sit there for a few minutes, but nothing appears to be happening. Do I need to give this process more time, or is this a problem? Any suggestions would

Re: PPTP

2001-04-17 Thread Kirk
write failed >(pty,gre)=(4,5) It should look something like this: Apr 13 14:45:06 death pppd[16116]: Connect: ppp0 <--> /dev/pts/1 What kernel, pppd are you running? Kirk >At 05:24 PM 4/17/01 +0200, you wrote: > >Can anyone help me with this, I have installed PoPToP on my Lin

Re: real player 8

2001-04-14 Thread Kirk
If Realplayer will run, while its open go the the help button at the top and then select: Mime Type/Plugin Install That will install the netscape plugin for the current user. Kirk >On Sat, 14 Apr 2001, Hidong Kim wrote: > Hi, > > I'm having problems installing Real Player 8

hardware upgrades

2001-04-10 Thread Kirk R. Wythers
disks (after a fresh backup of /home /usr/local and /opt of course... ). If I do a new install (rather than another upgrade), I am assuming that the ram and second cpu will not be an issue since the install process will (hopefully) take care of this. Thanks

Re: Red Hat 7 and Matrox G450?

2001-04-07 Thread Kirk Bollinger
manually configured XF86Config (I can send it to you if you want?) and started x with startx -- +xinerama all the info is opn the matrox site. good luck! -kirk On Sat, 7 Apr 2001, Charles Galpin wrote: > Hi Ray > > I have a G400 dual-head working with a single head using the SVGA dr

VPN Solution

2001-04-04 Thread Kirk
Does anyone know of a good open source VPN server for Linux? Ive tried PoPTop with little luck. Links Appreciated. Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: IPV6 Info

2001-04-03 Thread Kirk Bollinger
I just figured out my own question! I was playing around with make menuconfig and selected prompt for development driver and that turns on the selectability of these options - including IPV6. thanks! -kirk On Tue, 3 Apr 2001, Kirk Bollinger wrote: > I'm running RH 7.0 with an

IPV6 Info

2001-04-03 Thread Kirk Bollinger
networking options but I can't seem to find it there. ifconfig *seems* to support ipv6 [root@spicytuna src]# /sbin/ifconfig etho inet6 No usable address families found. family socket: Address family not supported by protocol I have no ping6, etc. on the box though.

Re: RE: [OT] Starting/stoping apache on a FreeBSD box

2001-03-29 Thread Kirk
syntax test help - this screen bash-2.04$ Kirk >At 12:57 PM 3/29/01 -0500, you wrote: > The exact file to start/stop/restart apache will be in the directory >where you have installed the it. Normally it would be in >/usr/local/apache/bin/apachectland the syntax you

Re: Re: webmin

2001-03-28 Thread Kirk
Webmin is already running (miniserv.pl) did you try connecting to it like; http://your.ip.add.ress:1/ instead of localhost? Im kind of coming in late here. here's a look at my ps on the machine im trying webmin out on: 03:21pm kirk@nasty kirk >>$ ps -ax | grep webmin 950

Re: How to get Digital Camera (USB) to work in LINUX

2001-03-28 Thread Kirk
from the camera. Kirk >At 01:15 PM 3/28/01 -0800, you wrote: >Hi all, >I have an intel video camera that is connected to my RH server using USB port. I'd like to capture snapshots from my server and put them into a >web page. Is this possible? > >I already checked intel&#

Re: [RHL] Need firewall for my linux server.

2001-03-24 Thread Kirk
site to start out at try: http://www.linux-firewall-tools.com/linux/firewall/index.html Kirk >On Sat, 24 Mar 2001, Hector M Banda wrote: > Hi all, > I need a firewall for my Linux server where I can telnet and ftp securely. Or >better, is any way I can restrict the telnet or the ftp

Re: RPM

2001-03-24 Thread Kirk
I got the same error on my 6.2 machine from up2date (undefined symbol: fdio) Did you by chance upgrade the rpm-python package? Thats what solved my problem. Kirk >On Sat, 24 Mar 2001, NDSoftware wrote: > Hi, > I have updated rpm 3 to rpm 4 and now my snmp service don't want st

[solved] Re: Re: up2date messed itself up

2001-03-20 Thread Kirk
Solved this probelm. I rebuilt the rpm-4.0.2 SRPM and got the rpm-python package. My only question would be as to why this is not on the redhat FTP site. Someone goof and forget to upload it? Anyway you were right James, updating the rpm-python package fixed it. Thanks, Kirk >On Mon, 19

Re: Re: up2date messed itself up

2001-03-19 Thread Kirk
Ill give it a shot. Funny they would not includ that in the update. Seems like theres going to be alot of people with broken up2date software. Kirk >On Mon, 19 Mar 2001, James Zuelow wrote: > > > > > Subject: up2date messed itself up > > Date: Mon, 19 Mar 2001 17:26

up2date messed itself up

2001-03-19 Thread Kirk
undefined symbol: fdio [root@belial /root]# Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Wolverine Download (Still)

2001-03-16 Thread Kirk
Your Sizes look perfect! :-) Burn Away. Its the old 1024k is 1 meg thing.:-) Did you verify the MD5SUM ? Try the -h option to ls check this: [kirk@death Beta]$ ls -l wolv* -rw-rw-r--1 root root 678203392 Feb 17 11:59 wolverine-i386-disc1.iso -rw-rw-r--1 root root

Re: screen captures

2001-03-13 Thread Kirk
import works very well. $ import myscreenshot.jpg $ man import import(1) import(1) NAME import - capture some or all of an X server screen and save the image to a file. SYNOPSIS import [ options ... ] [ file ] Kirk >At 04

Re: QT error

2001-03-12 Thread Kirk
Its looking for th QT libraries not the QT docs. IIRC the QT libs are in /usr/lib/qt-x.x.x Kirk >On Mon, 12 Mar 2001 [EMAIL PROTECTED] wrote: > >I have QT 2.3.0 loaded, but when I compile my program , it's saying ... > > checking for QT .. configure: error QT ( &g

Re: [RHL] kpppd dies unexpectedly

2001-03-09 Thread Kirk
Could you please email Suse questions to the Suse list. http://www.suse.com/us/support/mailinglists/index.html Thanks >>I use Linux SusE version 6.3. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat

Re: Re: [RHL] Elsa Gladiac MX GeForce2 and X

2001-03-07 Thread Kirk
ver module is loaded. Also you need to add a line to rc.local to load it when the machine boots, you might also consider loading agpgart. Toms Hardware has an excellent article on how-to Nvidia for linux. http://www.tomshardware.com/graphic/00q3/000811/ Kirk >On Wed, 7 Mar 2001, David Kring

Re: [RHL] Removing Dir

2001-03-07 Thread Kirk
tman.redhat.com/mailman/listinfo/redhat-list > -- Kirk Whiting <[EMAIL PROTECTED]> *** Gothic Unix Freak, Windoze hater *** http://www.prince-of-darkness.cc ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Re: Doubles

2001-03-06 Thread Kirk
Nope, only subscribed once. Its only about the last 10 emails. The 1000 or so before have been ok, so far as I can tell. Kirk >On Tue, 6 Mar 2001, Statux wrote: > Nope. Are you double subscribed? (subscribed under 2 email addies?) > > On Tue, 6 Mar 2001, Kirk wrote: > > >

Doubles

2001-03-06 Thread Kirk
I seem to be getting double posts from the last 10 emails. Anyone else gettting this odd behavior? -- Kirk Whiting <[EMAIL PROTECTED]> *** Gothic Unix Freak, Windoze hater *** http://www.prince-of-darkness.cc ___ Redha

Re: [RHL] Elsa Gladiac MX GeForce2 and X

2001-03-06 Thread Kirk
RedHat RPMS and follow the direction on their site. Their drivers work great here - Nvidia Geforce 2 MX DDR, X 4.0.1, I get 126fps with Quake3. http://www.nvidia.com/Products/Drivers.nsf/Linux.html On your setup (If 4.0.2 is installed ) did you try to run Xconfigurator? -- Kirk Whiting

Re: [RHL] Strange log entries

2001-03-06 Thread Kirk
Someone is trying to get into your system thru portmapper. Shut it off!! /etc/rc.d/init.d/portmap stop also if running /etc/rc.d/init.d/nfslock stop then disable them perminately if your not using them use /usr/sbin/ntsysv turn off any service your not using. Kirk >On Tue, 6 Mar 2001 [EM

Re: [RHL] How to turn off an ip address?

2001-03-05 Thread Kirk
ipchains example: ex: ipchains -I input -s 192.168.1.x -j REJECT : to deny ex: ipchains -I input -s 192.168.1.x -j ACCEPT : to allow Kirk >On Mon, 5 Mar 2001, M. Neidorff wrote: > Hi all, > > I have my home network (RedHat 6.2) set up so that everyone is on the > Internet full tim

Re: Symbolic link?

2001-02-22 Thread Kirk
man ln Kirk >At 09:52 AM 2/23/01 +1100, you wrote: >Hi, > >Easy one for the pros out there. >Can anybody tell me how to create a symbolic link? > >Thanks for your help, > >Raoul > >_ >Do You Yahoo!?

Re: Re: Blocking web access

2001-02-22 Thread Kirk
Thanks, that did it. your right, i wasnt thinking on the /24 being only 0.0.0.* Works perfectly. Kirk >Try: >/sbin/ipchains -I input -p tcp -s 172.16.0.6 -d 0.0.0.0/0 80 -j REJECT > >0.0.0.0/0 matches any IP. 0.0.0.0/24 only matches 0.0.0.*, if I >remember right, and 0.0.0.

Blocking web access

2001-02-20 Thread Kirk
. Here is the rule in my firewall: /sbin/ipchains -I input -p tcp -s 172.16.0.6 -d 0.0.0.0/24 80 -j REJECT also tried /sbin/ipchains -I input -p tcp -s 172.16.0.6 -d 0.0.0.0 80 -j DENY no luck yet. Any idea where i'm off? Thanks in advance,

Re: Excluding relative Directories in tar

2001-02-18 Thread Kirk Taylor
to write a script to determine all of the filenames in directories that I desire to exclude, but if file and/or directory foo is in two places, it would it both times. I did get close to want I want by just naming my vmware virtual disk file in the exclude list, but it seems like something sh

Excluding relative Directories in tar

2001-02-18 Thread Kirk Taylor
ed cache, not necessarily just those in the .netscape directory. So, is there a way to create the backup file that I need using tar and relative references instead of string matching, or should I try something else? #rpm -q tar tar-1.13.17-8 Thanks in

Re: [RHL] Lame server messages

2001-02-09 Thread Kirk
Just typical DNS stuff, you can ignore it. Lame server IIRC is a machine claiming to have authority of a domain but does not. Kirk >At 10:19 AM 2/9/01 +0100, you wrote: >Hello, > >I set up a caching DNS on my server and now I started to have a lot of lines >in /var/log/messag

Re: RH7/2.4.0 and OpenGL/3Dfx?

2001-01-27 Thread Kirk
is not needed. That is for XFree-3.3.x not 4.0.x Also games like quake3 you need to tell to use libGL.so and not Glide. Not sure about Myth2 though. Check the config file for it and see if you can specify the path the the GL lib. Kirk > Version info: > > Red Hat 7, patched > kernel

Re: Re: raid

2001-01-22 Thread Kirk
o one drive) this is nice for if one disk dies it >can be rebuilt from the parady on the other disks. > >Kirk > >>At 11:38 PM 1/22/01 -, you wrote: >>Hi, >>What is the minimum number of disks required fo

Re: raid

2001-01-22 Thread Kirk
sk is for parady, disks should be alike. so say 5 15gig in this would be a 60gig (15 gig loss for parady equal to one drive) this is nice for if one disk dies it can be rebuilt from the parady on the other disks. Kirk >At 11:38 PM 1/22/01 -, you wrote: >Hi, >What is the minimum number

Re: help with XFree86

2001-01-19 Thread Kirk
Im guessing you upgraded from XF-3.3.x to 4.0.2 since you said RedHat 6. The config file for X has changed in format. You should be able to run xf86config and answer the questions about your system and get a proper config. Just keep a copy of your old one incase you want to downgrade. Kirk >

Re: Re: Ramen worm

2001-01-18 Thread Kirk
Try runningntsysv that _should_ show you the rpc stuff. Kirk >At 04:24 PM 1/18/01 -0800, you wrote: >On Thu, 18 Jan 2001, Jonathan Wilson wrote: > >> run the command "setup" and un-mark the RPC services. They are marked by default. Also, there is more then one

Re: [RHL] Re: 7.0 inetd.conf equiv?

2001-01-16 Thread Kirk
What pop3 daemon did you install? IIRC if it runs from xinetd.d you can copy one of the startup files in xinetd.d, say like telnetcp telnet pop3 then edit the new file to reflect your pop daemon's path and parameters and restart xinetd. something like this service pop3 { disable

Re: RoadRunner

2001-01-15 Thread Kirk R. Wythers
Timothy Reaves wrote: > Kirk Wythers wrote: > >> > I am the exact same boat. Some one suggested that I look at DCHCPCD and >> > remove the -H option (which allows dchcp to use the hostname supplied by >> > the mediaone server). Unfortunately I haven't bee

Re: RoadRunner and hostname

2001-01-14 Thread Kirk Wythers
as in /sbin/ifup. I will keep up appraised of any success (or lack there of) and I'd appreciate it if you share any solutions you come up with... Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

how to configure dhcpcd?

2001-01-12 Thread Kirk R. Wythers
constructively set me straight. Thanks, Kirk --- Kirk R. Wythers University of Minnesota [EMAIL PROTECTED] Department of Forest Resources tel: 612.625.2261 1530 Cleveland

Re: RE: Apache port 80 problem

2001-01-11 Thread Kirk
check your httpd.conf file's syntax. Just a couple of other suggestions if the first fails. Kirk >On Fri, 12 Jan 2001, Mark Basil wrote: > > Kirk, > > This doesn't show anything on port 80. > > Secure is up. It shows: > > httpd8791 root 15u inet 1

Re: Apache port 80 problem

2001-01-11 Thread Kirk
What does lsof -i show? (as root of course) It lists programs tied to which port. Kirk >At 07:14 AM 1/12/01 -0500, you wrote: >Can anyone tell me why this happens? > >I have apache running. It has been working fine. Now, upon reloading AND >even restarting the box, this mes

Re: modprobe: can't locate sound modules

2001-01-09 Thread Kirk
>"You don't seem to be running a kernel with modular sound enabled. >(soundcore.o was not found in the module search path)." > >I don't understand why the upgrade would knock out my sound. Can anyone >give me a clue why modprobe can't locate those modules? Any advise >greatly ap

lilo tri-boot question

2000-12-26 Thread Kirk
solaris with lilo would be greatly appreciated. -- Kirk Whiting <[EMAIL PROTECTED]> http://www.prince-of-darkness.cc ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: [RHL] rpm upgrade

2000-12-21 Thread Kirk
Upgrade to rpm-3.0.5-9.6x first it understands rpm-4 format, then you should be able to upgrade to 4 from there. Kirk >On Thu, 21 Dec 2000, J. Carlos Cristobal wrote: > Hello: > >I have rpm-3.0-6 and want to upgrade to rpm-4.0-4, but when I try it > says: > > onl

Re: [RHL] Re: [newbie] .zip files...

2000-12-12 Thread Kirk
If its xmms skins put it in /usr/share/xmms/Skins and use it from the xmms menu (right click). You dont need to unzip it. Kirk >On Tue, 12 Dec 2000, John Aldrich wrote: > On Thu, 14 Dec 2000, christopher j bottaro wrote: > > hmm... > > > > i got some xmms skins an

Re: sendmail error

2000-11-30 Thread Kirk
What are your permissions on /etc ? These are mine. indicating write only by owner no group no others. drwxr-xr-x 48 root root 4096 Nov 29 17:48 etc Kirk >At 11:07 AM 11/30/00 -0600, you wrote: > > >I'm having a problem sending mail *>OUT<* of my Linu

Re: Re: Redhat-list digest, Vol 1 #610 - 16 msgs

2000-11-21 Thread Kirk
> and bdisk didn't do jack either ^ not sure if bdisk is a typo, but did you try mkbootdisk ? $ man mkbootdisk MKBOOTDISK(8) MKBOOTDISK(8) NAME mkbootdisk - creates a stand-alone boot floppy for the running system SYNOPSIS

Re: Best Ftp Program

2000-11-02 Thread Kirk
Best I've found was ncftpd - http://www.ncftp.com very easy to configure for virtual domains and nice and secure. Tons of options. One catch, its NOT free. $50.00 for a 50 user licence. I like it alot, works perfect and its fast. Dont use wu-ftpd, its too buggy. Kirk >On Thu, 2 Nov 200

Re: DVD -- Cameron

2000-10-29 Thread Kirk
https://listman.redhat.com/mailman/listinfo/redhat-list > -- Kirk Whiting <[EMAIL PROTECTED]> Network Admin. prince-of-darkness.cc , thrust66.com ---"Unix IS the Future"--- ''Win: Please Reboot You Moved Your Mouse'' __

Re: Re: large filesystem under Linux

2000-10-24 Thread Kirk
A freind of mine just setup and Athlon 950 with 100Gig Kernel Raid0 (3 IDE disks) using Redhat 6.2. Im not sure if you can push 290+ gig but I can say 100Gig will work. Works great for him. Kirk >At 11:11 AM 10/24/00 -0400, you wrote: > >Storage for user homepages. 100meg disk q

Re: Re: SIIG UltraATA 66 PCI Controller CN2468

2000-10-23 Thread Kirk
. I have used it on the SIIG ATA66 and the Promise ATA 66/100 with out any problems. ftp://ftp.kernel.org/pub/linux/kernel/hedrick Get the one for your kernel, PS they dont patch very well to the RH stock kernel sources, you may want to download a fresh kernel from there while your there. Kirk

Re: SIIG UltraATA 66 PCI Controller CN2468

2000-10-23 Thread Kirk
The IDE patch from Hedrick at kernel.org should have what you need for this card. ftp://ftp.kernel.org/pub/linux/kernel/people/hedrick Kirk >At 01:17 PM 10/23/00 -0400, you wrote: >Hi All > >I have a SIIG UltraATA 66 PCI IDE Controller Model CN2468 >(http://w

Re: Message Board/Forum Software (OT?)

2000-10-19 Thread Kirk
Try http://www.hotscripts.com they have thousands of perl/php/asp, etc. scripts. I have seen some forums there. Kirk >At 02:31 PM 10/19/00 -0400, you wrote: >Hello in there! > >Can anyone reccomend some GPL'ed message board/forum software to run on 6.2? > >I've bee

Re: Re: My Redhat linux is forced to reboot for every 7 or 10 days.

2000-10-16 Thread Kirk
try these links for updated kernel RPMS: Offical RedHat 2.2.16 Kernel look in the directory for you cpu class ie i686, i586, etc: ftp://ftp.redhat.com/redhat/updates/6.1/ Excellent Contributed Kernel 2.2.17 ftp://duke.eburg.com/pub/linux/redhat-6.x-mycontrib/RPMS/ Kirk > Is there any patc

Re: My Redhat linux is forced to reboot for every 7 or 10 days.

2000-10-16 Thread Kirk
Is there a runaway process? What does top show? Kirk >At 06:29 PM 10/16/00 +0530, you wrote: > >Hi, > >I am using redhat 6.1, Kernel 2.2.5-15smp, for the services like DNS, >Mail, and Web, etc. I am forced to restart the system for every 7 to 10 >days because of lack of me

Re: Re: Any ideas?

2000-10-16 Thread Kirk
Yes those are created by Helix Gnome and Gnome in genreal. If you log out of X all the way to a regular console you will see that they are gone. To my knowledge nothing to be too concerned about. The concerning ones are TCP and UDP not really the unix 0. Kirk >Can someone who's runni

Re: [RHL] RAID1

2000-10-10 Thread Kirk
>Of course i created the same size of RAID partitions Then yes you can. Kirk ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Re: Re: 3d support

2000-10-09 Thread Kirk
.3dfx.com uses Glide 3.x BUT Quake3 rocks on it. Good Luck Kirk >On Mon, 9 Oct 2000, rob smith wrote: > > well, Jason no offense taken...but before you say something like that try > reading the message more carefully...the drivers at linux.3dfx.com are > based on xfree86 3.3.5

Re: RH 6.2 and Ultra 66 problem

2000-10-09 Thread Kirk
/RPMS The current version there is 2.2.17 Good luck. Kirk >On Sun, 8 Oct 2000, Michael McLeod wrote: > I have been running RH 6.0 and used the setup scrip provided by Promise > for 6.0. I wanted to upgrade to 6.2 but the same script did not work > with 6.2. After looking for a while

Re: Re: make modules error DO I have to have sound?

2000-10-07 Thread Kirk
I believe the flag you should be looking at is -DCPU=686 Kirk >On Sat, 7 Oct 2000, Bret Hughes wrote: > "Mikkel L. Ellertson" wrote: > > > On Sat, 7 Oct 2000, Bret Hughes wrote: > > > > > Trying to compile a 2.2.16 kernel for a compaq proliant 3000

Re: mulitple disk setup and lilo

2000-10-06 Thread Kirk
/pub2 ext2 /dev/hdb<-- cdrom /dev/hdc<-- cdrw Kirk >At 02:56 PM 10/6/00 -0500, you wrote: >I was reading lilo and I found something upsetting ,that lilo won't recognise a 3 or 4 >disk system > >My BIOS allows for a primary master and slave as

Re: Help! Redhat7: 2.2.17 no module AIC7XXX found error

2000-10-06 Thread Kirk
This looks like you compiled you SCSI support directly into the kernel, so there wont be a module aic7xxx.o thusly you wont need the initrd.img. Kirk >CONFIG_SCSI_AHA152X=y >CONFIG_SCSI_AHA1542=y >CONFIG_SCSI_AHA1740=y >CONFIG_SCSI_AIC7XXX=y >CONFIG_AIC7XXX_TCQ_

Re: nsubscribe -can someone at least bother to reply 4 the firsttime

2000-10-05 Thread Kirk
Personally I find this list VERY informative. To unsubscribe go to the URL at the _bottom_ of every email you receive from this list, follow the instructions and you will find the way. Kirk >On 5 Oct 2000, soulreaver wrote: > as i have sent numourus rewuest for help, and no one can b

Re: HElP !! what happened to inetd in RH 7 ???

2000-10-05 Thread Kirk
Its now xinetd.conf powered by xinetd the scripts are located in xinetd.d . Its alot different, but so far seems better, with better options. Im still reading about it myself. Kirk >On Thu, 5 Oct 2000, Dave Lewis wrote: > I don't seem to have a inetd ?? or an inetd.conf file in

Re: test cycle for bind 9?

2000-10-05 Thread Kirk
Yes, definately interested. Let me know how it goes on the 6.2 side. I would also be interested to see that spec file or a .src.rpm . I've read some interesting things about bind 9 and would like to try it. Kirk >On Thu, 5 Oct 2000, Jason Costomiris wrote: > I noticed the bind 9.0.

Re: ftp problem

2000-10-04 Thread Kirk
Try using ncftp from console. It will resume the download where it left off. I have yet to have an error yet doing this. Kirk >At 03:14 PM 10/1/00 -0400, you wrote: >When using ftp which came with my 6.2 installation, to download the >new 7.0 iso images, I'm getting dropped b

Re: Re: Kernel Panic

2000-09-29 Thread Kirk
Like was said in another post, did you make a new initrd image and put it in lilo.conf? its simple: mkinitrd --with=module.o /boot/initrd.2.2.X.img 2.2.X It sounds like its loading the old initrd.img. Hope that helps. Kirk >On Thu, 28 Sep 2000, Stephen E. Hargrove wrote: > Statux

  1   2   >