remote syslog segregation

2003-08-29 Thread Jeff Lane
Hello... I have a question for the masses...

I am setting up (finally) a real honest to goodness syslog server 
(YEAH!!!)...

and anyway, I have my server accepting remote logs, and have my PIX, 
Ascend racks, and currently ONE server logging to the new syslog 
server...  trouble is, I can not find anything that will explain to me 
how to segregate logs from each machine..

the end result I want is to have syslog log various things from the 
clients to their own log files, something like this:

/var/log/PIX/logfile
/var/log/MAX1/logfile
/var/log/MAX2/logfile
/var/log/server1/messages
/var/log/server1/secure
/var/log/server1/maillog
/var/log/server1/httpd
you get the idea...

any ideas on what I need to configure, and HOW to configure the clients 
and the syslog server to do this??


--
Jeffrey Lane, RHCE
Systems Adminstrator
ConnectNC, Inc
DSL and Web hosting: http://www.connectnc.com
List your child-related organization Online!  http://www.sandhillskids.com


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: internet connection sharing.

2003-08-20 Thread Jeff Lane
Ummm  IPTABLES???  If I were at home, I would send you my firewall 
script that sets up NAT and does just this.

Mine is set up so that internal addresses are routed to the external 
address I get from the ISP...  works very well.

But if hte other suggestions dont work, or you want yet a third option, 
go looking ofr IPTables scripts that provide NAT services in addition to 
filtering...

Richard J. wrote:
Hi
 
A simple, yet what seems to be a complicated question
 
I have two computers, both running Windows XP, yuck. I have the older 
computer, which is a business computer, connected to my computer using 
an Ethernet cable so that I can share my internet connection with it.
 
What I would like to do is to change my computer back to RedHat, but i 
am not sure how I can do that and retain the current set up I have with 
the other computer. I was told by the author of the program that I can 
use his program at 
 http://freshmeat.net/projects/redhat-config-network/?topic_id=150%2C253, 
and that would allow me to set up Redhat 9 to share it's internet 
connection with the Windows XP computer, using the Ethernet cable that 
is already set up. But I haven't been able to get a reply from him on 
how to do it, if anyone knows, or knows of another way that I can do 
this, I would appreciate any advice :0)
 
Any help anyone can give me, I would be grateful for
 
Thanks
Richard


--
Jeffrey Lane, RHCE
Systems Adminstrator
ConnectNC, Inc
DSL and Web hosting: http://www.connectnc.com
List your child-related organization Online!  http://www.sandhillskids.com


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Slightly OT, Netscape Ports

2003-08-14 Thread Jeff Lane
Just a tad off topic, but can anyone provide me with the port range that 
Netscape Communicator uses when publishing web pages that are created 
using its HTML editor??

I cant find them anywhere, and have a use who cant get a connection 
through to publish her site changes...

I am fairly sure its my firewall blocking the incoming packets, but no 
way of really knowing until I know for sure what ports Communicator uses 
when publishing web pages...

Cheers
Jeff
--
Jeffrey Lane, RHCE
Systems Adminstrator
ConnectNC, Inc
DSL and Web hosting: http://www.connectnc.com
List your child-related organization Online!  http://www.sandhillskids.com


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


remote logging with syslog

2003-06-24 Thread Jeff Lane
This should be a lot simpler than it is seeming right now, BUT, does 
anyone have a link to info on syslog?  I have read the Man pages for 
syslog, syslogd, syslog.conf, etc etc and still havent found quite what 
I am looking for...

Currently, I have a log server that accepts remote logs from our PIX, 
Modem Racks, DSLAMS, etc, and logs them to where they need to be.

BUT, what I would like to do, is make that a full service log server, 
and have it take logs from all our machines.

I know how to set up the servers to send their messages to the syslog 
server, what I dont quite know, is how to set up the syslog server to 
log the various incoming messages.

For example, I would like to send all messages that normally go in 
/var/log/messages to the syslog server, AND have the syslog server store 
them in a file like this: hostname.messages.  That way, I can have 10 
different machines logging to the syslog server, with each getting their 
 own logfile on the server to make parsing easier.

any ideas?  And one thing I havent been able to find so far, the local* 
defs in syslog.conf.  I know now that local7 is for boot messages, but 
what about the rest??

Jeff

--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: remote logging with syslog

2003-06-24 Thread Jeff Lane
Ray Curtis wrote:
jl == Jeff Lane [EMAIL PROTECTED] writes:


jl This should be a lot simpler than it is seeming right now, BUT, does 
jl anyone have a link to info on syslog?  I have read the Man pages for 
jl syslog, syslogd, syslog.conf, etc etc and still havent found quite what 
jl I am looking for...

jl I know how to set up the servers to send their messages to the syslog 
jl server, what I dont quite know, is how to set up the syslog server to 
jl log the various incoming messages.

jl For example, I would like to send all messages that normally go in 
jl /var/log/messages to the syslog server, AND have the syslog server store 
jl them in a file like this: hostname.messages.  That way, I can have 10 
jl different machines logging to the syslog server, with each getting their 
jl   own logfile on the server to make parsing easier.

If I understand you correctly and your server will accept all your
machines, then just add lines to /etc/syslog.conf such as:
*.info;authpriv.none;cron.none  		@XXX.XXX.com

Of course substituting your address for the log server.
Then restarting syslog of course.
Oh that part is the easy part... I have no problems with the client side 
of things...

The hold up for me is the server side...

In other words, can I set up syslogd on the recieving server to 
segregate incoming log messages by type and machine?  i.e. say I have 
log server called syslog.

And I have two web servers called web1 and web2.  Now, I want to remote 
log all messages and such from web1 and web2 to the syslog machine.

Also, I want to make sure taht each machine gets their own logs on syslog...

SO, web1 and web2 send messages to syslog machine.  Syslog machine then 
segregates incoming messages into seperage files for each web server..

that way when I ssh into the syslog machien I will see something like this:

/var/log/messages # messages log for the actual syslog machine.
/var/log/messages.web1 # messages that came from web1
/var/log/messages.web2 # messages that came from web2
And thats the simplistic way of looking at it...  I personally would not 
have a problem if each machine only generated one log file for 
everything, as I will use something like logwatch or such to monitor 
each log for specific things...

but It would be even nicer if I could have something like this:

/var/log/logfiles # local log files on the syslog server
/var/log/web1/ #dir for all web1 log files (httpd/access, messages, 
secure, maillog, etc)
/ver/log/web2/ #dir for all web2 log files

Thanks
Jeff
--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: my server has been hacked again

2003-05-30 Thread Jeff Lane
More importantly is what he said originally...  My server RH 7.0 (soon 
upgrading to 8) has been hacked AGAIN vi ftp.

This makes me wonder... first off, hes running 7.0.  Has he or the admin 
bothered with keeping the machine up to date with errata and secuirty 
patches?  Next, that makes me ask, why AGAIN?  Did they not learn 
anything from the first time?  Apparently not, if in fact the intruders 
got in the same way.

Also, after the first time, how did they handle it?  did they actually 
reinstall the server from scratch, or did they just reintall the rpms 
that were affected?

I think you all have good ideas, so here is my list of things that he 
must do.

1: format and reinstall this machine
2: install all current patches and errata
3: remove wu-ftpd and install proFTPD
4: set proFTPD up to use a chroot jail for all FTP connections
5: ensure that NO anonymous FTP connections are allowed.
6: Only after all this is done, put the machine back on the network with 
internet access.



Paul Barclay wrote:
Why don't you just use SSH and be done with it!

Why use FTP? So 2 decade ago!

 

On Thu, 2003-05-29 at 14:56, Joe Giles wrote:

Or, better yet, use an FTP daemon that is secure and not the stock one
that comes with RedHat (WU-FTP?):-P. I use ProFTPD and I have not had
one problem as of yet (Knock on Wood), however, I do like the idea of a
chroot jail :-D..
Thanks

Joe

On Thu, 2003-05-29 at 05:57, Anthony E. Greene wrote:

On 29-May-2003/16:53 +0530, [EMAIL PROTECTED] wrote:

My server RH 7.0 (soon upgrading to 8) has been again hacked vi ftp . It
has been twice and the process is same. They login via ftp (anonymous)
user.
Do you really need to allow anonymous FTP from all over the Internet? If
you don't need this, then turn it off. If you do need it, then use a
chroot jail to minimize the chances for mischeif.
Tony
--
Anthony E. Greene mailto:[EMAIL PROTECTED]
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26  C484 A42A 60DD 6C94 239D
AOL/Yahoo Messenger: TonyG05HomePage: http://www.pobox.com/~agreene/
Linux. The choice of a GNU generation http://www.linux.org/




E-mail is an informal method of communication and may be subject to data corruption, interception and unauthorised amendment for which Digital Bridges Ltd will accept no liability. Therefore, it will normally be inappropriate to rely on information contained on e-mail without obtaining written confirmation.

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.






--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: my server has been hacked again

2003-05-30 Thread Jeff Lane
We get at least 40-50 attempts per day like that.  Most are port scans 
and such...  So far, knock on wood, we havent had any trouble, and seem 
to be doing well using a mix of iptables/portsentry/

Honestly tho, these repeated scans and attemps from Korea and China and 
other places that foster this kind of activity are starting to really 
piss me off... (they are just that annoying)...

I think I am going to start banning entire net blocks at the border 
router.  ;)

Jeff

Joseph A Nagy Jr wrote:
Gordon Messmer wrote:

[EMAIL PROTECTED] wrote:
snip

210.90.225.193 and 202.56.215.25. I can still ping these ips. How
can I inform the system administrator of respective ips?


Use whois ip to find contact info for the address.  The first of
 those is a Korean address, and you're unlikely to find anyone there
who can help you.


He could always send an abuse report to the ISP (or just block the IP 
completely)



--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: commane

2003-05-27 Thread Jeff Lane
edit /etc/modules.conf

or if that doesnt work, edit /etc/rc.d/rc.local and add your insmod line 
to the end of that file.

:)

Jeff

Bill Lewis wrote:
What command do I use to load a module.  I use insmod -f filename and
it loads ok. But when I reboot the module needs reloading.  What command
do I use so the module loads at boot time.  Thanks ahead of time




--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: using home directory from linux server for all other linux machineson network

2003-03-30 Thread Jeff Lane
Ritesh Raj Sarraf wrote:

Yes, it does happen thatway,, but even then i never had to hard boot my 
client machine(in your case Host B) because i had soft mounted the /home 
on my client machine :-)

Ahhh  I can see that beign a plus... in our case, they had it set up 
so that there was nothing under /home on any client, and the entire 
/home contents for the dept was served off the server...  so if you had 
the permissions, you could browse other peoples home dirs on any client 
computer...

sigh... oh well... I dont work there anymore, and dont have to deal with 
silly little things like that.. grin

cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: get me off this mailing list please

2003-03-30 Thread Jeff Lane
LOL...  Perhaps someone should start an unsubscribe mailing list that 
people can join in order to find out how to unsubscribe???

Stephen Kuhn wrote:

On Sun, 2003-03-30 at 16:04, Ryan McDougall wrote:
 

Dear Mike,

{SNIP}

If I recieved 100 emails a day from people like you, I would want to
unsubscribe myself too.
Cheers,
Ryan
   

Maybe he's confused - y'know - stuck in between and needs more than
help from a mailing list? Can we send'em some numbers/addresses of well
known psychologists? Or Gender Confusion Counsellors?
 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Router/Firewall Not Responding When Asleep

2003-03-30 Thread Jeff Lane
Just for kicks, does that machines bios support wake-on-lan?  That could 
help, however, it also sometimes makes bad things [tm] happen... so YMMV...



Morgan Doocy wrote:

I'd love for it to be able to sleep and still wake up when it receives 
a request -- but I can't find any software that will allow me to 
control its power management settings. I looked at apm and apmd, but 
from what I could tell they're basically software interfaces that 
allow you to do stuff when certain power events occur -- not actually 
change power management settings.



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: using home directory from linux server for all other linux machineson network

2003-03-29 Thread Jeff Lane
Oh, no... you misunderstand me..  I dont mean that the server needed to 
be hard booted, but the client computer..

for example, you have a server A that is handing out all employee home 
dirs via NFS.  So, I go to Host B and log in.  Now, NIS handles all the 
logon stuff, and then mounts my home dir on Host B via NFS.  Now, IF 
something should happen to cause the NFS connection to Server A drop, 
and this could be anything from a momentarily unplugged cable, to 
whatever, then Host B will have to be hard booted, because the machine 
stops functioning if a user is logged in and his home directory suddenly 
disappears.

Been there, done that... more times than I care to remember... ;)



Ritesh Raj Sarraf wrote:

It isn't necessary that the server need to be hard booted to get it back. 
pass appropriacte parameters to nfs and you are in the run.

rrs
On Thu, 27 Mar 2003, Jeff Lane wrote:
 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: using home directory from linux server for all other linux machineson network

2003-03-27 Thread Jeff Lane
Dont ask me how to do this, because its very ugly, from what I have 
heard, but you could use something like NIS to do network 
authentication, and have one machine serving home directories via nfs...

that way, each time a user logs on, NIS uses that users defaults, and 
auto mounts the home dir off the home dir server via nfs, so each user 
can use the same home dir no matter which machine he or she logs in on...

granted as I said, its ugly, AND if the nis server hiccups, or if a 
machine is connected and the NFS connection drops, that machine will 
have to be hard booted to get it to come back up... (I have had a little 
experience with this grin)

Cheers
Jeff
Jim Vellenga wrote:

Greetings everyone,

I have several Linux machines running on my home network.  At this point
every user has their own home directory on each machine and would need
to transfer files from one home to another to get them on the other
machine.  What I want to do, but don't know how to do, is have the home
directories of all the users be hosted on the main server so no matter
which machine they log in from, they will have access to their files.  I
would guess that I would need some sort of fall back if the server were
to be down for one reason or another, but this sort of setup would allow
me to easily backup people's information onto cd's by just having to
back up the /home on the server.  

Thinking about this, I would probably need to centralize the password
and user information as well, and that would definitely need a fall back
so that users could log onto the local machine even if the server was
down for one reason or another.
Could someone provide some helpful advice or direct me to a location
with instructions on doing this.  

Oh, one of the machines is running Mandrake 9.1 (I thought I would check
it out and find I am really liking it) the others including the server
are on RH 8.0.
Thanks,

Jim



 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: FW: Disappointed - Lack of support for RHCE's in Australia

2003-03-26 Thread Jeff Lane
Skeeve Stevens wrote:

Maybe someone @ RedHat will listen if I post here... There was no
response from any of the other addresses.
...Skeeve

-Original Message-
From: Skeeve Stevens [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2003 7:25 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'; 'Natalie Cramp'; 'Dean Samuels';
'[EMAIL PROTECTED]'; '[EMAIL PROTECTED]';
'[EMAIL PROTECTED]'
Subject: Disappointed - Lack of support for RHCE's in Australia

Maybe you should try the address for RHCE info and training??? 
[EMAIL PROTECTED] would be a good start...

feedback goes to who knows where...  channel goes to teh person handling 
channel sales, customerservice goes to customer service (for refunds, 
bad media replacement, etc).  Mike Tiemann is a good place to look to, 
so you had one good address out of the bunch...grin  

You may also want to look at the Red Hat site for the Australian office...

Cheers

 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Disappointed - Lack of support for RHCE's in Australia

2003-03-26 Thread Jeff Lane
Skeeve Stevens wrote:

Yippee... a response.

...Skeeve

Ummm you gonna share the response? ;)



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: RH 9: ok, so i overreacted ... but i'm still miffed

2003-03-26 Thread Jeff Lane
Cliff Wells wrote:

Well, I for one would like to know exactly why it's called Red Hat. 
Is this some sort of communist plot?  Their logo *does* look rather
cloak-and-dagger.

Maybe they should change their versioning scheme to colors: redhat,
bluehat, greenhat, aquahat.  That wouldn't seem as sinister and then
people could complain about them being trying to be too much like Apple
instead of MS.  That would be refreshing in its own way.
Sure, people will always have something to complain about...

But then we'd avoid the whitehat releases as white is considered an
unlucky color by the Chinese and would probably be considered to be
plagued with problems, much like the .0 releases are now wink.
 

indeed, but you also know that we would ALL run out to get the blackhat 
release... grin

When I worked there, we were trying to get them to release an ubergeek 
version...

solid black matte finish box with dark grey logos and only slightly 
lighter grey writing...

and the only thing in the box would be a set of CDs and a shirt.

I thought that that would sell like crazy, but marketing weenies dont 
understand the lure of really cool things to geeks...

I guess you can't win.

No, I guess not... grin



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: [ADMIN] RHCE and Red Hat Linux 9

2003-03-26 Thread Jeff Lane
Mark Hutchinson wrote:

They changed to policy on this yesterday.  The 2 major number versions now comes
from Advanced server numbering.  As this is much slower, your RHCE will last
alot longer.
 

Which is even better news for those of us who were certed in the 6.2-7.2 
days:

From the email I recieved:

All RHCEs earned on Red Hat Linux 7.3 or prior will be considered current until the release of Red Hat Enterprise Linux AS/ES/WS 4.

and since Enterprise is only on 2.1 right now, that means my 7.0 RHCE is 
gonna be good for a hella long time.

I was afraid I was going to have to talk my new boss into fronting the 
bill for another RHCE class...

Cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: (no subject)

2003-03-26 Thread Jeff Lane
True, true, the address given was incorrect.  And someone could have 
pointed him to the quite obvious trailer that is put on to every email 
this list gets that is as follows:

redhat-list mailing list unsubscribe 
mailto:[EMAIL PROTECTED] 
https://listman.redhat.com/mailman/listinfo/redhat-list But Edward, I 
only say this because I care, but... there are many decaffinated brands 
on the market that are just as tasty as the real thing. ;)

cheers
Jeff
Edward Dekkers wrote:

Unsubscribe from the list by sending a one word (unsubscribe) email to
   

[EMAIL PROTECTED]

HELL NO!

WRONG!

That means we all get to see his unsubscribe request again.

The correct address is [EMAIL PROTECTED]

Regards,
 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: X-Server Fatal Error: failed to initialize core devices

2003-03-26 Thread Jeff Lane
Oddly enough, I have run into the same issues when having problems wiht 
gpm.  And sometimes on reboots...

For gpm, sometimes gpm does not start properly, and for some reason I 
cant fathom, if gpm isnt running, X wont load... (granted this is 
probably related to the next issue more than it is to gpm itself).

The real problem is after a power failure...  if my machine loses power 
(I know, I know, but even with a UPS, sometimes I dont make it home fast 
enough to shut her down, and I dont the money to invest in a good UPS 
with serial connections and all that jazz just yet)... but the point is, 
that after a loss of power, I boot the machine, and no mouse.  So, 
reboot, and all is well...  This only happens after power outages, by 
the way...

Cheers
Jeff
Bret Hughes wrote:

On Wed, 2003-03-26 at 20:43, John Kurtz wrote:
 

I sent the full file as this was requested, see:

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]
I edited the file, to the error areas. Cannot open device /dev/inportbm -
no such device.I ran lsmod, no msbusmouse etc. I ran cat  /dev/inportbm  /dev/null,
again, there is no such file.
Please help to get this back up and running.

John Kurtz



(II) Initializing built-in extension RENDER
(**) Option Protocol BusMouse
(**) Mouse0: Protocol: BusMouse
(**) Option CorePointer
(**) Mouse0: Core Pointer
(**) Option Device /dev/inportbm
(EE) xf86OpenSerial: Cannot open device /dev/inportbm
No such device.
(EE) Mouse0: cannot open input device
(EE) PreInit failed for input device Mouse0
(II) UnloadModule: mouse
(**) Option Protocol IMPS/2
(**) Mouse1: Protocol: IMPS/2
(**) Option SendCoreEvents
(**) Mouse1: always reports core events
(**) Option Device /dev/input/mice
(**) Option Emulate3Buttons no
(**) Option ZAxisMapping 4 5
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 5
(II) Keyboard Keyboard0 handled by legacy driver
(WW) No core pointer registered
(II) XINPUT: Adding extended input device Mouse1 (type: MOUSE)
No core pointer
   

When ever I runinto mouse probelms I rerun mouseconfig and let it update
the x config file.
Bret

 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: (no subject)

2003-03-26 Thread Jeff Lane
Edward Dekkers wrote:

But Edward, I
only say this because I care, but... there are many decaffinated brands
on the market that are just as tasty as the real thing. ;)
cheers
Jeff
   

I actually only ever drink decaf. Late night, up early, and one of the first
messages is yet another unsubscribe one.
Maybe I should actually switch to fully caffinated to wake myself up a bit
more?
;-) back at ya.

Regards,

---
Edward Dekkers (Director)
Triple D Computer Services P/L
Heh... only high test for me  the more caffine the better!

Actually, I was just having this discussion on another list I am on... 
its a semi-private list and we just moved to new software, that has full 
web capabilities, etc etc etc, and ya know what, even with all these 
nice banners on email with explicit unsub messages, we STILL get at 
least one or two a week that say How do I unsubscribe or Remove me 
from your list.   That last one is my favorite  Remove me from your 
list indeed.  They signed up for it voluntarily... they can unsub 
voluntarily... heheh

but any more, I just direct all messages with unsubscribe in the subject 
to the appropriate handler /dev/null

hope you get more sleep than I do tonite... I am gonna be up late 
looking for a new server, some ram, and some other assorted goodies, 
then I get to be up at 7 am again...

Cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Red Hat Linux 9 | Get the latest Linux early (fwd)

2003-03-24 Thread Jeff Lane
Robert P. J. Day wrote:

Red Hat list admin:

 A number of folks received the following on the Red Hat mailing
list recently.  The overwhelming evidence is that it is spam,
given the return address of redhat.chtah.com
Ummm nope.  Unless this spammer happened to also take over the 
redhat.com domain as well...

as was posted earlier:

http://www.redhat.com/mktg/rh9iso/

heres some text from that page on what appears to be www.redhat.com

Subscribe to Red Hat Network (subscriptions start as low as $60 
USD/year). Red Hat Linux 9 ISOs will be available to paid subscribers 
starting March 31, 2003--a week before they will be available on 
redhat.com, in stores, or on Red Hat FTP. A paid subscription also 
gets you access to RHN technical support, errata updates, priority 
access during peak times, and immediate email notification. It's the 
quickest way to get Red Hat Linux 9.

And just to be doubly sure... here are some of the tcpdump lines that I 
got from loading that page:

04:52:41.740352 65.56.213.5.33015  66.187.232.56.http: . ack 15140 win 
63480 (DF)
04:52:41.890352 66.187.232.56.http  65.56.213.5.33015: . 
15140:16520(1380) ack 1236 win 16510 (DF)
04:52:41.890352 65.56.213.5.33015  66.187.232.56.http: . ack 16520 win 
63480 (DF)
04:52:42.050352 66.187.232.56.http  65.56.213.5.33015: . 
16520:17900(1380) ack 1236 win 16510 (DF)
04:52:42.050352 65.56.213.5.33015  66.187.232.56.http: . ack 17900 win 
63480 (DF)

and a dig on www.redhat.com:

[EMAIL PROTECTED] network-scripts]# dig www.redhat.com

;  DiG 9.2.1  www.redhat.com
SNIP
;; ANSWER SECTION:
www.redhat.com. 134 IN  A   66.187.232.56
;; AUTHORITY SECTION:
redhat.com. 163 IN  NS  ns2.redhat.com.
redhat.com. 163 IN  NS  ns3.redhat.com.
redhat.com. 163 IN  NS  ns1.redhat.com.
;; ADDITIONAL SECTION:
ns2.redhat.com. 23846   IN  A   66.187.224.210
ns3.redhat.com. 23846   IN  A   66.187.229.10
ns1.redhat.com. 23846   IN  A   66.187.233.210
SNIP
Note that the www.redhat.com address is the address that I was getting 
the packets from, as evidenced by tcpdump...

So, its real.. or Red Hat has one hell of a good intrusion going on...

and trust me, I know enough people on the inside at Red Hat to have 
confirmed this.

Cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: dmesg output - please interpret

2003-03-23 Thread Jeff Lane
True, me too...but if that output is the contents of /var/log/dmesg, 
isnt that the dmesg output from boot time?  Looked like a boot dmesg to 
me at least... which is why I was asking...  if its an audio cd, or 
perhaps a blank cdr, then either way he shouldnt have a cdrom listing 
set to automount in fstab...

just my 2 cents...

Jeff

Cameron Simpson wrote:

On 12:25 22 Mar 2003, Jeff Lane [EMAIL PROTECTED] wrote:
| Michael Mansour wrote:
| SNIP
| hdc: ATAPI 20X CD-ROM drive, 120kB Cache
| Uniform CD-ROM driver Revision: 3.12
| cdrom: This disc doesn't have any tracks I recognize!
| cdrom: This disc doesn't have any tracks I recognize!
|
| ??  in fstab... do you have auto in the cdrom line???
I'm more inclined to think he has an audio CD in the drive, not a data CD.

Cheers,
--
Cameron Simpson, DoD#743[EMAIL PROTECTED]http://www.zip.com.au/~cs/
The ZZR-1100 is not the bike for me, but the day they invent nerf roads
and ban radars I'll be the first in line..AMCN


 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: dmesg output - please interpret

2003-03-23 Thread Jeff Lane
Cameron Simpson wrote:

On 05:29 23 Mar 2003, Michael Mansour [EMAIL PROTECTED] wrote:
|
| The cd drive is empty actually... I thought it had
| something to do with the KDE automounter always
| checking the cd drive to see if something is in it?
Hmm, yes. Sounds likely to me, though you'd expect a better message;
CD drives happily return a sane no medium error. Sounds like magicdev
is being unhelpful in its messages. If it's magicdev, which I think it is.
I always disable magicdev and just use an entry in my automounter for
the CD, so when you know there's a data disc in it you can just cd
/mnt/cdrom and it gets mounted then. Not probing in the background.
First thing I always do when building a Red Hat system...  rpm -e magicdev

that and linuxconf have given me nothing but grief...  and for what its 
worth, when I worked at Red Hat, the first thing we would say to a 
customer who was having CDROM issues was rpm -e magicdev and try 
again... heh

Cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: dmesg output - please interpret

2003-03-22 Thread Jeff Lane
Michael Mansour wrote:

Hi,

I'm running RH8.0 with kernel 2.4.18-27.8.0 on a Dual
Pentium II 300MHz CPU. The system boots up and runs
fine, although I get a couple of errors. Following is
my dmesg output:
(feel free to go scan though it and tell me if
anything looks weird to you, especially the invalid
operand:  bit of the output).
Linux version 2.4.18-27.8.0smp
([EMAIL PROTECTED]) (gcc version
SNIP
hdc: ATAPI 20X CD-ROM drive, 120kB Cache
Uniform CD-ROM driver Revision: 3.12
cdrom: This disc doesn't have any tracks I recognize!
cdrom: This disc doesn't have any tracks I recognize!
 

??  in fstab... do you have auto in the cdrom line???

it should look something like one of these if correct...

/dev/cdrom  /mnt/cdrom  iso9660 
noauto,owner,kudzu,ro 0 0
/dev/cdrom1 /mnt/burner iso9660 
noauto,owner,kudzu,ro 0 0

The other issue I get when booting (it's not included
in dmesg but does show up on the screen) is a
segmentation fault error on line 44 of the rc.sysinit
script, which is basically the bit of the script:
if [ $PROMPT != no ]; then
echo -en $\t\tPress 'I' to enter interactive
startup.
echo
sleep 1
fi
# Fix console loglevel
/bin/dmesg -n $LOGLEVEL
# Mount /proc (done here so volume labels can work
with fsck)
action $Mounting proc filesystem:  mount -n -t proc
/proc /proc
ie. line 44 is the fi after the sleep 1 line.
Weird why that error is produced.
Works fine with no errors when booting the non-SMP
kernel.
 

Ah the joys of SMP...  have you tried filing a bug in bugzilla???  there 
may be some sort of issue wiht the SMP kernel that comes out of hte box 
(wouldnt be the first time)



Cheers
jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: OT : light years, arrrrggggh

2003-03-19 Thread Jeff Lane
Jack Byers wrote:



Jack Byers [EMAIL PROTECTED]

I agree with William Ward:

Can we please get back to Redhat Linux now?


I started this whole thing off,
caused mainly by my not understanding
the common use of miles ahead
and thus i leaped to criticize use of light-years
bc I was taking its use by another listmember as a  unit of time
which I now understand he was not (apologies to Hal),
but instead fully correctly as unit of distance, in the sense of 
miles ahead
Oh, you didnt REALLY think you could ask a question like that on a Linux 
mailing list and NOT get completely off topic do ya?  hehehhe  That was 
almost like asking why Mozilla is better than Opera, or which distro do 
you prefer grin

Besides which, I really enjoy the OT stuff every now and then... like 
they say, All Scripts and no Quake make Jack a dull SysAdmin... or 
something like that.

However I did enjoy the various respondents re the Han Solo quote
I actually enjoyed coming up with that poor description of the Kessel 
Run as well... its been a LONG time since I have been able to actually 
use any of the astronomy that I learned in college... heh

cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: OT : light years, arrrrggggh

2003-03-18 Thread Jeff Lane
fred smith wrote:

On Mon, Mar 17, 2003 at 01:57:51PM -0500, Robert P. J. Day wrote:

Han Solo:  Fast?  Yeah, she's fast.  She made the Kessel run in
 under 12 parsecs.
   

Which makes sense only if the kessel run is some kind of benchmark
other than a DISTANCE benchmark, i.e., if they're benchmarking something
whose ultimate goal is to be achieved over some variable distance,
and 12 parsecs is a record-setting distance. But of course, even that
doesn't make much sense, it's just a bit of flotsam/jetsam on the sea
of stupid movie lines.
 

Oddly enough, and still off topic, there is a reason that Han Solo said 
that.

Strictly star wars speaking, the kessel run was a smugglers run from the 
planet Kessel to a point out in space.  Now, the problem with this run 
was that there was a place in the vicinity of the system that Kessel is 
in called the Maw, which is basically an area that contained numerous 
black holes that created gravitic anomolies that made it impossible to 
jump to light speed (as it were in that universe).

Until the point at which Han and Chewie, in the Millineum Falcon broke 
the record on the Kessel run, ships went a certain path (read arc) 
around the maw.  and the length of that arc varied depending oh how 
close a ship came to the maw so, the closer you flew to the event 
horizon, the shorter your distance from one point on the arc to another. 
Hence the parsec quantifier.  basically, the trip from Kessel to the 
safe point normally took something like 15 parsecs worth of distance as 
the ships had to travel a pretty good arc around the area of black 
holes.  Han did it in under 12 parsecs, meaning that he had cut it that 
much closer to the maw than anyone else had ever done.

by the way...  whats wrong with using parsecs as distance?  that is what 
they are...

1 parsec = 3.09E13 km = 3.26 lightyears.

Of course, picturing a 12pc arc and a 15pc arc with the same start and 
stop points would make a good example to look at, but in astronomical 
terms, that would mean that hte typical (and 15 is just a guess) parsec 
trip would be roughly 9.27e13 km longer than the record setting run that 
Han did...

or in other words...

the normal trip is about 463,500,000,000,000km and Han's trip was 
roughly 370,800,000,000,000km long, saving roughly 92,700,000,000,000km

roughly of course...  my astronomical math is a little rusty... I havent 
really used it in ages.. grin

cheers



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: System Drops off Network

2003-03-18 Thread Jeff Lane
Dan Donathan wrote:

Has anyone ever asked RH about it? Like I said, it seems odd that such a
popular card would have a problem.
-Original Message-
From: Joe Lewinski [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 18, 2003 5:52 PM
To: [EMAIL PROTECTED]
Subject: Re: System Drops off Network

We have had the same issues with 3COM.   Netgear seems to work
just fine too!
 

for what its worth, and just to throw a monkey into the wrench...  I had 
a 3c905c for a long time and never had a problem with it...  ran from 
6.2  (that did require some work) through 7.3.  

I would ask this, how are your IPs assigned on this network.  Sounds 
like it could also be a case of the DHCP server having a lease time out, 
and that particular machine not renewing its lease.  which means that 
the server will, after the timeout period, no longer have a valid IP or 
will have no IP at all...

We used to get calls a lot from people with cable modems that had the 
same issues... their connection would drop at certain intervals and 
never come back up... turns out that hte cable provider assigned all IPs 
via DHCP, and at somewhere between 3am and 5 am, every subscribers IP 
lease would be renewed, and in some cases, the client machine would not 
update itself... and hence, drop the connection.

so waht happens if, after the machine drops off your network, if you do 
a service network restart???

cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Practice Exams

2003-03-14 Thread Jeff Lane
Being an RHCE, as well as one of the people who is/was certified to 
actually give the exams, I can tell you this:

First, Caleb, your friends are correct...  I bought that book and found 
it to be basically useless.  Then again, I much prefer the Oreilly books 
on linux anyway,

As for practice exams, Caleb is again correct.  Hands on is the ONLY way 
to pass.  The RHCE is not a memorize a bunch of stuff and take a big 
multiple choice exam kind of exam.  There IS a multiple choice part to 
it, BUT that is a rather small part, as the majority of the exam, and 
subsequently the only way to pass the exam, is to know what you are 
doing, and not just be able to spout off soem stuff from a book.  the 
exam is roughly 20% written test and 80% hands on, so you have to 
actually have experience in setting up services, installing, 
configuring, debugging, tweaking, etc etc etc...

cheers
Jeff
RHCE/RHCX
Caleb Groom wrote:
On Thu, 2003-03-13 at 23:06, yarddog wrote:

On Thu, 2003-03-13 at 21:54, Caleb Groom wrote:

On Thu, 2003-03-13 at 21:54, Richard Sumilang wrote:

Anyone know any free Red Hat Practice exams?

Richard Sumilang
IT Manager
ExexDirect, LLC
21650 Oxnard St., Suite 2350
Woodland Hills, CA 91367
(877) 591-3252
[EMAIL PROTECTED]
www.exexdirect.com
They don't exist.  I have both my RHCT and RHCE.

My advice would be to study the cource objectives listed for the RedHat
training classes.  Hands on experience is the only thing that can
prepare you.  Good luck.
--
Caleb Groom [EMAIL PROTECTED]
Not true. Careful if url wraps.
http://www.amazon.com/exec/obidos/tg/detail/-/0072224851/qid=1047618251/sr=1-6/ref=sr_1_6/103-4402590-4288628?v=glances=books


I talked with some people that I took the exam with who had bought that
book.  They didn't even like it as a paper weight.  :-\


--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Recommended GUI (KDE/GNOME)

2003-03-14 Thread Jeff Lane
Anthony E. Greene wrote:

You might not realize it, but you may be starting a flamewar :-)

Try both and use the one you like best. As long as you have both 
installed on you machine, you can run apps from either environment, 
regardless of the desktop you happen to be using.
Heh... YEAH  Personally, I dont really care for either one... 
WindowMaker is the only way to fly... grin

OF the two mentioned, however, I would prefer Gnome/Sawfish, however 
that is still way behind WindowMaker..  ;)

No real reason why I would prefer Gnome... I just do... its all about 
personal choice really.  KDE used to suck royally, however, KDE2 and 
beyond have actually become rather nice to use, and dont crash so much 
anymore...

hope that adds fuel to the fire...

Jeff

--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Practice Exams

2003-03-14 Thread Jeff Lane
Robert P. J. Day wrote:
On Fri, 14 Mar 2003, Rick Johnson wrote:


Michael S. Dunsavage wrote:

So, do you recommend a  book?
You're missing the point. RHCE's *cannot* be passed by book alone. If you 
have the experience required, you'll pass the exam without a book.


no, you can't pass by book alone, but that still doesn't mean that
a book is entirely useless.  at the very least, any *decent* exam
prep book (regardless of the topic) will give you some guidance
about the areas that you should be relatively familiar with, that's
all.
regarding RHCE books, i haven't seen any i'm thrilled with.
why not just go to www.redhat.com, copy the list of topics that
are allegedly covered, and start researching them, one at a time?
rday
Running LInux, Linux in a Nutshell, Installing Linux, Red Hat Linux 
unleashed... all are decent (the O'Reilly ones are the best, IMHO) but 
as has been said repeatedly, get the list of topics, then read up on 
them using your book of choice.

cheers



--
Jeffrey Lane
ConnectNC.com / Internet of the Sandhills
[EMAIL PROTECTED]
chown -r us:us /yourbase/



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: constant reboots

2003-03-05 Thread Jeff Lane
Ashley M. Kirchner wrote:
[EMAIL PROTECTED] wrote:

it's not a power problem, another computer on the same circuit never 
has this problem.
 

   Not necessarily true.  The power supply itself may be causing problems.

Or a bad fan... I used to have a PIII that would constantly reboot 
itself...  what happened was that hte fan was near death, and was not 
adequately cooling the proc off, so it would heat up, reboot.  heat up, 
reboot... and on and on, till I finally popped the case, and realize 
that at that point the fan was no longer among the living...

cheers
Jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Mapping of device names

2003-03-03 Thread Jeff Lane
Jerome Dsilva wrote:

Hi,
Please reply if you know about the same ..I haven't got any replies
to this post...
Is there any command in RH to get the list of device mapping names
.This is required to know the drivers and the modules used by that
kernel in run time. This should be something equivalent to
/etc/path_to_inst file in solaris...
 

Ummm, would you be looking for the info in /etc/modules.conf? (or 
/etc/conf.modules in pre 7.x releases).

example:

alias parport_lowlevel parport_pc  #parallel port module
alias eth0 tulip #tulip driver for 
my Netgear FA-310
alias eth1 sis900  #sis900 driver for 
the onboard NIC
alias usb-controller usb-ohci#module for the onboard USB 
controller
alias sound-slot-0 emu10k1  #emu10k1 driver for the SBLive! 
sound card

Not being a solaris guy, from the basic description you gave, this is 
what you are looking for.  Also, all devices are found in /dev

modules are in /lib/modules/kernelversion/

ummm... hope that helps!

Jeff

 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Issue with mySql at boot

2003-03-03 Thread Jeff Lane
Heres one I have seen before, but for the life of me I cant remember how 
to fix this...

I have a server that is running mySQL.  Now, the problem is that mySQL 
does not load at boot time.  I can not figure out why.

Before y'all start chiming in with the obvious, I have the startup 
scripts in the appropriate rc#.d directories (all are S90mysql) and I 
have the mysql script in /etc/rc.d/init.d

Also, chkconfig shows it set as ON for runlevels 2,3,4,5 (this is 
actually a sun linux box, but the general startup proceedures are the same).

We even have a link to /etc/rc.d/init.d/mysql in rc.local, and even THAT 
fails to bring mysql up at boot time.  we CAN bring it up manually, and 
have been doing so, by manually executing /etc/rc.d/init.d/mysql after a 
reboot.  

Unfortunately, the sunlinux stuff leaves a little to be desired in the 
logging area, as the only boot messages I get are dmesg stuff, no 
process boot messages like Red Hat provides.  

So, any ideas?  I know I have seen this issue before with Red Hat 
servers, and for hte life of me I cant recall what the fix was... I was 
thinking either a lock file somewhere that is still present, or 
something like that.

I originally thought it may be the position in the rc#.d directories 
(should it be S99 instead of S90?) but even if that were an issue, the 
link in rc.local should bring it up anyway...

so, any ideas y'all have would be greatly appreciated!

ciao
./jeff


--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Issue with mySql at boot

2003-03-03 Thread Jeff Lane
Jon Haugsand wrote:

I do not intend to be unfriendly, but shouldn't you ask the SunLinux
community questions concering SunLinux?
Anyway, why not change the /etc/init.d/mysql script such that any
messages it outputs is routed into, say, /var/log/mysql.  E.g. if the
following is a fragmend of the script:
start)
 startup commands
;;
change into:

start)
 (
   startup commands
 ) 21 | /usr/bin/tee /var/log/mysql
;;
 

Will try that... and no, no offense taken.  ACtually, like I said, the 
differences between the two are cosmetic, and to be honest, of all the 
linux servers we have, one is cobalt, the rest are all Red Hat.  AND the 
important issues are pretty much the same.  anyway, like I said also, 
this is something i saw quite a bit with Red Hat 7.2 and earlier, I just 
cant remember what the actual fix was... (In fact, I had seen this 
discussed here a bit a year or two ago, I just cant remember what to 
look through the archives for..)

cheers
Jeff
 



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list


Re: Redhat installation boot cd questions

2001-11-21 Thread Jeff Lane

An even simpler, and more common problem is this:

first, did you do an md5sum on the iso's you downloaded and then compare 
them to what is listed in the MD5SUM file on the ftp site?  that way you 
can ensure that you got complete, full downloads with no errors.

Second, are they bad disks?  the first binary cd should be bootable from 
CDROM.  Can you not boot straight from CDROM?  Have you tried putting the 
first install CD into a different machine and see if you can boot the 
installer on that one?

If you can, then it may be something else.  if you can not boot the 
installer from your CDs on a different machine, then you definitely have 
bad CDs.

ciao
Jeff

On Tue, 20 Nov 2001, Brig C. McCoy wrote:

 At 11:38 AM 11/20/01 -0600, Kerry Miller wrote:
  I burned a cd from the ISO files for 7.1 and made a boot disk using rawrite.
  When I try to install, it says it can't find a Red Hat cd and never gives me
  an option to tell it where to look for the cd.  What did I do wrong?  I just
  burned the cd's for 7.2 and want to try again tonight so I want to find out
  how to get around this problem.  Any ideas about where I messed up last time
  so I won't do it again?
 Couple possibles:
 
 Try the oldcdrom.img in the folder with the boot disk image. Use rawrite to 
 move that image to a second diskette, and when the boot disk asks if you 
 have a driver disk, say yes.
 
 The other possibility is that, if you have a Dell, it might have master 
 select cabling between IDE drives instead of Master/Slave. There's a 
 discussion of it over on http://www.theregister.co.uk which covers the 
 details I've forgotten. :)
 
 ...brig
 
 
 --
 Brig C. McCoy   5109 Cherry St
 Head, Systems OfficeKansas City, MO  64110  USA
 Linda Hall Library of Science,  816 926-8749 PHN, -8790 FAX
 Engineering, and Technology http://www.lindahall.org
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 

-- 
Jeffrey Lane, RHCX, EMT

Red Hat, Inc.  919-547-0012
www.redhat.com/support

In memory of all victims of the Trade Center attack.

and especially in memory of all Firefighters, LEOs and EMTs
who paid the ultimate sacrifice during this troubles time so
that others may live.  God Speed my Brothers and Sisters.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: HSP56 micromodem

2001-03-29 Thread Jeff Lane


No.  ITs a win modem IIRC.

On Wed, 28 Mar 2001, ARIEL PEREZ wrote:

 Dear Friends 

   I need to know if this modem are supported by
 linux red hat 7.0 2.2.16 ...

 thanks for all...



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Extract a spec file from a SRC.RPM

2001-03-29 Thread Jeff Lane


Get rpm2cpio and install that.  then do this:

rpm2cpio foo.rpm | pax -r /full/path/to/filename -w /tmp -i

this will write the file interactively, so you can change the name.

for instance, if the specfile you want, when doing an rpm -qpl foo.rpm
shows up like: /usr/src/foo.spec.file but you want that file to go to
/pub/work instead, you run that command wiht the -i, and you should be
prompted to rename the file, so you can change it from
/usr/src/foo.spec.file to /pub/work/foo.spec.file.

Also, from what I hear, midnight commander and GNOrpm will handle that as
well.

cheers

On Wed, 28 Mar 2001, ABrady wrote:


 On 28-Mar-01 Wolfgang Pfeiffer opined:
  I'd like to extract a spec file from a existing SRC.RPM I have here ...
  didn't manage it until now ... that's what I did:
 
  --
  $ rpm -q --specfile wget-1.5.3-6.src.rpm
  line 1: Unknown tag: b
  query of specfile wget-1.5.3-6.src.rpm failed, can't parse
  $
  --
  I need this spec.file to build it into a wget.tar.gz, which seems to be
  newer than the source.rpm of wget that I have  ... :)

 How about rpm -i the source, then copy/move the specfile from
 /usr/src/redhat/SPECS to wherever you need it?

 ---
 99% of lawyers give the rest a bad name.



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Is it possible to get a video camera (INTEL) to work with LINUX?

2001-03-29 Thread Jeff Lane


Not without an upgrade to probably 2.4.3 kernel.  Not to mention that you
may or may not get that to work as the USB support in Linux is still not
quite there...

but for the best info, go to www.linux-usb.org and look for your camera to
see if it is supported and possibly for HOWTOS on installing it.

cheers

On Wed, 28 Mar 2001, Hector Banda wrote:

 Hi all,
 I have a video camera (USB) that I'd like to get it to work with RH 6.2.
 Is any driver to get USB and this camera to work?
 I already checked intel's site and there is not driver for LINUX.


 Thanks,


 ==
 Hector M BandaVoice:  (949) 784-3143
 Progress Programmer/Analyst Fax:  (425) 790-6379
 Draper's  Damon's -- 9 Pasteur -- Irvine Ca, 92618
 ==



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: System is spamming me; rmmod -as failure

2001-03-29 Thread Jeff Lane


so

why dont you just delete the rmmod cron job that is causing this??


On Wed, 28 Mar 2001, Al Sparks wrote:


 --- "Mikkel L. Ellertson" [EMAIL PROTECTED] wrote:
  Do you have the correct version of modtools?
 
 
 
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list

 I now know what the problem is.  We're not running modules.  We recompiled the
 kernel w/o them.  However, Red Hat doesn't know that, so it keeps trying to
   rmmod

 Thanks for the help.
=== Al

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/?.refer=text



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: rh7 kernel compilation doesn't work

2001-03-29 Thread Jeff Lane

edit the makefile and change HOSTCC= from gcc to kgcc, and make sure you
have the kgcc package installed.

On Thu, 29 Mar 2001, Peter Peltonen wrote:


 I get a error in checksum.SS (or something) with 2.2.17 kernel. I've installed
 the updates and have succesfully compiled many kernels on rh6.2 boxes.

 I know there was a trick for 7.0 for kernel compilaition - one should change
 the compiler from gcc to k-something... What was the compiler named again and
 where do I configure it?


 Cheers,
 Peter



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: 10/100 driver

2001-03-29 Thread Jeff Lane

what kind of NIC? what is the make and model?  can you do an lspci -vb and
get the info???

whats the name of hte .c file?

and that is a c source file... you have to compile the driver.

On Thu, 29 Mar 2001, Jerry Human wrote:

 I have installed a nic that came with a driver for Linux with a ".c"
 extension and I'm not sure what I have to do with it to install it.
 Could someone please help me?

 Thank you.



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-) (-0-) (-0-)  (-0-)  (-0-)  (-0-) -0-  (-0-) (-0-) (-0-)  (-0-)  (-0-) (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST 2600 Meridian Parkway   (919) 547-0012x168
Wing Leader, Green WingDurham, NC 27713(888) REDHAT1x168

# chown -R us:us ./YourBase/

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS$/L/O/PA d---@ s:+ a27 C(---) UL P L+++$ E--- W++$(+++)
N-(+++) o++ K+++ w--- O(-) M-(--) !V PS+++() PE-(+) Y+++ PGP++ t
5++@ X(+) R(+++) tv+-- b DI D+ G++ e* h* r+ y**
--END GEEK CODE BLOCK--




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Abacus, SAINT or Nessus?

2001-03-06 Thread Jeff Lane

SAINT is good, but it depends on what you are trying to do.  If you are
trying to do a security audit, then yeah,
SAINT, SATAN, Nessus, and there are quite a few others that are all very
good, and range in price from free to ungodly expensive.

If you are just looking for open ports, and some of that sort of stuff,
then a port scanner like nmap is all you need... (but I would reccommend
having the others on hand anyway, as you should test with those as well).

On Mon, 5 Mar 2001, Toms Garca Ferrari wrote:

 Hello,

 I trying to use a network scanner to detect if there is any hole on my
 server. RedHat speaks about the Abacus Project, SAINT and Nessus. Which one
 of these three is more recommended...? Anybody is using them? Any other
 suggestion?

 Thanks for your help!
 Toms

 Tomas Garcia Ferrari

 Bigital
 http://bigital.com



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obsolete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"The key to happiness is self-delusion.  Dont
think of yourself as an organic pain collector
racing toward oblivion."  -Dogbert
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: what files control pap logon

2001-03-06 Thread Jeff Lane

Why didnt you just use rp3-config and add a new ISP entry with your moms
password and username???  then log in to the ISP as hers??  I would
imagine, that if you are using a decent ISP, that the problem is on their
end...  i.e. you cant log in as user john and get mail from user mary's
account.

at least, thats how all the ISPs I have used before worked...

On Mon, 5 Mar 2001 [EMAIL PROTECTED] wrote:

 Hi All,
 My moms computer is in the shop so I want to pick
 up her email. I tried changing username in /etc/ppp/options
 and the login and name in /etc/ppp/pap-secrets and
 in fetchmailrc. However it doesn't work it is failing
 to logon to the isp correctly. We both have the same
 isp so it has to be a name password problem.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: what files control pap logon

2001-03-06 Thread Jeff Lane

Hmmm  I stand corrected then

I would have thought that their servers would prevent that from happening
(similar to keeping users out of each others home accounts on a LAN)...

I will have to go home tonite and play with that some and see what i can
figure out...



On Mon, 5 Mar 2001, Mikkel L. Ellertson wrote:
 But you should be able to create a .fetchmailrc file that will get her
 e-mail over your normal ppp connection.  The easyest way would be to
 create a user for her mail with the proper .fetchmailrc, or add her
 username/password to a master .fetchmailrc file that is used to get mail
 for all your users.  You should not have to gring up the ppp link using
 your mother's name and password just to get her mail.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RH 7 install and CDRom

2001-02-22 Thread Jeff Lane

No.  Not I.  Is this the SAME CD in each machine?  If so, then I would
imagine you ahve a bad CD, dirty CD, scratched CD, etc.

especially if all these machines are different (i.e. not the same model of
hardware in them)

cheers

On Wed, 21 Feb 2001, Charles wrote:

 I've been having problems with CDRoms just quitting reading the RH CD
 during install.  This has happened on 4 separate machines.  Has anyone
 else noticed this or have an idea what is going on?

 Thanks



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obsolete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"The key to happiness is self-delusion.  Dont
think of yourself as an organic pain collector
racing toward oblivion."  -Dogbert
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Uninstalling.

2001-02-22 Thread Jeff Lane

On Wed, 21 Feb 2001, Dave Wreski wrote:


  I'm looking to uninstall RH 7.0 , but I don't have a clue where to
  start! Any help would be appreciated.

 1. Take disk out of machine
 2. Walk outside with it
 3. Drop on cement / nearby a large magnet

Heh heh...

rm -rf /

reboot, boot to dos,

fdisk /mbr


;-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Kernel headers rpm?

2001-02-22 Thread Jeff Lane

I dont see any headers files listed on the errata page with the links to
the kernel packages...  what version and architecture are you using?

also, you shouldnt need new headers...  the headers should be the same as
the ones that are currently on your system. (kernel-headers-2.4.0-0.26)

HTH
J

On Wed, 21 Feb 2001, Burke, Thomas G. wrote:

 Hey gang,

   I tried to download the kernel updates from the 8 Feb 2001 update
 notice,  I find that while there is a link for it, there is no
 kernel-headers rpm on the download site...  What's up with that?



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Resend (No Reply) !!

2001-02-22 Thread Jeff Lane

On Wed, 21 Feb 2001, Mark Lo wrote:

 Hi all,

  From my log files, I got the following messages.  I know the below IP
 address is coming from the same network as I do.  and I have checked the IP
 address (203.194.161.2 and 203.194.161.3) with my ISP, they told me the IP
 of 203.194.161.2 and 203.194.161.3 are routers.  And they have confirmed
 that they didn't send me such packet.  As the result, It may be spoof
 packet.  So, how can I stop people sending me thoes packet or how to find
 out the sources (where are the packet come from).  I got tones of those
 garbages in my log files.  It's filling up my disk space.


 Feb 20 07:26:08 dns1 kernel: Packet log: input DENY eth0 PROTO=17
 203.194.161.2:1985 224.0.0.2:1985 L=48 S=0xC0 I=0 F=0x T=2 (#41)


Spoofed?  maybe...  then again, More often than not, I find that the ISP
staff i usually either clueless (does happen sometimes) or just doesnt
want you to know that they screwed up (more often than not) or just doesnt
care and wants to get you off the phone, so they say, Hey, its not us!

According to www.arin.net/whois:

Asia Pacific Network Information Center (APNIC2)
These addresses have been further assigned to Asia-Pacific users.
Contact information can be found in the APNIC database,
at WHOIS.APNIC.NET or http://www.apnic.net/
Please do not send spam complaints to APNIC.

Netname: APNIC-CIDR-BLK
Netblock: 202.0.0.0 - 203.255.255.255
Maintainer: AP

Coordinator:
   Administrator, System  (SA90-ARIN)  [EMAIL PROTECTED]
   +61-7-3367-0490

Domain System inverse mapping provided by:

SVC00.APNIC.NET  202.12.28.131
NS.APNIC.NET 203.37.255.97
NS.TELSTRA.NET   203.50.0.137
NS.RIPE.NET  193.0.0.193

Regional Internet Registry for the Asia-Pacific Region.

*** Use whois -h whois.apnic.net  ***
*** or see http://www.apnic.net/db/ for database assistance   ***


Record last updated on 18-Jun-1999.
Database last updated on 21-Feb-2001 07:13:10 EDT.

Accordign to APNIC:

Search results for '203.194.161.2'

   inetnum  203.194.128.0 - 203.194.191.255
   netname  IADVANTAGE
   descriAdvantage Limited
   country  HK
   admin-c  ATWY1-AP, inverse
   tech-c   BL26-AP, inverse
   tech-c   HM55-AP, inverse
   mnt-by   APNIC-HM, inverse
   mnt-lowerMAINT-HK-IS, inverse
   changed  [EMAIL PROTECTED] 20001018
   source   APNIC


   person   Alex Tam Wing Yiu, inverse
   address  iAdvantage Ltd.
   address  36/F Standard Chartered Tower II
   address  Millennium City, 388 Kwun Tong Road
   address  Kwun Tong, Hong Kong
   phone+852-22088328
   fax-no   +852-22672237
   country  HK
   e-mail   [EMAIL PROTECTED], inverse
   nic-hdl  ATWY1-AP, inverse
   mnt-by   MAINT-NULL, inverse
   changed  [EMAIL PROTECTED] 19991116
   source   APNIC


   person   Ben Li, inverse
   address  36/F, Standard Chartered Tower
   address  Millennium City, 388 Kwun Tong Road
   address  Kwun Tong, Hong Kong
   phone+852-22088320
   fax-no   +852-22672237
   country  HK
   e-mail   [EMAIL PROTECTED], inverse
   nic-hdl  BL26-AP, inverse
   mnt-by   MAINT-HK-IS, inverse
   changed  [EMAIL PROTECTED] 19991116
   source   APNIC


   person   iAdvantage hostmaster, inverse
   address  iAdvantage Limited
   address  36/F, Standard Chartered Tower,
   address  Millennium City, 388 Kwun Tong Road
   phone+852-22088338
   fax-no   +852-22672237
   country  HK
   e-mail   [EMAIL PROTECTED], inverse
   nic-hdl  HM55-AP, inverse
   mnt-by   MAINT-HK-IS, inverse
   changed  [EMAIL PROTECTED] 2121
   source   APNIC

So, who knows?  Can you stop them from sending packets?  probably not.
Can you do anything?  probably, your firewall is doing its job if those
packets are getting dumped...

Also, go to securityfocus.com and supscribe to the incidents list and see
what the people there have to say.  They do a lot with odd packets,
scanning, etc, as well as forensics when tracing odd activity.





___
Redhat-list mailing list
[EMAIL PROTECTED]

Re: openssh and commercial ssh

2001-02-14 Thread Jeff Lane


On Tue, 13 Feb 2001, Bret Hughes wrote:

 Bret Hughes wrote:
 
  Having trouble getting a key generated fo ssh2 on the commercial version
  of secure shell to work on OpenSSH on a redhat 6.2 box.
 

 Got it working see below.

Ignore my other message..

Interesting thought you make tho, about the proprietary SSH versus the
OpenSSH.  Theres an article on /. today about this.  Seems the guy that
formed SSH Communtications Security is asking the OpenSSH people to stop
using his trademarks...





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: dns lookup problem

2001-02-14 Thread Jeff Lane

That IP info is here, courtesy of www.apnic.net and www.arin.net:

inetnum  211.104.0.0 - 211.119.255.255
netname  KRNIC-KR-25
descrKRNIC
descrKorea Network Information Center
country  KR
admin-c  WK1-AP, inverse
tech-c   SL119-AP, inverse
remarks  KRNIC Allocation Block
remarks  Authoritative Information regarding assignments and
remarks  allocations made from within this block can also be
remarks  queried at whois.nic.or.kr
mnt-by   APNIC-HM, inverse
mnt-lowerMNT-KRNIC-AP, inverse
changed  [EMAIL PROTECTED] 2414
source   APNIC

person   Weon Kim, inverse
address  Korea Network Information Center (KRNIC)
address   Important Notice **
address  KRNIC is the National Internet Registry.
address  If you want to find detail assignment information
address  about above IP address, please use "http://whois.nic.or.kr"
address  *
address  Narajongkeum B/D 14F, 1328-3, Seocho-dong, Seocho-Ku
address  Seoul, 137-070, Republic of Korea
phone+82-2-2186-4500
fax-no   +82-2-2186-4496
country  KR
e-mail   [EMAIL PROTECTED], inverse
nic-hdl  WK1-AP, inverse
mnt-by   MNT-KRNIC-AP, inverse
changed  [EMAIL PROTECTED] 2927
source   APNIC

person   Seung-Min Lee, inverse
address  Korea Network Information Center (KRNIC)
address   Important Notice **
address  KRNIC is the National Internet Registry
address  If you want to find detail assignment information
address  about above IP address, please use "http://whois.nic.or.kr"
address  *
address  Narajongkeum B/D 14F, 1328-3, Seocho-dong, Seocho-Ku
address  Seoul, 137-070, Republic of Korea
phone+82-2-2186-4500
fax-no   +82-2-2186-4496
country  KR
e-mail   [EMAIL PROTECTED], inverse
nic-hdl  SL119-AP, inverse
mnt-by   MNT-KRNIC-AP, inverse
changed  [EMAIL PROTECTED] 2927
source   APNIC


But then again, that IP coulda been spoofed too... so who knows.

On Wed, 14 Feb 2001, Chip Rose. wrote:

 Hopefully this isn't too off topic, but my portsentry logs show that
 I've been hit repeatedly by the following dns number this week:
 211.119.248.38

 I've tried using dns lookup via webpages that offer it, but always get
 back "no results for this nameserver value."  Am I missing something in
 trying to find out who 211.119.248.38 is?



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ethernet startup problems

2001-02-14 Thread Jeff Lane

On Tue, 13 Feb 2001, David Brett wrote:

 Hi Jeff

 Here is the output requested.  It looks ok to me.  If it makes any
 difference this is rh6.2

 chkconfig --list network
 network   0:off   1:off   2:on3:on4:on5:on6:off

For the record all, we solved this one... was the wrong driver listed in
conf.modules...

eth0 was listed as 3c509 instead of rtl8139.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: openssh and commercial ssh

2001-02-14 Thread Jeff Lane

That may be because you are trying to use a commercial SSH2 key, on an
SSH1 system.

Well, thats what it sounds like here... but I could be mistaken..



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: strange crashes

2001-02-14 Thread Jeff Lane

On Wed, 14 Feb 2001, Chris Mason wrote:

 That sounds like my problem, what's the best way to do a memory check?
 This is often a sign of RAM going bad, might try swapping out sticks of
 memory and watching for the crashes.  Possibly running a memory test would
 be worth it.  Hope this helps.

 Jeff Hogg


could this also be due to a memory leak?  Has he upgraded rhnsd?  The one
that shipped with 7 has a discriptor problem, that caused a memory leak
when rhnsd was running, that would also cause strange random crashes...





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ethernet startup problems

2001-02-13 Thread Jeff Lane

On Mon, 12 Feb 2001, David Brett wrote:

 When ever the computer restarts, the ehternet is not active.  I cannot
 find out why.  I am always able to make it active.  Here is ifcfg-eth0
 file

 DEVICE="eth0"
 USERCTL=yes
 ONBOOT="yes"
 BOOTPROTO="none"
 BROADCAST=192.168.1.255
 NETWORK=192.168.1.0
 NETMASK="255.255.255.0"
 IPADDR="192.168.1.2"
 IPXNETNUM_802_2=""
 IPXPRIMARY_802_2="no"
 IPXACTIVE_802_2="no"
 IPXNETNUM_802_3=""
 IPXPRIMARY_802_3="no"
 IPXACTIVE_802_3="no"
 IPXNETNUM_ETHERII=""
 IPXPRIMARY_ETHERII="no"
 IPXACTIVE_ETHERII="no"
 IPXNETNUM_SNAP=""
 IPXPRIMARY_SNAP="no"
 IPXACTIVE_SNAP="no"

do this:

chkconfig --list network

[root@silentbob cron.daily]# chkconfig --list network
network 0:off   1:off   2:on3:on4:on5:on6:off

and make sure it is set to "on" for level 3 and 5.  If the network daemon
doesnt start at boot, then your network interfaces will not come up.

Since you have the ONBOOT= set to yes, that is the easiest thing I can
think of that would cause this...

especially since you can bring the iface up manually.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Fisher beta notes

2001-02-13 Thread Jeff Lane

Dude...  put this on the fisher-list

not to rag you, but while this info is of great use to the users on this
list, the people on [EMAIL PROTECTED] would probably find this info
even more useful.

so please send this to fisher-list, and maybe even subscribe to that list,
so that your experiences can help out others who are testing this beta.

cheers


On 13 Feb 2001, Tonko de Rooy wrote:

 Hi,


 I installed the Fisher beta on 2 systems, my home system and a notebook
 (ThinkPad 770X).

 The installation on my home system was very smooth, and every piece of
 hardware in it looks to be working (P3 with SiS chipset, G400DH, SBlive,
 3c905c, aic7880, avermedia tvcam98).

 The installation on the ThinkPad was also smooth, but it had a lot of
 problems with PCMCIA after installation, and video still needed to be
 configured with some care, although it was much easier then any previous
 version of RedHat.

 The PCMCIA problems where listed in the releasenotes as being
 problemetic, so I will not go into the problems to much. The main
 problem I had was that the PCMCIA TokenRing adapter was giving
 "ibmtr_cs: MapMemPage: Bad offset" errors. I have had these errors in
 the past with 2.0/2.2 kernels, but in the latest 2.2 kernels with
 current pcmcia-cs package they had been solved.

 The video problems looks to be an issue with the trident_drv module. For
 some reason it correctly detects 8MB of video memory, and then proceeds
 in telling it is only going to use 4 of it. With this the screen got
 totally messed up, adding the videoram 8192 setting to the adapters
 device settings in the XF86Config-4 file solved the problem for me.

 Another issue with the video install was that the installer correctly
 identified the Trident Cyber9397DVD videochip and amount of videomemory,
 but was unable to detect the type of LCD panel, and came back with plain
 VGA sync ranges. And even after selecting 'Generic LCD panel with
 1280x1024 resolution' it suggested as a default resolution a resolution
 that was to high for the LCD. The thing is that if I look through the
 /var/log/XFree86.0.log file I can see that it managed to detect I have a
 1280x1024 resolution LCD panel.

 (--) TRIDENT(0): TFT Panel 1280x1024 found

 Would it not be possible for the installer to also detect this?

 Because of the problems with PCMCIA I did not test the beta really on
 the ThinkPad, so I don't know if there where other problems.


 Some other issues I came across on both machines where:
 - graphical installer uses XFree86 3.3.6. Why not 4.0.2?
 - release notes say Netscape 4.x is depricated, yet it is still the
 default (I had to manually select to install Mozilla).
 - shipped versions of libpcap and tcpdump are very old, much newer ones
 are available from www.tcpdump.org
 - default gnome desktop look is not as nice as Helix.

 In general the new installer was very smooth. Now that framebuffer is
 finally used for the installation, graphical install finally works on
 several machines (mainly mobiles) where it never worked before.



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obsolete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"Ignorance can be cured,
But Stupidity is forever."
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: help me!

2001-02-13 Thread Jeff Lane


Obviously, you didnt read the page... did you?  Did you happen to read the
Redhat-list Subscribers section?

Since you are a subscriber, then dont ya think that this area would be
important to you??

heres what it says:

Redhat-list Subscribers
 The subscribers list is only available to the list administrator.

 Enter your admin address and password to visit the subscribers list:

To change your subscription (set options like digest and delivery modes,
get a reminder of your password, or unsubscribe from Redhat-list), enter
^^^

your subscription email address:


Wow... and when you enter your email address and click on edit options,
why what do you get???  lookee here!!!

Unsubscribing from Redhat-list

  To unsubscribe, enter your password and hit
  the button. (If you've lost your password, see
  just below to have it emailed to you.)

Hmmm what do ya know?  looks like there it is...

Sorry man, I dont mean to bust anyones balls, as it were, however, I am
really annoyed by people who dont take time to read the entire page, and
just come back complaining that they cant unsubscribe to this or any other
list, when the means to do it are right there.

/RANT

Maybe I will write a HOWTO on unsubscribing from the redhat-list.

cheers


On Tue, 13 Feb 2001, Jos Antonio Aceituno Jimnez wrote:

 Yes, but in this URL just I can subscribe

 -Mensaje original-
 De: Martin A. Marques [mailto:[EMAIL PROTECTED]]
 Enviado el: martes, 13 de febrero de 2001 13:50
 Para: [EMAIL PROTECTED]
 Asunto: Re: help me!


 El Mar 13 Feb 2001 09:46, escribiste:
  How can I unsubscribe? I tried everything but I can't...
 
 
 
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list

 Did you try to entre the URL thats here above?



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: rpm major number = 3

2001-02-09 Thread Jeff Lane


On Thu, 8 Feb 2001, Mike Burger wrote:

 You need to get a copy of rpm-3.0.5.

Get it at www.redhat.com/errata in teh 6.2 errata.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Printers

2001-02-08 Thread Jeff Lane

On Thu, 8 Feb 2001, Ted Gervais wrote:

  chkconfig --level 35 lpd on

 I am sorry. You lost me. What does that mean?  (chkconfig --level 35 lpd on)

that is the chkconfig command... like running ntsysv on ONE service from
the console... it translates to:

chkconfig (run the chkconfig command) --level 35 (make changes to
runlevels 3 and 5)  lpd (the service to change status on) on (what status
to assign for init).

this particular one will set lpd to turn on when you boot to either
runlevel 3 or 5.

read 'man chkconfig' for more detail




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: windows doc to linux ???

2001-02-08 Thread Jeff Lane


On Thu, 8 Feb 2001, eric clover wrote:

 is there anything that will convert a windows doc made with word into some
 kind of linux format? here at work(windows machine) i'd like to be able to
 make a doc and xfer it to home convert it to some linux format and print it
 out on my home(linux) machine.

Abiword might.. dont know..

applix will import Word files into applix format...  then you can export
them to other formats... but it doenst always work as well as can be
expected.

beyond that, I dont know of any others...





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Lets get the mail footer changed (Out of office)

2001-02-07 Thread Jeff Lane

On Wed, 7 Feb 2001, John Marlovits wrote:
 Agreed. However, just about every other mailman mailing list I'm on sends out a
 monthly reminder with this info. It would be NICE if RedHat would send out this
 info, however I know there will ALWAYS be some people who can't be bothered to
 RTFM!:-(

Ummm...  I get that message from mailman... shows all the Red Hat lists I
am on, and the passwords, etc  and how to unsubscribe...

and could ya cut all the extraneous stuff when you reply?  Its almost like
getting letters from AOHell users...

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Redhat Exam

2001-02-06 Thread Jeff Lane

www.redhat.com

On Tue, 6 Feb 2001, Selim Jahangir wrote:

 Dear All
 Where can I find information about Red Hat Certfication Exam ?



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Redhat Exam

2001-02-06 Thread Jeff Lane

On Tue, 6 Feb 2001, Vineeta wrote:

 Is there an online exam for Redhat certification?
 And,if yes,which are the sites?
 Secondly,in case we need to physically go and give the exam at a
 particular location,then,how do we find out which all places it is
 hosted in?

No... there isnt.  Teh only "Official RCHE Exam" is taken at an official
test site.. which means Durham NC, or some of the other remote exam sites
out there.

go to www.redhat.com for info.


-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obselete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"Ignorance can be cured,
But Stupidity is forever."
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: How to Setup Tcpdump to nail x-girlfriend?

2001-02-02 Thread Jeff Lane

On Fri, 2 Feb 2001, Calamity wrote:

 PHD wrote:
  Also, x-girlfriend is a cetified witch and I would
  like to figure out how to intercept her email.

Just a side note, unless you own the server that is sending and recieving
the mail for this girl,  that is at least somewhat illegal.

And even if you do own the mail server, its still a questionable practice,
without having a truely valid reason other than "my ex is a witch"





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: How to Setup Tcpdump to nail x-girlfriend?

2001-02-02 Thread Jeff Lane

On Fri, 2 Feb 2001, Michael R. Jinks wrote:

 I may have read wrong, but I think he's trying to intercept mail --
 like, for reading, not for sending to the bit bucket.

 If that's the case, then that is most definitely not playing fair.
 Network managers, legal departments, and HR managers all take an
 exceedingly dim view of such things, not to mention the general ethics
 of systems administrators.  It's just wrong, no matter what somebody may
 have done, to intercept their private conversations.  It is even more
 wrong if you happen to be root somewhere on the network; root users are
 vested with an extra responsibility, even if nobody has ever told you
 so, to play extra-cautiously around the network.

 The things that PHD wants to do are exceedingly easy for a root user
 given the right kind of network; knowing how, and even sharing the
 information on how, is something that I believe all should be free to
 do; but actually doing so is the highest of crimes in the networked
 world, where privacy is rapidly being eroded from all sides as it is.

Definitely, I agree with you.  I think that information should be shares,
(part of the reason I support FSF, EFF and 2600).  However, I wouldnt be
the one to give him this information.  He should read a book if he wants
to know that badly...  two reasons:

a: Its easy to get someone to tell you how to do something, but you learn
so much more if you figure it out on your own.

b: since it may be illegal, and is definitely frowned upon, while the info
should be shared, I would never give such info to someone who asked like
he did.  He basically said, I want to intercept someones mail... how do I
do it?

So I already know that his intentions are not just for education or
exploration...

oh well..

my 3 cents (inflation adjusted)

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: INIT :ld x respawning too fast : disabled for 5 minutes

2001-02-01 Thread Jeff Lane

On Wed, 31 Jan 2001, Mikkel L. Ellertson wrote:

 Without knowing the program that initd is complaining about, it is hard
 to complaining about, it is hard to give a more definite answer.

Umm thats the messages you get when X bombs out, X as in Xwindows...

usually this is caused by an XFS problem, or some other related issue...
changing the permissions on /tmp will do this also.

He needs to check and make sure that XFS is running, adn that permissions
are set correctly on /tmp (should be 777)

I am sure that there are other causes as well, but these are the two that
I can think of right now...

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Latency

2001-02-01 Thread Jeff Lane

On Wed, 31 Jan 2001, Mike Burger wrote:

 Thanks for the reminder.  It's actually /etc/host.conf.

Yes, it is...

But it wont do you a bit of good if your /etc/hosts file doenst show the
IP and hostname(s) for each machine on the network you wish to have
connections to.  Unless, of course, you are running a DNS server.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Gnapster

2001-01-31 Thread Jeff Lane

Assuming you are downloading mp3s, you need an mp3 player like xmms to
play them.

On Tue, 30 Jan 2001, Ted Gervais wrote:

 I just downloaded the newest (latest) gnapster and it finally works. I can
 actually download files now.

 Now, I can't find how to play these files??  Can they be played from
 gnapster themselves?  If not what does one use to play them??




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Is this a virus? How do I find the sender?

2001-01-31 Thread Jeff Lane

On Tue, 30 Jan 2001, Glen Lee Edwards wrote:

 Do any of you know if this file is a virus file?

 MAPPJJMA.exe

 A client of mine received it from an unknown source.

so delete it and go one with life...  easy enough...  never open strange
attachments, never take candy from strangers, blah blah... heh heh


 How do I find out what ISP owns the IP address: 206.228.67.73?

Heres the traceroute for that IP:

[root@silentbob /root]# traceroute  206.228.67.73
traceroute to 206.228.67.73 (206.228.67.73), 30 hops max, 38 byte packets
 6  POS6-0.BR2.DCA8.ALTER.NET (152.63.35.189)  13.294 ms  12.007 ms
12.211 ms
 7  sl-bb20-rly-6-0.sprintlink.net (144.232.18.169)  14.241 ms  14.250 ms
14.364 ms
 8  sl-bb21-rly-13-0.sprintlink.net (144.232.25.18)  14.831 ms  14.272 ms
15.246 ms
 9  sl-bb20-pen-10-0.sprintlink.net (144.232.9.241)  15.278 ms  15.197 ms
15.630 ms
10  sl-gw18-pen-0-0.sprintlink.net (144.232.16.250)  18.485 ms  17.684 ms
17.174 ms
11  sl-cumberlandtech-3-0.sprintlink.net (144.228.175.6)  75.891 ms
sl-cumberlandtech-13-0.sprintlink.net (144.228.175.118)  97.769 ms
sl-cumberlandtech-7-0.sprintlink.net (144.228.175.34)  93.533 ms
12  206.228.70.18 (206.228.70.18)  103.489 ms  92.351 ms  96.247 ms
13  206.228.71.119 (206.228.71.119)  108.904 ms  129.858 ms  80.006 ms
14  206.228.67.73 (206.228.67.73)  179.251 ms  195.647 ms  180.281 ms

the first 5 hops were left out (have to keep some secrets you know?)

but looks like it hits ALTER.NET then picks up on sprints network, then
goes to some place called cumberlandtech that is using a pipe from sprint,
then it goes to straight IPs...

couldnt find anything on the IPs, using ping, ssh, telnet, etc...  but a
nslookup on www.cumberlandtech.com gives me this:

Name:pop3.cumberlandtech.com
Address:  206.72.152.67
Aliases:  www.cumberlandtech.com

nothing useful with a portscan, and going to www.cumberlandtech.com gives
me an interesting site with some contact address and phone...  you may
wnat to email these, or call them to find out, if it is that important to
you:

Cumberland Technologies Inc., Home of Cumberland Casualty and Surety
Company
   For more information, E-Mail us at:
[EMAIL PROTECTED]
 OR CALL TOLL FREE:(800) 723-0171
PHONE:(813) 885-2112
 FAX:(813) 885-6734
 4311 West Waters Avenue #401
 Tampa, Florida 33614

But FWIW, this is probably another email virus, or something of that
nature, and really, you should just delete it and go on.  but there's the
info if you want to follow up on it.

cheers

-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obselete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"Ignorance can be cured,
But Stupidity is forever."
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: USB Port

2001-01-31 Thread Jeff Lane


Look in /dev/usb for a list of all the ports that usb replicates..  like:

lp0, mdcX, scannerX, ttyUSBX

etc etc...

so, while I dont have any USB devices, I would guess that the actual
device would be either /dev/usb/devicename, or it would be a symlink in
/dev that points to the /dev/usb device entry.


On Wed, 31 Jan 2001, Selim Jahangir wrote:

 Dear All,

 Linux /Unix treats serail ports COM1 = ttyS0

 but what about USB port. How do linux know the USB port?


 Thanks
 selim



 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list


-- 
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)
Jeffrey D Lane, RHCE, RHCX, EMT-ST
Geek, Star Wars Fanatic, and collector of
obselete technologies.

2600 Meridian Parkway   (919) 547-0012x168
Durham, NC 27713(888) REDHAT1x168

"Ignorance can be cured,
But Stupidity is forever."
(-0-)  (-0-)  (-0-)  -0-  (-0-)  (-0-)  (-0-)



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Latency

2001-01-31 Thread Jeff Lane

Since this is happening only on the first connect or two, I would imagine
you dont have the hosts files set up, or DNS is not running, or set up
properly.

I would imagine that its a DNS problem, causing the clinet machine to send
a broadcast looking for the target machine... then after it gets a reply,
the client machine adds that hosts IP to its internal cache, soem magic
happens, and all is well after that.

but I would say that you either dont have DNS running, or you dont have a
DNS server properly configured.







___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Stupid RPM question

2001-01-22 Thread Jeff Lane


Go here:

http://www.redhat.com/support/errata/RHEA-2000-051-01.html

that will give you the correct packages to upgrade RPM to the new version

On Sun, 21 Jan 2001, David Trollope wrote:

 Hi,

 I'm probably going to ask a very stupid question, so before I get flamed, I
 have looked at some FAQs, and I have tried downloading different
 versions...but to no avail. Please don't slam me, just point the misguided
 soul in the right direction. :-)

 I have RedHat 6.1 running, and downloaded some rpms from rpmfind. Now when I
 try to install them, it complains about the rpms being a later version than
 the rpm tool can handle. Easy I thought, I'll download the latest rpm
 package. Except, that needs the new tool to unpackage itself. Seems a
 little dumb to me? I wonder what I'm missing.

 I don't want to go compiling it myself - where can I download an rpm package
 with the new rpm binary in it for the old rpm??? Did that make sense?

 Cheers
 Dave




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: linuxconf

2001-01-19 Thread Jeff Lane

On Fri, 19 Jan 2001, Evandro Fernandes Giovanini wrote:
 
  Yes. And even if it is installed, it is easy to uninstall it using 'rpm
  linuxconf'.
 
 
 i install a base installation from ftp/http and linuxconf is not 
 unselectable; i wish it was.


It is... try doing a custom install. when you get to the part where you
choose Workstation, Server, Custom, Upgrade, blah blah blah, choose
Custom.  Then you can deselect it.

otherwise, you can rpm -e linuxconf after install

and if this is part of a kickstart script, you can write the script to
only install what you wnat installed, or you can add the rpm -e linuxconf
command as part of the post install config stuff in the KS script.

cheers



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: linuxconf

2001-01-19 Thread Jeff Lane

On Fri, 19 Jan 2001, Christopher McCrory wrote:

 Hello...
   Are you sure about that? IIRC anything in the 'base' portion of comps is 
 non optional.  IIRC there is a gnome-linuxconf GUI for linuxconf that is 
 un-checkable, but the core package is still installed.


Ummm...  you may be right about that...  I may have been thinking about
the gnome-linuxconf package...





___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: Ramen worm

2001-01-19 Thread Jeff Lane


go to www.redhat.com/errata and look at the 6.2 errata.

the wu-ftp errata there is the fix for this.

you could also get the newer 2.6.1 wu-ftp that ships with RH7.

Or you could also do what Grendel said elsewhere and try ProFTP.

all solutions should work.

cheers


On Thu, 18 Jan 2001, tc lewis wrote:

 
 does anyone know specifically what patch to 2.6.0 takes care of this
 problem?  i see a "wu-ftpd-2.6.0-security.patch" in the source rpms.  is
 that the one, or is it something else?
 
 the reason i'm asking is because one of my machines runs redhat 5.2 yet.
 i have wu-ftpd-2.6.0-2.5.x (from 5.2 updates) on there right now, which
 appears to include the same "wu-ftpd-2.6.0-security.patch" file as
 wu-ftpd-2.6.0-14.6x (from 6.2 updates) does, but not some of the others.



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: bash oddity

2001-01-19 Thread Jeff Lane

On Thu, 18 Jan 2001, Hal Burgiss wrote:

 
 Is the below expected behavior? or bug? Values assigned to variables
 within the loop, are not visible outside the loop. Using something
 like 'while true' works as I would expect.
 
 
 #!/bin/bash
 ## script: testing
 ## test variable visibility
 
 num=0
 echo 1  tmp
 
 cat tmp |while read line ; do 
  
  num=1
  echo $num
 
 done
 
 echo $num
 
 
 #--- eof testing
 
 
 [hal@feenix hal]$ testing
 1
 0
 
 
 [hal@feenix hal]$ bash -version
 GNU bash, version 2.04.11(1)-release (i386-redhat-linux-gnu)
 Copyright 1999 Free Software Foundation, Inc.


I would imagine that this is because num is resetting to 0.  in the while
loop you set num = 1 then echo $num...  then after done, I would imagine
that num is being reset to its original value...  

just a guess...  

All you did was reinitialize the variable.  if you comment out the num=0
line, you get this:

[10:32:59][jlane@]$ ./foo.bar 
1

(I renamed it to foo.bar)





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-19 Thread Jeff Lane

On Thu, 18 Jan 2001, Michael H. Warfield wrote:
   Granted that RedHat's record with regard to security and
 upgrades like this has been an abysmal embarrasment.  But it's still
 the only shot you've got.  As low as it is, you can only do

  In comparison to what?  

first, the only reason this thing looks for wu-ftp and rpm.statd in 6.2
and LPRng in 7, is that these are KNOWN exploits, and have been known for
some time.

the script kiddies are not hitting you with something new and
scary... rather something old.  Now...  this just came out this
week...  probably been in circulation since last week or the week before,
but not more than that.

So.. that would put it somewhere around first week of Jan.

Funny, there have been fixes for these exploits since ummm  June 2000.

and lets see...Who is vulnerable to this exploit??  well, SecFocus says
the following:

Caldera OpenLinux 2.4
 Caldera OpenLinux 2.3
 Caldera OpenLinux 2.2
 Connectiva Linux 5.0
 Connectiva Linux 4.2
 Connectiva Linux 4.1
 Connectiva Linux 4.0es
 Connectiva Linux 4.0
 Connectiva Linux 3.0
 Debian Linux 2.3
 Debian Linux 2.2
 Debian Linux 2.1
 HP HP-UX 11.4
 HP HP-UX 11.0
 HP HP-UX 10.26
 HP HP-UX 10.24
 HP HP-UX 10.20
 HP HP-UX 10.16
 HP HP-UX 10.10
 HP HP-UX 10.0.1
 RedHat Linux 6.2 sparc
 RedHat Linux 6.2 i386
 RedHat Linux 6.2 alpha
 RedHat Linux 6.1 sparc
 RedHat Linux 6.1 i386
 RedHat Linux 6.1 alpha
 RedHat Linux 6.0 sparc
 RedHat Linux 6.0 i386
 RedHat Linux 6.0 alpha
 RedHat Linux 5.2 sparc
 RedHat Linux 5.2 i386
 RedHat Linux 5.2 alpha
 RedHat Linux 5.1
- Standard  Poors ComStock 4.2.4
 RedHat Linux 5.0
 Slackware Linux 7.1
 Slackware Linux 7.0
 TurboLinux Turbo Linux 4.0
 TurboLinux Turbo Linux 3.5b2
 Washington University wu-ftpd 2.6
 Washington University wu-ftpd 2.5
+ RedHat Linux 6.1 i386
 Washington University wu-ftpd 2.4.2academ[BETA1-15]
+ Caldera OpenLinux Standard 1.2
 Washington University wu-ftpd 2.4.2academ[BETA-18]
+ RedHat Linux 5.2 i386

Oh my GOD, is that DEBIAN in there?  

Looks like just about every major distro.. except maybe Mandrake, but
Mandrake at that time was still very based on Red Hat.  


 published  June 22, 2000

So security Focus published this, via bugtraq on June 22 2000.

and Red Hat released a security errata to fix this exploit on. . .

23-Jun-2000  wu-ftpd (RHSA-2000:039-02)  wu-ftpd remote root exploit(SITE EXEC) fixed 

So... there was a roughly 24 hour period where you would have been
caught.  hmmm

Now lets look at that pesky rpc.statd exploit that the kiddies are looking
for:

Security Focus says rpc.statd Remote Format String Vulnerability
bugtraq id 1480
 objectrpc.statd (exec)
 class Input Validation Error
 cve   CVE-2000-0666
 remoteYes
 local Yes
 published July 16, 2000


Now... who is vulnerable to this exploit???
 vulnerable
   Connectiva Linux 5.1
   Connectiva Linux 5.0
   Connectiva Linux 4.2
   Connectiva Linux 4.1
   Connectiva Linux 4.0es
   Connectiva Linux 4.0
   Debian Linux 2.3 sparc
   Debian Linux 2.3 powerpc
   Debian Linux 2.3 alpha
   Debian Linux 2.3
   Debian Linux 2.2 sparc
   Debian Linux 2.2 powerpc
   Debian Linux 2.2 alpha
   Debian Linux 2.2
   RedHat Linux 6.2 sparc
   RedHat Linux 6.2 i386
   RedHat Linux 6.2 alpha
   RedHat Linux 6.1 sparc
   RedHat Linux 6.1 i386
   RedHat Linux 6.1 alpha
   RedHat Linux 6.0 sparc
   RedHat Linux 6.0 i386
   RedHat Linux 6.0 alpha
   S.u.S.E. Linux 7.0
   S.u.S.E. Linux 6.4ppc
   S.u.S.E. Linux 6.4alpha
   S.u.S.E. Linux 6.4
   S.u.S.E. Linux 6.3 ppc
   S.u.S.E. Linux 6.3 alpha
   S.u.S.E. Linux 6.3
   Trustix Trustix Secure Linux 1.1
   Trustix Trustix Secure Linux 1.0


Why, thats an awful lot of debian and Suse in there, not just REd
Hat.  Ummm  I thought Red Hat was so bad with security???

Well, rpc.statd bug reported on july 16/  When did RH release the fix?

Synopsis   

Re: glibc update?

2001-01-18 Thread Jeff Lane

On 17 Jan 2001, Trond Eivind Glomsrd wrote:

 Mike Burger [EMAIL PROTECTED] writes:
  linux:~#rpm -U glibc-2.2-12.i386.rpm
  error: failed dependencies:
  glibc-common = 2.2 is needed by glibc-2.2-12
  /usr/bin/getent   is needed by stunnel-3.10-2
  
  linux:~#rpm -i glibc-common-2.2-12.i386.rpm
  error: failed dependencies:
  glibc  2.2-12 conflicts with glibc-common-2.2-12


this has been popping up a lot...  using --nodeps may help, or --force if
you absolutely have to...

but there is a bug report on this at this address:

http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=24295

please feel free to post your comments to that bug report.  

cheers




___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Linux Certs?

2001-01-18 Thread Jeff Lane

On Wed, 17 Jan 2001, John Aldrich wrote:

 On Wed, 17 Jan 2001, you wrote:
  
  
  You take all three parts in order to pass the test.  You need to score at
  least 240 of 300 points, nothing lower than a 50 on anyone of them though.
  To throw in my two cents, it was indeed a stern test, but lots of fun :)
  
 So...can you do it like you do with Novell and take part 1, go and study a bit
 and take part 2 and go study some more and take part 3? Or do you have to take
 'em all one right after the other?


No...  you have to take them all at one time...  you do part one and two,
then break for lunch, then take part three.

and Jeff Hogg is right, it is a hard test.  But it was fun, and it was
challenging.  If you are looking for an easy cert, then RHCE is not for
you, you have to know what you are doing before you get there, but the
classes, if you can afford to take them in one form or another, are rather
helpful and informative.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-18 Thread Jeff Lane

On Wed, 17 Jan 2001, Mike Burger wrote:

 The article doesn't appear to note the affected versions of rpc.statd and
 wu-ftpd that are affected...do you have any info on that?

wuftp is 2.6.0 and rpc.statd is the out of box version that comes with
6.2.

What that article fails to mention, and Slashdot actually got right for a
change, is that the ONLY boxes affected are 6.2 machines that have NOT
been updated with the various security and bug fix errata.  

same with the RH7 machines.  Teh RH7 vulnerability is with LPRng, and that
is only if you are using the box version of LPRng.

in essence, and with praise to /.,

the only machines caught by this worm, are then ones that are run by
administrators who dont bother keeping their machines updates with
security and bug patches.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-18 Thread Jeff Lane

On Thu, 18 Jan 2001, Leonard den Ottolander wrote:
  Then why does the article state that RedHat 7.0 is affected by the worm as 
 well? I thought these wu-ftp and rpc.statd issues were solved before the 
 release of 7.0.

because the script kiddies also threw in the original RH7 LPRng bug as
well.  but as I said in my other reply about this, anyone who has kept
their machine current with the latest errata for security and bugs should
be unaffected.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-18 Thread Jeff Lane

On Thu, 18 Jan 2001, Mike Burger wrote:

 The reason that the article states that it can affect 7.0 is that 7.0
 ships with wu-ftpd 2.6.0, and the earlier version of rpc.statd.

No... its LPRng for 7.  the wu-ftp that ships with 7 is 2.6.1-6

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-18 Thread Jeff Lane

On Thu, 18 Jan 2001, Toms Garca Ferrari wrote:
 Any advices for the future? How often shall I check for updates / fixes /
 patches and so on?


Keep current on all the errata.  And heres a way to make that
easier. There is the Red Hat network...  and also up2date

the new up2date and up2date-gnome have a -u option which automatically
gets and installs all new errata and updates from the redhat sites.

taht way you can just run it, and go.  and actually, you could set it up
as a cron job to run each night or each week at some odd hour.

well.. its a thought.

cheers



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: ssh Server

2001-01-18 Thread Jeff Lane

On Fri, 19 Jan 2001, Matthew Melvin wrote:

 Hi Mark,
   Hmm... you definitly need the 1st one.  You need the second one if
 you want to use ssh to log into other servers /from/ your redhat box.  You

He also needs the openssl packages as well, as they have some of the files
that the ssh server needs for authentication and encryption.





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Port 6688 (napster?)

2001-01-18 Thread Jeff Lane

On Thu, 18 Jan 2001, John Aldrich wrote:

 On Thu, 18 Jan 2001, you wrote:
  Hi!
  
   I am seeing a lot of denied connections to port 6688 on a friends firewall. 
  Some kids installed napster on one of his machines yesterday, and all these 
  denies are in the period that they downloaded mp3's, so I think these events 
  are related. I looked over some portlists, and for napster port 6699 is 
  mentioned, not 6688.
   So I am wondering if it is default behaviour for napster to try to establish 
  a connection to the requesting machine, and if it indeed uses this port 6688.
 
 That would be nice to know, 'cause I'm on an ISDN router and would like to
 share a few of my files, but can't apparently because the router is blocking
 that port... 
   John


what client?  I was using the latest gnapster which allows port
selections.  I think the default is 6699, but you can change it in that
client at least. so it may be that they changed the port.  I didnt notice
any connects when I was on the napster servers...  but it could be a data
connection request for people who are requesting files from your
machine...





___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Ramen worm

2001-01-18 Thread Jeff Lane


Maybe.  AFAIK, the only wu-ftp that is affected is the version that is
right off the install CDs for 6.2.

which is wu-ftpd-2.6.0-3.i386.rpm

I would imagine that the one listed on the errata page is probably
safe.  You could also try upgrading to 2.6.1, but I dont knwo if that will
break any dependencies anywere else (i.e. anonftp, or any libs that may be
deprecated or incompatible with 2.6.1 that may exist on a 6.2 install.)



On Thu, 18 Jan 2001, Peter Peltonen wrote:

 So wu-ftpd 2.6.0 is infected?
 
 When I look at RH Errata, I can see an update for wu-ftpd, but that is:
 
 wu-ftpd-2.6.0-14.6x
 
 and I am running that version. Am I vulnerable for the attack?
 



___
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [Fwd: ghostview has problems with s3virge driver]

2000-11-09 Thread Jeff Lane

On Wed, 8 Nov 2000, Matt Wilson wrote:

 Huh?  The X server *is* running as root, Xwrapper runs it that way.
 Adding a setuid bit would do the same thing.

Actually, in order for me to get X 4.0.1 (using XFree86 and not
Xwrapper) to run when starting it as a non-root user, I had to chmod +s
XFree86.  it was already set as group/owner root.  but still would not run
for a non-root user.  adding the s bit to the permissions made it runable
as a nonroot user.

Just my 2 cents worth.. I found this out yesterday while setting up
dualhead on my G400...

cheers



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list