Re: When does one need a real server?

2002-04-19 Thread Bogdan Costescu

On Fri, 19 Apr 2002, John Summerfield wrote:

 Assuming 100 Mbit LAN, how does one decide whether one needs an 
 expensive server with high-performance SCSI? What are the guidelines?
 
 Given a basic contemporary Celeron with a recent ATA-100 disk drive 
 performing at (according to hdparm) 30 Mbytes/sec or better, it seems 
 certain to me that the LAN is slower than the drives.

The result from hdparm is not a good indication for a file server as it 
comes from a _linear_ read. This was already mentioned in the thread about 
file systems, but I will repeat and extend it here: for a multiuser system 
(or a file server which acts on behalf of several users at the same time), 
several files are open at the same time and different places on the disk 
are accessed, so a good seek time is also important. Depending on the 
amount of intelligence for ordering these operations on the disk 
controller or in software (OS), the impact of seek time can vary. 
Another important factor is the amount of cache (both at OS level and 
on the controller) and the way it is used - that's why Western Digital 
introduced an 8 MB cache (instead of industry standard 2 MB) on some of 
its higher end IDE disks and typically hardware RAID controllers have some 
16-128 MB cache.

 For that matter, any hints for just how many clients such a basic 
 server can support? Yes, I know, It depends. What do I need to know 
 and measure to be sure of putting in a box that will do the job?

Tools like bonnie and iozone can give you a better view about what you can 
expect from your disk; they operate at a higher level than hdparm, so the 
results include the influence of the file system - usually that's what you 
want as the file system (and not the raw disk) is exported.

The next step is to run them on the clients (or a Windows equivalent, 
don't ask me for references :-)) and watch the server. You can measure the 
network usage (f.e iptraf) and see if the network usage comes close to the 
maximum; if that's the case, then the network is probably the bottleneck 
and your disk subsystem is good enough. If not...

-- 
Bogdan Costescu

IWR - Interdisziplinaeres Zentrum fuer Wissenschaftliches Rechnen
Universitaet Heidelberg, INF 368, D-69120 Heidelberg, GERMANY
Telephone: +49 6221 54 8869, Telefax: +49 6221 54 8868
E-mail: [EMAIL PROTECTED]



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



Re: Alternative file systems? Was Re: Better File systems?

2002-04-19 Thread Eric Sandeen

On Thu, 2002-04-18 at 21:04, Dan Hollis wrote:

 xfs is still battling corruption problems, and there is still the nulls 
 in files problem. while xfs core code may be mature the linux port is 
 not. i wouldn't suggest it for any production systems at the moment.
 (i had big problems with xfs on several production machines)

Dan, you reported a problem back in January with your xfs filesystem, 
haven't heard from you since.  If you are still having problems, please 
let us know, we have not had similar reports from anyone since then.  As
far as I know, there are no outstanding corruption issues with xfs.

re: the nulls in files problem, it's a fact of life that on a metadata
journaling filesytem, if you lose power, you lose data.  In the case of
xfs, synchronous transactions used to mean that you sometimes wound up
with files with a length, but no data if you crashed before a sync. 
Most of these transactions have now been made asynchronous, and you're
much more likely to just get your old data back after a crash, since
metadata is not forced out before file data.

FWIW, There are many people who _would_ recommend XFS for production
machines, including those listed at
http://oss.sgi.com/projects/xfs/xfs_users.html

Just had to step in to defend our filesystem a bit.  :)  If you're still
having problems, please do let us know so we can address them.

-Eric

-- 
Eric Sandeen  XFS for Linux http://oss.sgi.com/projects/xfs
[EMAIL PROTECTED]   SGI, Inc.



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



Re: Alternative file systems? Was Re: Better File systems?

2002-04-19 Thread Bill Crawford

On 19 Apr 2002, Eric Sandeen wrote:

 re: the nulls in files problem, it's a fact of life that on a metadata
 journaling filesytem, if you lose power, you lose data.  In the case of
 xfs, synchronous transactions used to mean that you sometimes wound up
 with files with a length, but no data if you crashed before a sync. 
 Most of these transactions have now been made asynchronous, and you're
 much more likely to just get your old data back after a crash, since
 metadata is not forced out before file data.

 Is this now equivalent to ext3's default ordered data mode then?
It sounds like this would make xfs more reliable than reiserfs for me.




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



Re: Alternative file systems? Was Re: Better File systems?

2002-04-19 Thread Eric Sandeen

On Fri, 2002-04-19 at 11:33, Bill Crawford wrote:

  Is this now equivalent to ext3's default ordered data mode then?
 It sounds like this would make xfs more reliable than reiserfs for me.

Not exactly.

While ext3's ordered data mode enforces data before metadata, the
change I described in xfs removes forced metadata before data cases,
but does not enforce the inverse.  I.e. xfs does not have strict data
before metadata ordering, but it no longer forces the undesirable
metadata before data ordering in most cases.

Hm, does that make sense? :)

-Eric

-- 
Eric Sandeen  XFS for Linux http://oss.sgi.com/projects/xfs
[EMAIL PROTECTED]   SGI, Inc.



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



Re: Alternative file systems? Was Re: Better File systems?

2002-04-19 Thread Bill Crawford

On 19 Apr 2002, Eric Sandeen wrote:

 On Fri, 2002-04-19 at 11:33, Bill Crawford wrote:
 
   Is this now equivalent to ext3's default ordered data mode then?
  It sounds like this would make xfs more reliable than reiserfs for me.
 
 Not exactly.
 
 While ext3's ordered data mode enforces data before metadata, the
 change I described in xfs removes forced metadata before data cases,
 but does not enforce the inverse.  I.e. xfs does not have strict data
 before metadata ordering, but it no longer forces the undesirable
 metadata before data ordering in most cases.
 
 Hm, does that make sense? :)

 Absolutely :o)

 I'm curious because I've had the odd problem with garbage data ending
up in open files at the time of a crash.  Fortunately the crashes are
infrequent these days, usually associated with 3D games; but it can be
annoying to find GNOME won't start up properly or some app crashes due
to garbage in config files.

 -Eric




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



wget auth probs

2002-04-19 Thread Bret Hughes

I have a script that I am trying to port to a new content provider for
up but wget is puking with the following: 


[bhughes@bretsony scripts]$ wget -S -N -v
http://username:[EMAIL PROTECTED]/elevcomm/ECLocalNews.asp
--01:56:56-- 
http://username:password@www.tulsaworld.com/elevcomm/ECLocalNews.asp
   = `ECLocalNews.asp'
Connecting to www.tulsaworld.com:80... connected!
HTTP request sent, awaiting response... 401 Access Denied
2 Server: Microsoft-IIS/5.0
3 Date: Fri, 19 Apr 2002 06:54:21 GMT
4 WWW-Authenticate: Negotiate
5 WWW-Authenticate: NTLM
6 WWW-Authenticate: Basic realm=www.tulsaworld.com
7 Content-Length: 4033
8 Content-Type: text/html
9 
Unknown authentication scheme.

Are there any scriptable tools that I can use to talk to this IIS server
and pass it a username and password?

I also tried lwp-request to no avail.

Any tips appreciated.

Bret



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



Re: recover queue messages?

2002-04-19 Thread Lewi

I have erase all header until To:... header, I change this to user on my server it self
but I received error because undisclosed user, I think To header can't be read with
that commmand or what I'm erase is wrong in that file :)


On Thu, Apr 18, 2002 at 07:37:27AM -0400, Anthony E. Greene wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Thu, Apr 18, 2002 at 04:49:40PM -0400, Lewi wrote:
 I have a message queue with a large size, I send it to my friends' email
 at lycos, the problem is I see on my maillog message status is defer, how
 I can recover it from queue and send it again using another server,
 because my friend need it fast and I don't have a backup email.
 
 As root, copy the queue files to your home directory and change the
 ownership. Then use vim or some other text editor to delete all headers
 except: From, To, Date, Subject, MIME-Version, and Content-Type.
 
 Then change the To header to your friend's alternate address and save the
 file. Then send the message by feeding it to sendmail:
 
   /usr/sbin/sendmail -v -i -U -t  messagefile
 
 You will be able to watch as sendmail attempts delivery. If it works, you
 can delete the files from the queue.
 
 
 Tony
 - -- 
 Anthony E. Greene mailto:[EMAIL PROTECTED]%3E
 OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D
 AOL/Yahoo Chat: TonyG05 HomePage: http://www.pobox.com/~agreene/
 Linux. The choice of a GNU generation http://www.linux.org/
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.0.6 (GNU/Linux)
 Comment: Anthony E. Greene [EMAIL PROTECTED] 0x6C94239D
 
 iD8DBQE8vq/apCpg3WyUI50RAvsaAJ9fS+gbBD52nzbhVOa+9HAYi1EjawCeNL6r
 6UCLWoJCHnDyhTi65TvF6d0=
 =6Rzy
 -END PGP SIGNATURE-
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list

-- 
ichtus
--
Lewi Supranata .K
ICQ: 50643061



msg76782/pgp0.pgp
Description: PGP signature


Re: recover queue messages?

2002-04-19 Thread Lewi

thank you all, I found that
when I try to fill relayhost(I read that in main.cf)  with another server in mydomain 
which have a faster connection queue mail is gone.

what is the different between this with content in transport map? is that same?


On Thu, Apr 18, 2002 at 09:45:50AM -0400, Mike Burger wrote:
 In postfix, you need to add to the main.cf:
 
 transport_map = hash:/etc/postfix/transport_map
 
 In your /etc/postfix/transport_map file, you should have a line that reads 
 like so:
 
 domain.of.recipient.comp smtp:mailserver.you.wish.to.relay.through
 
 Then, as root, run postmap hash:/etc/postfix/transport_map
 
 Lastly, as root, run service postfix reload to get postfix to reload the 
 config, and make use of the new transport map.
 
 Here's the potential problem:
 
 You'll have to make sure that mailserver.you.wish.to.relay.through will 
 let you relay through them.
 
 If you can not relay through them, the message will just come back with a 
 relay denied (which can be good...the original message will wind up in 
 your inbox, as part of the reject, and you can reforward it to a different 
 email address).
 
 However, assuming that mailserver.you.wish.to.relay.though allows you to 
 send the message, you may encounter another problem.  If, as I suspect and 
 already noted, the problem is that Lycos' server is rejecting the message 
 due to size restrictions, then the message will simply sit in the deferred 
 on that server, instead of yours.
 
 On Thu, 18 Apr 2002, Thorsten Strusch wrote:
 
  Lewi wrote:
  
   On Thu, Apr 18, 2002 at 12:00:46PM +0200, Thorsten Strusch wrote:
Hi Lewi,
   
Lewi wrote:

 I have a message queue with a large size, I send it to my friends' email at 
lycos,
 the problem is I see on my maillog message status is defer, how I can 
recover it from
 queue and send it again using another server, because my friend need it fast 
and I
 don't have a backup email.
   
if you use sendmail, you can modify your /etc/mail/mailertable:
   
your-friends-domain.tld  smtp:[192.67.198.2]
   
(substitute 192.67.198.2 with your mailserver ;-p )
   
don´t forget to rebuild the mailertable.db
makemap hash mailertable  mailertable
   
then you can call sendmail:
   
# sendmail -q -v
And you hopefully see sendmail delivering the mail.
   
   I'm using postfix, how I can do that with postfix
   I found a queue file in /var/spool/postfix/defer/..
   but how I can read it again on a email way, not in binary
   I use imp3.0 to sent email
  
  oh, I´m sorry, I´m not firm in postfix or imp3 :-(
  
  perhaps you ask google.com/linux 
  perhaps postcat can help you
  
  regards
  Thorsten
  
  
  
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list
  
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list

-- 
ichtus
--
Lewi Supranata .K
ICQ: 50643061



msg76783/pgp0.pgp
Description: PGP signature


Re: wget auth probs

2002-04-19 Thread Ed . Greshko

On 19 Apr 2002, Bret Hughes wrote:

 I have a script that I am trying to port to a new content provider for
 up but wget is puking with the following: 

Have you tried the wget parameters

   --http-user=user
   --http-passwd=password

as described in man wget?

Ed



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



password synchronization

2002-04-19 Thread vincent li

hi, all

i am maintaining more than 20 server's password file, 
regularly, i need to change every server's root
account password every 1 month, it is a heavy task if
i login in every server to change root password
manually. is there a way that i only need to change
one server's root password and the other servers
automatically synchronize the changed root passorwd? i
read the NIS,and LDAP document, it seems they both can
do this work.is there a easy step guide to set up this
service.  


__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/



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



Re: prob with mount -t smbfs

2002-04-19 Thread Thorsten Strusch

Hi Patrick,

Patrick Nelson wrote:
 
 RH72 WLU (w/ latest updates)
 
 When I attempt:
 
  mount -t smbfs -o username=administrator //mewinblz/loc$ /mnt/msmp
 
 on a one of my systems I get the error:
 
  mount: wrong fs type, bad option, bad superblock on //mewinbloz/loc$, or to
 many mounted file systems
 
 I have an alias that is part of my log-in .bashrc so I'm not getting a
 misspelling.  I have tried this on multiple systems, all RH72 WLU, and it
 works fine on those.  On said failing system the output of mount looks like
 this:

the syntax is correct, but the user is named Administrator

And you are sure, that there is a share named loc$ ?

# smbclient -L tst -U Administrator
shows you the available shares.

hth
Thorsten



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



Re: password synchronization

2002-04-19 Thread Thorsten Strusch

Hi Vincent,

vincent li wrote:
 
 hi, all
 
 i am maintaining more than 20 server's password file,
 regularly, i need to change every server's root
 account password every 1 month, it is a heavy task if
 i login in every server to change root password
 manually. is there a way that i only need to change
 one server's root password and the other servers
 automatically synchronize the changed root passorwd? i
 read the NIS,and LDAP document, it seems they both can
 do this work.is there a easy step guide to set up this
 service.

there could be a much more easy way.
If you have a workstation with KDE3.0 running, you could
open a terminal, log into each server via ssh and than 
assign the input of one console to all the others.

hth
Thorsten



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



Bug in make dep or make bzImage compiling kernel.

2002-04-19 Thread Kjetil Tjensvold

There is a bug in make dep or make bzImage when
compiling the rh 7.2 2.4.7-10 kernel.
If you disable File systems /devpts and keep unix98
PTY checked to y ,you will get an error message during
boot saying mounting local filsystems, failed due to
devpts is not supported by the kernel.
It has no effect if you go back into xconfig and and
in File systems /devpts check yes for that filesystem.
Where do you report such bugs??

=
Investigating the Norwegain 4.th Secret Service
The multiheaded animal.
http://hjem.sol.no/altiett/knut_ove_hauge_kuren.htm

__
Sjekk snørapporter...
fra 500 ski-destinasjoner i Europa
på http://no.snow.yahoo.com/



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



postdrop error?

2002-04-19 Thread Lewi

I use rh7.1 with 
Name: postfix  Relocations: (not relocateable)
Version : 20011125  Vendor: Red Hat, Inc.
Release : 1SASL Build Date: Tue 27 Nov 2001 09:33:25 AM EST
Install date: Tue 09 Apr 2002 09:49:17 AM EDT  Build Host: 
stripples.devel.redhat.com
Group   : System Environment/DaemonsSource RPM: postfix-20011125-1SASL.src.rpm
Size: 3271916  License: IBM Public License -- see 
LICENSE for details
Packager: Red Hat, Inc. http://bugzilla.redhat.com/bugzilla
URL : http://www.postfix.org/
Summary : Postfix Mail Transport Agent

and I use pine-4.44-1.71.0, now the problem is when sending invoking by pine
there is an error write to queue dir, and when set smtp in pine conf manually
it can be sent, it said in pine conf if smtp is empty pine use sendmail command to 
sending email
so I look man sendmail, in there said that sendmail automatic use postdrop if 
directory in
/var/spool/postfix/maildrop don't world writeable, I check using reguler user running 
postdrop
, It can running successfully, so what's the problem?

I change permission in /var/spool/postfix/maildrop to have world writeable, and blam 
pine
can sending email again, why? is that any problem with postfix and pine?

-- 
ichtus
--
Lewi Supranata .K
ICQ: 50643061



msg76789/pgp0.pgp
Description: PGP signature


Still no ping from 127.0.0.1

2002-04-19 Thread Kjetil Tjensvold

Still no ping from 127.0.0.1 although the loopback
device is up.
I get an error message on boot up, the line after
Starting lo .OK
Cant perform dump , access denied.
Do it has anything to do with the firewall highest
level I have???

=
Investigating the Norwegain 4.th Secret Service
The multiheaded animal.
http://hjem.sol.no/altiett/knut_ove_hauge_kuren.htm

__
Sjekk snørapporter...
fra 500 ski-destinasjoner i Europa
på http://no.snow.yahoo.com/



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



Re: recover queue messages?

2002-04-19 Thread Anthony E. Greene

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Apr 19, 2002 at 02:07:16PM -0400, Lewi wrote:
I have erase all header until To:... header, I change this to user on my
server it self but I received error because undisclosed user, I think To
header can't be read with that commmand or what I'm erase is wrong in
that file :)

There should be 6 headers left: From, To, Date, Subject, MIME-Version, and
Content-Type. The Date and Subject headers are optional, but if you
deleted any of the other 4 headers, the message may not be processed
properly by either sendmail or the recipient's mail client.

If you want to send the message to a user on your machine, make the To
address username@localhost.

What you really need is access to a web server or ftp server. Those are
the best ways to transfer large files.


Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]%3E
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05 HomePage: http://www.pobox.com/~agreene/
Linux. The choice of a GNU generation http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene [EMAIL PROTECTED] 0x6C94239D

iD8DBQE8v/6opCpg3WyUI50RAtoNAJ46hAYh6cWKgOkArE1xWD4zmxiXDQCgoWbx
+wFfjW3FkdtD+mMgRm2yUaQ=
=/jsY
-END PGP SIGNATURE-



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



Re: Unidentified Network Traffic

2002-04-19 Thread Ed Wilts

   I would not be surprised if you're getting hammered by port 80
   traffic.  Code Red and its ugly friends are still out there,
   merrilly trying to infect every server they can find.
 
  I can definitely attest to that.  Had Code Red trying to get in
  a few days ago on my port 80 ... still looking for M$

 SNIP

 Yep. I still get 3 to 10 hits a day from the critters.

If you only get 3-10 per day, you're lucky.  I've had 3914 hits since
Sunday!  That's an attack attempt every 2 minutes...

.../Ed

Ed Wilts
Mounds View, MN, USA
mailto:[EMAIL PROTECTED]




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



Re: regular expressions in bash

2002-04-19 Thread Bill Crawford

On 18 Apr 2002, Gordon Messmer wrote:

 On Thu, 2002-04-18 at 15:26, daniel wrote:
  i'm a perlgeek
  so i'm familiar with its style of regular expressions
  but when i'm trying to use one of those regular expressions in a find
  command,
  
  find /home/ -name (.Apple(.*))|(Network Trash
  Folder)|(TheVolumeSettingsFolder) -print0 | rm -rf
 
 Then tell find to use a regex search.  'man find' would tell you that
 that -regex argument is available, and what you want instead of -name.
 :)

 Oops.

 I completely missed that one ... how long's that been there?

 I'm guessing it's probably always been there, like Kosh.  I'm sooo
embarrassed now :o)




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



Re: up2date is driving me mad!

2002-04-19 Thread M.Schild



Mmmm, I need my phone line :-(
Maryse

may be you should have let it tun for three days like I did (apparently) 
and all will work as it should! :)


 may be 'cos this machine is so slow the process was hanging on some 
 inter-dependency checks-
 
 Happened to me today. 30 mn to check inter-dependencies then hung up! 
 Gave up

 




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



mouse 3rd buttons ?????

2002-04-19 Thread Yohann DESQUERRE (DSI NOISIEL)

Hi,


I 've got a wheel mouse with 3 buttons but when i tried to copy the
third buttons has no action 



Any suggestions 



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



wget searching my proxy server

2002-04-19 Thread JUANG

Hi all,
I try to download used wget, and wget is searching my proxy server and wget
can't find the proxy 'couse my IP proxy server was changed.

How do I use wget whitout searching proxy?
if i use wget --proxy=no it was not work. but if i use lynx, the lynx
browser didn't search proxy.

any suggestion or help?

peace,
JUANG



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



RE: Setting up XF86CONFIG for nVidia GEForce 4 Ti 4600

2002-04-19 Thread BG

Hi Rob,

I have a 32 Mb DDR NVIDIA GeForce GTS video card installed in my Dell
workstation.  I downloaded and installed drivers from NVIDIA's website and I
have to say I was extremely pleased with how very well it went.  As per the
NVIDIA instructions in the manual I changed 3 lines of code in my RH 7.2
stock installed /etc/X11/XF86Config-4 file and then booted right into X with
command: startx.  The changes were:

1. Remove line with Load GLcore
2. Remove line with Load dri
3. In driver section change nv to nvidia

Later I figured out how to add all the display modes to
/etc/X11/XF86Config-4 by cut and paste from NVIDIA's sample XF86Config-4
file that gets installed in /usr/share/doc/NVIDIA_GLX-1.0.

Here is my complete /etc/X11/XF86Config-4 file:

# XFree86 4.0 configuration generated by Xconfigurator

Section ServerLayout
Identifier XFree86 Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

# By default, Red Hat Linux 6.0 and later use xfs

Section Files
FontPath unix/:7100
EndSection

# Module loading section

Section Module
Load  dbe # Double-buffering
#   Load  GLcore  # OpenGL support
#   Load  dri # Direct rendering infrastructure
Load  glx # OpenGL X protocol interface
Load  extmod  # Misc. required extensions
Load  v4l # Video4Linux
# Load  pex5  # PHIGS for X 3D environment (obsolete)
# Load  record# X event recorder
# Load  xie   # X Image Extension (obsolete)
# You only need the following two modules if you do not use xfs.
# Load  freetype   # TrueType font handler
# Load  type1 # Adobe Type 1 font handler
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  keyboard
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Device /dev/mouse
Option  Protocol PS/2
Option  Emulate3Buttons off
Option  ZAxisMapping 4 5
EndSection

Section Monitor
Identifier Generic Monitor, 1600x1200 @ 70 Hz
VendorName Unknown
ModelName  Unknown
HorizSync 31.5-88.0
VertRefresh 50-90
Option dpms
EndSection

Section Device
Identifier nVidia Corporation|NV15 (Geforce2 GTS)
Driver nvidia
BoardName Unknown
EndSection

Section Device
Identifier Linux Frame Buffer
Driver fbdev
BoardName Unknown
EndSection

Section Screen
Identifier Screen0
Device nVidia Corporation|NV15 (Geforce2 GTS)
Monitor Generic Monitor, 1600x1200 @ 70 Hz
DefaultDepth 24
Subsection Display
Depth   8
Modes   1280x1024 1024x768 800x600 640x400
EndSubsection
Subsection Display
Depth   16
Modes   1280x1024 1024x768 800x600 640x480
EndSubsection
Subsection Display
Depth   24
Modes   1280x1024 1024x768 800x600 640x480
EndSubsection
EndSection

Section DRI
Mode 0666
EndSection

HTH,
Bill



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Rob Yale
 Sent: Thursday, April 18, 2002 10:39 PM
 To: 'redhat list'
 Subject: Setting up XF86CONFIG for nVidia GEForce 4 Ti 4600


 Hi,

 I'm trying to get my Dell Dimension 8200 running with its GeForce 4 ti
 4600 card.  Does anyone have a XF86CONFIG file that works with this
 card?  I've tried to follow the directions on the nVidia README, and
 I've edited the file as it was suggested, but I'm getting a
 fatal error
 when I execute 'startx'.  I've installed NVIDIA_kernel.i386.rpm and
 NVIDIA_GLX.i386.rpm as well.

 Here is the error I get (from the log file):

 XFree86 Version 4.1.0 (Red Hat Linux release: 4.1.0-3) / X
 Window System
 (protocol Version 11, revision 0, vendor release 6510)
 Release Date: 2 June 2001
   If the server is older than 6-12 months, or if your card is
   newer than the above date, look for a newer version before
   reporting problems.  (See http://www.XFree86.Org/FAQ)
 Build Operating System: Linux 2.4.7-0.13.1smp i686 [ELF]
 Build Host: stripples.devel.redhat.com

 Module Loader present
 (==) Log file: /var/log/XFree86.0.log, Time: Fri Apr 19
 01:14:39 2002
 (==) Using config file: /etc/X11/XF86Config-4
 Parse error on line 58 of section Device in file /etc/X11/XF86Config-4
   BUS is not a valid keyword in this section.
 (EE) Problem parsing the config file
 (EE) Error from xf86HandleConfigFile()

 Fatal server error:
 no screens found


 Any help would be appreciated!

 Rob Yale




 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 

Re: wget searching my proxy server

2002-04-19 Thread Bill Crawford

On Fri, 19 Apr 2002, JUANG wrote:

 Hi all,
 I try to download used wget, and wget is searching my proxy server and wget
 can't find the proxy 'couse my IP proxy server was changed.

 unset http_proxy or, if you have it in a config file, remove it.

 How do I use wget whitout searching proxy?
 if i use wget --proxy=no it was not work. but if i use lynx, the lynx
 browser didn't search proxy.

 Try --proxy=off instead.




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



Re: wget searching my proxy server

2002-04-19 Thread JUANG

thank you Bill, it worked.
i installed wget using rpm, in boxA and boxB. in boxA wget is always try to
find proxy and boxB no, do you know why?

to unset http_proxy is if we install from tar ball, isn't it?


peace,
JUANG

- Original Message -
From: Bill Crawford [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, April 19, 2002 8:56 PM
Subject: Re: wget searching my proxy server


 On Fri, 19 Apr 2002, JUANG wrote:

  Hi all,
  I try to download used wget, and wget is searching my proxy server and
wget
  can't find the proxy 'couse my IP proxy server was changed.

  unset http_proxy or, if you have it in a config file, remove it.

  How do I use wget whitout searching proxy?
  if i use wget --proxy=no it was not work. but if i use lynx, the lynx
  browser didn't search proxy.

  Try --proxy=off instead.




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




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



RE: Files Required to Run Up2date?

2002-04-19 Thread Chris Daft

Unfortunately it doesn't - I ran up2date -p (which completed without errors)
and then up2date -u and got:

Testing package set / solving RPM inter-dependencies...
There was a package dependency problem.  The message was:
A package providing librpmio.so.0 could not be found.
A package providing librpm.so.0 could not be found.

[root@skuld /]# ls /usr/lib/librpm*.so.0
/usr/lib/librpmbuild.so.0  /usr/lib/librpmio.so.0  /usr/lib/librpm.so.0

Any light shed on this would be very much appreciated.  up2date worked fine for
months and is now unusable.

Thansk,
Chris Daft


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Dan Horth
 Sent: Thursday, April 18, 2002 3:07 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Files Required to Run Up2date?


 have you tried refreshing package list at rhn.redhat.com?

 up2date -p

 should do the trick?

 At 2:56 PM -0700 18/4/02, Chris Daft wrote:
 I have exactly the same problem... maybe the solution is to force the
 installation of the rpm package?  I never like forcing rpm, though.




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



Re: regular expressions in bash

2002-04-19 Thread Harry Putnam

Bill Crawford [EMAIL PROTECTED] writes:

  Oops.

  I completely missed that one ... how long's that been there?

  I'm guessing it's probably always been there, like Kosh.  I'm sooo
 embarrassed now :o)

It is new within a year or so, I believe but if you look close you'll
also notice it isn't posix regex 

The example given shows it.
  `b.*r3

Does not match

  ./fubar3

Where as with grep egrep awk sed it would.   There are other
peculiarities too making it less usefull as a regex search, but still
quite a good development over globbing only.



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



Re: Files Required to Run Up2date?

2002-04-19 Thread ABrady

On Fri, 19 Apr 2002 07:25:09 -0700
Chris Daft [EMAIL PROTECTED] quietly intimated:

 Unfortunately it doesn't - I ran up2date -p (which completed without
 errors) and then up2date -u and got:
 
 Testing package set / solving RPM inter-dependencies...
 There was a package dependency problem.  The message was:
 A package providing librpmio.so.0 could not be found.
 A package providing librpm.so.0 could not be found.
 
 [root@skuld /]# ls /usr/lib/librpm*.so.0
 /usr/lib/librpmbuild.so.0  /usr/lib/librpmio.so.0 
 /usr/lib/librpm.so.0
 
 Any light shed on this would be very much appreciated.  up2date worked
 fine for months and is now unusable.
 
 Thansk,
 Chris Daft

When I had that problem a few weeks back, I manually downloaded and
installed all of the updates. It completed without error, so I never
understood why it failed with up2date. Anyway, all runs fine now,
including up2date.

-- 
Hello, and thank you for calling MicroSoft technical support.
May I ask what version of Code Red your server is running?



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



Re: RedHat as TimeServer

2002-04-19 Thread dbrett

Create a file /etc/ntp.conf

In the file have the following
server  'remote time server'
server  'second remote time server'
server  'third remote time server'

Then you have to make sure the ntp protocol is able to get through the
firewall.  Also make sure the 'xntpd' daemon is running.

david

On Thu, 18 Apr 2002, Oleg Green wrote:

 Hi friends,
 
 I need some help to setup TimeServer NTP on Linux RedHat 7.2 run as Time Server.
 Please advise me how to configure ntpdate service, and other settings.
 
 Thanks,
 Oleg
 
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



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



Rookie at large...ssh

2002-04-19 Thread Ian Hendershot


I am new to the Linux World and trying to understand the language spoken here.
I have  just installed RH 7.1  running Apache and I am having problems using telnet 
and puTTY. 
Does a telnet daemon need to be running to used ssh?
If I try to telnet to my IP address I get can not open connection to ...address
If I use putty ip address a window flashes and goes await 
or I get connection closed by remote host.

I have been reading other threads for help but I'm still not there. 
I would greatly appreciate any help anyone has to offer. 

Thanks in Advance



***
This message is a private communication.  If you are not the intended
recipient, please do not read, copy, or use it, and do not disclose it
to others.  Please notify the sender of the delivery error by replying
to this message, and then delete it from your system.  Thank you.


-
Visit http://www.ballfoundation.org for our latest news.



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



Re: Unidentified Network Traffic

2002-04-19 Thread Gary

On Fri, Apr 19, 2002 at 06:34:39AM -0500 or thereabouts, Ed Wilts wrote:

My gawd Ed, that is terrible.  

There is a new intrusion detection system out. Their clientele is NASA,
Sun, don't know the cost.  

http://www.cylant.com/news/06.html


I would not be surprised if you're getting hammered by port 80
traffic.  Code Red and its ugly friends are still out there,
merrilly trying to infect every server they can find.
  
   I can definitely attest to that.  Had Code Red trying to get in
   a few days ago on my port 80 ... still looking for M$
 
  SNIP
 
  Yep. I still get 3 to 10 hits a day from the critters.
 
 If you only get 3-10 per day, you're lucky.  I've had 3914 hits since
 Sunday!  That's an attack attempt every 2 minutes...

-- 
Best regards,
Gary   

BREAKFAST.COM Halted - Cereal port not responding.



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



Re: Rookie at large...ssh

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 09:59 AM -0500, you wrote:

I am new to the Linux World and trying to understand the language spoken here.

You're going to read *lots* of documentation and man pages, but you'll be 
fine. The effort is certainly worth it.

I have  just installed RH 7.1  running Apache and I am having problems 
using telnet and puTTY.
Does a telnet daemon need to be running to used ssh?
If I try to telnet to my IP address I get can not open connection to 
...address
If I use putty ip address a window flashes and goes await
or I get connection closed by remote host.

Telnet is a program to supply a remote terminal to someone; so is ssh. 
However, telnet sends everything (including your username and password) in 
the clear, where anyone sniffing the network can see *everything* you type 
whereas ssh (which stands for Secure SHell) encrypts the entire transaction 
so that everything you type is nearly impossible to intercept or decrypt.

Hence, use telnet only when you really truly have to and when you're in an 
internal trusted network. But given that ssh has some other neat features, 
everyone will strongly recommend to you that you try to use ssh everywhere. 
They are independent; telnet does not need to run (or even be installed) 
for ssh to work and vice versa.

That being said, the most common package for SSH capability (included with 
RedHat) is openssh. Your Linux box must have the openssh and openssh-server 
packages installed, plus (optionally) the openssh-client package. Once the 
packages are installed, as root issue the commands:

# service sshd start
# chkconfig --level 2345 sshd on

The first will start sshd (the d is for daemon, a process which runs inside 
the machine and provides a service), and the second will make sure that 
sshd is started when you change runlevels or reboot.

You also want to make sure that you do not have a firewall blocking that 
traffic. Do you have a firewall configured at all?

Let us know whether you get this working, or provide more detail and ask 
very specific questions.


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Re: Rookie at large...ssh

2002-04-19 Thread Matthew Boeckman

telnet is not good. do not use telnet. use ssh instead. On the redhat 
box, make sure that ssh is running (ps -ef|grep sshd). If not, try 
starting it with /etc/init.d/sshd start . If ssh is not installed, grab 
an RPM and install it. Based on what you say it sounds like RH default 
firewall rules are at fault again. See my post Re: Telnet connection 
fails on 4-17 for information on how to *fix* your firewall rules. The 
same ruleset that blocks telnet connections will most likely block your 
ssh connections as well.

you can ssh with putty, but you need to choose ssh in the main config 
window, then in the ssh config window choose version 2.

Ian Hendershot wrote:

 I am new to the Linux World and trying to understand the language spoken here.
 I have  just installed RH 7.1  running Apache and I am having problems using telnet 
and puTTY. 
 Does a telnet daemon need to be running to used ssh?
 If I try to telnet to my IP address I get can not open connection to ...address
 If I use putty ip address a window flashes and goes await 
 or I get connection closed by remote host.
 
 I have been reading other threads for help but I'm still not there. 
 I would greatly appreciate any help anyone has to offer. 
 
 Thanks in Advance
 
 
 
 ***
 This message is a private communication.  If you are not the intended
 recipient, please do not read, copy, or use it, and do not disclose it
 to others.  Please notify the sender of the delivery error by replying
 to this message, and then delete it from your system.  Thank you.
 
 
 -
 Visit http://www.ballfoundation.org for our latest news.
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 


-- 
Matthew Boeckman(816) 777-2160
Manager - Systems Integration   Saepio Technologies
== 
==
/earth is 98% full ... please delete anyone you can.



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



Re: Unidentified Network Traffic

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 06:34 AM -0500, you wrote:
If you only get 3-10 per day, you're lucky.  I've had 3914 hits since
Sunday!  That's an attack attempt every 2 minutes...

You really might want to cut all those IP addresses out of the logs, group 
them by networks (say, by /24's), and contact the people who run the 
networks with the largest number of offenders. Might reduce the bandwidth 
they take from you and is certainly in their best interest too...


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Re: Samba-Linux-XP-Win95

2002-04-19 Thread p-thilts



Ed:

Thanks for your reply. Yes the XP machine insists on being the Master Browser.
I don't know how to "humble" the machine, it wants to be boss cluck, if
you know what I mean. How do I calm it down? I have set associated priorities,
such as these, high in the Linux Samba file smb.conf so that the Linux
machine is the Master Browser and other such things that I don't remember
too well off the top of my head.

Regarding encrypted passwords. Either way, how do I get XP Pro (what settings
and how to get there) to conform to the way the rest of the network is set
up.  Is the Samba file the only place I need to check to see if encrypted
passwords are used on each Linux machine? Or is there also a system file
or configuration file I also have to check on the Linux machine?  Obviously,
the Samba operation has to be consistent with the Linux system behavior and
that appears to be the case. On XP Pro, I think I turned on MP5 security.
If I remember right, cannot now remember where in XP Pro, but there were
4 lines in this security window (why I don't know) two having MP5 and 2
having some other kind of encoding (security protocol or encoding) and there
was provision to put them in some kind of order. I'm not up much on security
as my LAN connects to the internet via a dial up gate way (Linux) machine
and the internet connection goes up only under demand. The exception to
this is the XP Pro machine can dial up the internet directly without going
through the gateway. I have not yet figured out how to enable it to do both
this and/or access the internet through the Linux internet gateway.  But
this is a separate problem. 

By way of explantion and to share a bit of my experience with XP pro: XP
Pro is still just several days old to me and seems very different than Win95.
It seems capable of surviving situations where the application fails. Although,
I think the application gets blamed when there is a failure and it is probably
the OS otherwise in the same circumstance the application would always fail.
So I have not developed the necessary insight level where I know where to
go and what to set and how to set it to accomplish the desired affect. It
is more like hacking. I look, find, try, fail, start over, try something
different, and so on. - specially when the so called Wizard does not accomplish
the desired objective. Yesterday I spent all day with Bell PC Direct (satellite
internet) support group trying to get this monster to properly configure
for that one simple modem operation. They nearly gave up. I had to download
special drivers. We spent hours and hours and finally had to manually adjust
the registry. An executeable that we downloaded which was suppossed to help
diagnose the problem would not run, and so on, and so on, all day long. I
have a line up of issues with this machine that have to be resolved starting
with this networking issue. After that I have to resolve why it wants to
dial up when it makes connection to the LAN or I want to add a Network Place,
etc. I have redefined the network for EVERY option or pathway allowed by
the Network Wizard and then tried overlays and manual settings but I just
can't get this machine to do exactly what I want regarding networking with
the Linux shares. I want to be able to map to specific Linux drives and
directories from the XP Pro machine. Anyway, it doesn't crash on a minute
by minute basis like win95 and NT used to do but it's still flaky( I can't
spell the word). Last night (since there is no off on switch) and I had
to remove the signal coax cable from the satellite dish going to the satellite
modem for the fast internet connection. The manual indicated that the physical
connections were fragile and the modem needed to cool off before tampering
with these connection or possible damage to the modem might occur. First
I have ever heard such a thing. So I pulled the power line plug ( I did
not think that there would be a problem doing this). Next thing I knew XP
pro had closed all connections, was dumping onto disk from memory with a
message onthe screen saying it was protecting the sytem, and shutting down.
Worse than a Linux CPU panic if you ask me. Anyway, I've got a lot to learn
about this OS and am not looking forward to it. 

But first things first. I've got to get this network shares issue resolved
as I need to access the Linux machines from XP Pro.  As I said before I
can do the reverse but unfortunately the video and audio capture and editing
stuff are on the XP Pro system - the only reason I went that way with a MS
OS.

If you would be so kind as to answer my above questions (first and second
paragraphs) I will try and follow through with your instructions.

Regardless, it has been nice sharing with you and I appreciated your reply
Thanks, Ted


Edward Dekkers wrote:
019101c1e74a$3bfa9a80$0200a8c0@EDWARD">
  
I have a network of Win95 and Linux machines.  Every machine has sharesand all machines can access the shares of all other machines.  

Re: RedHat as TimeServer

2002-04-19 Thread Bret Hughes

On Fri, 2002-04-19 at 09:42, dbrett wrote:
 Create a file /etc/ntp.conf
 
 In the file have the following
 server'remote time server'
 server'second remote time server'
 server'third remote time server'
 
 Then you have to make sure the ntp protocol is able to get through the
 firewall.  Also make sure the 'xntpd' daemon is running.

FYI on 7.2 it is just ntpd not xntpd

[root@bretsony root]# ps ax|grep [n]tp
 6206 ?SL 0:00 ntpd -U ntp
[root@bretsony root]# cat /etc/redhat-release 
Red Hat Linux release 7.2 (Enigma)

Bret



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



Re: Rookie at large...ssh

2002-04-19 Thread Matthew Boeckman

snipthe d is for daemon, a process which runs inside the machine and 
provides a service/snip

t is for telnet
it's insecure and bad
s is for secure
the shell that must be had
d is for daemon
the way that things are run
f is for firewall
that blocks connect-ions

I'm sorry, it's Friday after all and your comment about d made me think 
of the old Cookie Monster Favorite, C is for cookie. I hope the list can 
forgive me.



Rodolfo J. Paiz wrote:

 At 4/19/2002 09:59 AM -0500, you wrote:
 
 I am new to the Linux World and trying to understand the language 
 spoken here.
 
 
 You're going to read *lots* of documentation and man pages, but you'll 
 be fine. The effort is certainly worth it.
 
 I have  just installed RH 7.1  running Apache and I am having problems 
 using telnet and puTTY.
 Does a telnet daemon need to be running to used ssh?
 If I try to telnet to my IP address I get can not open connection to 
 ...address
 If I use putty ip address a window flashes and goes await
 or I get connection closed by remote host.
 
 
 Telnet is a program to supply a remote terminal to someone; so is ssh. 
 However, telnet sends everything (including your username and password) 
 in the clear, where anyone sniffing the network can see *everything* you 
 type whereas ssh (which stands for Secure SHell) encrypts the entire 
 transaction so that everything you type is nearly impossible to 
 intercept or decrypt.
 
 Hence, use telnet only when you really truly have to and when you're in 
 an internal trusted network. But given that ssh has some other neat 
 features, everyone will strongly recommend to you that you try to use 
 ssh everywhere. They are independent; telnet does not need to run (or 
 even be installed) for ssh to work and vice versa.
 
 That being said, the most common package for SSH capability (included 
 with RedHat) is openssh. Your Linux box must have the openssh and 
 openssh-server packages installed, plus (optionally) the openssh-client 
 package. Once the packages are installed, as root issue the commands:
 
 # service sshd start
 # chkconfig --level 2345 sshd on
 
 The first will start sshd (the d is for daemon, a process which runs 
 inside the machine and provides a service), and the second will make 
 sure that sshd is started when you change runlevels or reboot.
 
 You also want to make sure that you do not have a firewall blocking that 
 traffic. Do you have a firewall configured at all?
 
 Let us know whether you get this working, or provide more detail and ask 
 very specific questions.
 
 


-- 
Matthew Boeckman(816) 777-2160
Manager - Systems Integration   Saepio Technologies
== 
==
/earth is 98% full ... please delete anyone you can.



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



System won't from SCSI HD after new Video Card installed

2002-04-19 Thread Brandon Amundson

All,

I recently had a new video card put in my DELL Server running RedHat
7.2, kernel 2.4.17.  Before the card was installed everything was
working great.

After the install, when the system boots, my scsi drives are detected
and then it just hangs.  I can boot from a floppy which reverts me back
to 2.4.7, since I did not make a bootable floppy for 2.4.17.

Does anyone know what might have happened or how to troubleshoot this? I
can not reload since this is a webserver. I tried rebuilding the kernel
and rebooting but got the same problem. Any help would be appreciated.

Thanks


Brandon Amundson 
BBN Technologies
LAB: 703 284 8189
[EMAIL PROTECTED]



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



Re: wget auth probs

2002-04-19 Thread Bret Hughes

On Fri, 2002-04-19 at 02:39, [EMAIL PROTECTED] wrote:
 On 19 Apr 2002, Bret Hughes wrote:
 
  I have a script that I am trying to port to a new content provider for
  up but wget is puking with the following: 
 
 Have you tried the wget parameters
 
--http-user=user
--http-passwd=password
 
 as described in man wget?
 

yeah but I usually use the username:[EMAIL PROTECTED] syntazx
as also illustreated in the man page.  Actually IIRC the examples show
it for htp but it has always worked for http: as well.

Further research indicates the issue here is that the IIS server is
using NTLM as an auth scheme and since it ia a MS proprietary format it
is not well supported.  pavuk says is does it and I an trying to figure
out if the one I have hase the crypto stuff compiled in since it is
necessary.

FYI  wget supports only the basic html authentication scheme.  I am NOT
going to use a windows box for this so I will keep digging. 
Interestingly enough mozilla gets there just fine.  Hmm I wonder if the
remote functions of mozilla will let me script a page save?  another
option to examine I guess.

Thanks for the reply.

Bret



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



Re: password synchronization

2002-04-19 Thread Steve Lee

LDAP works great for this.
except i putting roots password in LDAP is not a good idea.



On Fri, 19 Apr 2002, vincent li wrote:

 hi, all
 
 i am maintaining more than 20 server's password file, 
 regularly, i need to change every server's root
 account password every 1 month, it is a heavy task if
 i login in every server to change root password
 manually. is there a way that i only need to change
 one server's root password and the other servers
 automatically synchronize the changed root passorwd? i
 read the NIS,and LDAP document, it seems they both can
 do this work.is there a easy step guide to set up this
 service.  
 
 
 __
 Do You Yahoo!?
 Yahoo! Tax Center - online filing with TurboTax
 http://taxes.yahoo.com/
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



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



Re: Rookie at large...ssh

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 10:41 AM -0500, you wrote:
t is for telnet
 it's insecure and bad

I'm sorry, it's Friday after all and your comment about d made me think of 
the old Cookie Monster Favorite, C is for cookie. I hope the list can 
forgive me.

ROTFLMAO!

Certainly forgiven. grin


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Re: RedHat as TimeServer

2002-04-19 Thread dbrett

Hi Bret

Thanks for catching this.

david

On 19 Apr 2002, Bret Hughes wrote:

 On Fri, 2002-04-19 at 09:42, dbrett wrote:
  Create a file /etc/ntp.conf
  
  In the file have the following
  server  'remote time server'
  server  'second remote time server'
  server  'third remote time server'
  
  Then you have to make sure the ntp protocol is able to get through the
  firewall.  Also make sure the 'xntpd' daemon is running.
 
 FYI on 7.2 it is just ntpd not xntpd
 
 [root@bretsony root]# ps ax|grep [n]tp
  6206 ?SL 0:00 ntpd -U ntp
 [root@bretsony root]# cat /etc/redhat-release 
 Red Hat Linux release 7.2 (Enigma)
 
 Bret
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



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



Re: wget searching my proxy server

2002-04-19 Thread Bill Crawford

On Fri, 19 Apr 2002, JUANG wrote:

 thank you Bill, it worked.
 i installed wget using rpm, in boxA and boxB. in boxA wget is always try to
 find proxy and boxB no, do you know why?

 I don't, but you should be able to find out.  Just grep for proxy
in your dotfiles (e.g. .bash_profile or .bashrc if you use bash).  It
might also be worth checking in /etc/profile.d/* and /etc/sysconfig/*
in case anything else is causing it.




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



Re: password synchronization

2002-04-19 Thread Jonathan Slivko

Why not do a virtual server environment?
-- Jonathan

--
Jonathan M. Slivko [EMAIL PROTECTED]
web: http://home.earthlink.net/~jslivko1/
Life is Art without an Eraser -- John Gardner

- Original Message - 
From: Steve Lee [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, April 19, 2002 12:22 PM
Subject: Re: password synchronization 


 LDAP works great for this.
 except i putting roots password in LDAP is not a good idea.
 
 
 
 On Fri, 19 Apr 2002, vincent li wrote:
 
  hi, all
  
  i am maintaining more than 20 server's password file, 
  regularly, i need to change every server's root
  account password every 1 month, it is a heavy task if
  i login in every server to change root password
  manually. is there a way that i only need to change
  one server's root password and the other servers
  automatically synchronize the changed root passorwd? i
  read the NIS,and LDAP document, it seems they both can
  do this work.is there a easy step guide to set up this
  service.  
  
  
  __
  Do You Yahoo!?
  Yahoo! Tax Center - online filing with TurboTax
  http://taxes.yahoo.com/
  
  
  
  ___
  Redhat-list mailing list
  [EMAIL PROTECTED]
  https://listman.redhat.com/mailman/listinfo/redhat-list
  
 
 
 
 ___
 Redhat-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-list



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



Re: System won't from SCSI HD after new Video Card installed

2002-04-19 Thread mikeyw

Check the bios and make sure the IRQ for the video is turned off, also turn
off any setting where the video bios is being cached or shadowed

Regards,
Mike Wafkowski

-Original Message-
From: Brandon Amundson [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Friday, April 19, 2002 12:23 PM
Subject: System won't from SCSI HD after new Video Card installed


All,

I recently had a new video card put in my DELL Server running RedHat
7.2, kernel 2.4.17.  Before the card was installed everything was
working great.

After the install, when the system boots, my scsi drives are detected
and then it just hangs.  I can boot from a floppy which reverts me back
to 2.4.7, since I did not make a bootable floppy for 2.4.17.

Does anyone know what might have happened or how to troubleshoot this? I
can not reload since this is a webserver. I tried rebuilding the kernel
and rebooting but got the same problem. Any help would be appreciated.

Thanks


Brandon Amundson
BBN Technologies
LAB: 703 284 8189
[EMAIL PROTECTED]



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




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



Re: Rookie at large...ssh

2002-04-19 Thread Anthony E. Greene

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Apr 19, 2002 at 09:59:45AM -0500, Ian Hendershot wrote:

I am new to the Linux World and trying to understand the language spoken here.
I have  just installed RH 7.1  running Apache and I am having problems using telnet 
and puTTY. 
Does a telnet daemon need to be running to used ssh?
If I try to telnet to my IP address I get can not open connection to ...address
If I use putty ip address a window flashes and goes await 
or I get connection closed by remote host.

Also make sure your firewall is not blocking access to ssh (port 22).


Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26  C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05  HomePage: http://www.pobox.com/~agreene/
Linux: the choice of a GNU Generation. http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene 0x6C94239D [EMAIL PROTECTED]

iD8DBQE8wE8LpCpg3WyUI50RAhGBAJ972HDHfRPsaY4Dp7t80HaWsrtKcwCeP8Ol
j9Bcsi4pznXu7p146PzOpzY=
=pyTf
-END PGP SIGNATURE-



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



Re: RedHat as TimeServer

2002-04-19 Thread Oleg Green



Hi Javier
I'm trying to work with a RedHat7.2 server and 20 Linux clients to that
server.Linux Server can get time of an internet serverbut I have the problem with clients,thay can not get the time off of the local Linux server.This message that I get on cliet Linux computer:[root@Client1 init.d]# /usr/sbin/ntpdate 10.10.10.119 Apr 07:22:30 ntpdate[2349]: no server suitable for synchronization found10.10.10.1 - Linux Server IP10.10.10.4 - Client1Ping server from Client1 is OK.Regards,Oleg


Javier Gostling wrote:
[EMAIL PROTECTED]">
  Oleg Green wrote:
  
I need some help to setup TimeServer NTP on Linux RedHat 7.2 run as Time Server.Please advise me how to configure "ntpdate service", and other settings.

Not hard. There are two different scenarios:a) You want to sync one Linux machine's clock with the internet, orb) You want to sync an entire network with the internet.Let's start with case a:First get a few (at least three) public time servers. There is a list around withlots of public stratum 1 and stratum 2 time servers. My personal favorites are theservers at USNO and NIST (specific server names ahead).Now for the configuration, create the file /etc/ntp.conf with the following on it:-- /etc/ntp.conf --# NTP servers configuration# Expected to operate at stratum 2server tick.usno.navy.milserver tock.usno.navy.milserver time-a.nist.govserver time-b.nist.govdriftfile /etc/ntp/drift-- EOF --Once this is done, make sure the directory /etc/ntp exists. Next, set your system'sclock to "correct time" with:# ntpdate t
ick.usno.navy.milMake sure you use one of the servers you used on your ntp.conf file. Now, start theNTP datemon with:# service ntpd startand make sure it starts automatically with:# chkconfig --level 345 ntpd onVoila! You're sync'ed to the 'net. On to scenario b.In this case, you start by choosing two servers (one is enough, but two is better)on your site to act as time servers, and configure these boxes with the sameinstructions used in scenario a.Once you have your time servers working, configure the other machines to use theseservers. Also, configure them to exchange time info among themselves. This willhelp you in case the time servers decide to crash at the same time. Your ntp.conffile should be like the following:-- /etc/ntp.conf --# NTP servers configuration# Expected to operate at stratum 2server time1.your.domainserver time2.your.domain#
 NTP peers configurationpeer srv1.your.domainpeer srv2.your.domain...driftfile /etc/ntp/drift-- EOF --The peer list should have all servers and workstations running NTP but itself.In each computer, repeat the ntpdate/service start/chkconfig as shown in scenarioa, and your set. An entire network time sync'ed.there is a lot more than this to NTP, but this should get you started quickly.Cheers,--Javier GostlingIngeniero de SistemasVirtualia S.A.[EMAIL PROTECTED]Fono: +56 (2) 202-6264 x 130Fax: +56 (2) 342-8763Mobil: +56 (9) 824-5236Av. Kennedy 5757, of 1502Las CondesSantiagoChile___Redhat-list mailing listRedhat-list@r
edhat.comhttps://listman.redhat.com/mailman/listinfo/redhat-list






Remote X

2002-04-19 Thread Kevin Keithan
Title: Message



I'm 
usingmycomputer ,Windows2k Pro with Putty installed, to login to my 
Redhat 7.2 server. I'm using sshand have XForwarding 
enabled. I want tostartx and see it from my2000Pro 
machine. I am having trouble doing so.Iset 
thexhost + and export DISPLAY=myclient:1.0 
. If I try to run x by X 
-querymyclient :1.0 I get Xserver: unknown host: 
myclient:1.0 So I put X -querymyclient and 
it runs on the server but hangs with a grey screen and an X for the mouse. 
What am I doing wrong here? Can anyone help me? 


My goal is to allow clients to connect and 
startx. I have a lab with 24 computers that want to connect 
toXduring theirclass.


Thanks,
Kevin 



cygwin/XFree86 and xdmcp

2002-04-19 Thread Gary Stainburn

Hi all,

I've got a laptop running WinME (not by choice) from which I access my 
desktop using either VNC or XWin-32.

Both of these are configured to use XDMCP to bring up a KDM logon session.

I've now installed the latest Cygwin and XFree86 but I cannot get it to 
connect.  If I use startx, startxwin.bat or startxwin.sh everything works 
fine.

If I try to connect to my desktop, I simply get the grey background and 
nothing happens.

The command I am running from within a bash session is:

./xwin :0 -fullscreen -unixkill -nowinkill -emulate3button -query gary

Anyone got any ideas?
-- 
Gary Stainburn
 
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000 



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



Re: Bug in make dep or make bzImage compiling kernel.

2002-04-19 Thread Trond Eivind Glomsrød

Kjetil Tjensvold [EMAIL PROTECTED] writes:

 There is a bug in make dep or make bzImage when
 compiling the rh 7.2 2.4.7-10 kernel.
 If you disable File systems /devpts and keep unix98
 PTY checked to y ,you will get an error message during
 boot saying mounting local filsystems, failed due to
 devpts is not supported by the kernel.
 It has no effect if you go back into xconfig and and
 in File systems /devpts check yes for that filesystem.
 Where do you report such bugs??

The kernel mailing lists...

bugzilla would probably work to, if you test it with a current errata kernel.
-- 
Trond Eivind Glomsrød
Red Hat, Inc.



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



how do I use ISO images like CDs?

2002-04-19 Thread ramzez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi...
  are There some ways to use a image ISO like a CD? I mean... I have a ISO 
image in my hard disk, how do I mount the image like a file system iso9660?
  if you don't understan me, plese ask me; because I need this infomation

thanks,
bye
- -- 
Linux User
Registered #232544
http://counter.li.org/
my GnuPG-key at
www.keyserver.net
- --- rm -rf /bin/laden ---
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8wDMUs4dF9gl05swRArskAKCc5uUvDaQH87SfB39TueGaZEI0tQCgp3ii
cxGSViw0ksSpEcJBi2Ls6aM=
=WES0
-END PGP SIGNATURE-



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



case methos: diagrams and application

2002-04-19 Thread ramzez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi...
  I want to make diagrams for a DataBase in case method... which application 
can help me?

  And, are there some free case tools for Linux??

thanks,
bye

- -- 
Linux User
Registered #232544
http://counter.li.org/
my GnuPG-key at
www.keyserver.net
- --- rm -rf /bin/laden ---
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8wDOZs4dF9gl05swRArvDAJ9SmhwUSMSEMZ5vYMgP+Iofib3pcwCfUnVY
o6x+IdqetrXoJPpAW4DhZl0=
=Vfx9
-END PGP SIGNATURE-



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



Re: how do I use ISO images like CDs?

2002-04-19 Thread Wayne Stout

At 10:09 AM 4/19/2002 -0500, you wrote:

Hi...
   are There some ways to use a image ISO like a CD? I mean... I have a ISO
image in my hard disk, how do I mount the image like a file system iso9660?
   if you don't understan me, plese ask me; because I need this infomation

mount -o loop image.iso /mount/point

At least that's what works for me at home. You might want to read through 
the man page for mount to see what else it can do for you.

HTH,

Wayne



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



Re: how do I use ISO images like CDs?

2002-04-19 Thread Gene Sais

check out linuxiso.org

 [EMAIL PROTECTED] 04/19/02 03:57PM 
At 10:09 AM 4/19/2002 -0500, you wrote:

Hi...
   are There some ways to use a image ISO like a CD? I mean... I have a ISO
image in my hard disk, how do I mount the image like a file system iso9660?
   if you don't understan me, plese ask me; because I need this infomation

mount -o loop image.iso /mount/point

At least that's what works for me at home. You might want to read through 
the man page for mount to see what else it can do for you.

HTH,

Wayne



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



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



Re: RedHat as TimeServer

2002-04-19 Thread Javier Gostling

Oleg Green wrote:

 Hi Javier
 I'm trying to work with a RedHat7.2 server and 20 Linux clients to
 that
 server. Linux Server can get time of an internet server but I have the
 problem with clients,thay can not get the time off of the local Linux
 server.
 This message that I get on cliet Linux computer:
 [root@Client1 init.d]# /usr/sbin/ntpdate 10.10.10.1
 19 Apr 07:22:30 ntpdate[2349]: no server suitable for synchronization
 found

 10.10.10.1 - Linux Server IP
 10.10.10.4 - Client1
 Ping server from Client1 is OK.

Things to check:
1. Server is running ntpd (service ntpd status should do the trick).
2. Client's ntp.conf file. Should list server for ntpdate to work.
3. Client's firewall configuration. Needs udp port 123 open.
4. Server's firewall configuration. Needs udp port 123 open.
5. If all else fails, sync your client by hand (date -s) and start ntpd.
then use ntpdc and ntpq. There is documentation on both in your system
located in /usr/share/doc/ntp-4.1.0. You might start there at index.htm
to gain a better understanding of NTP.

Cheers,

--
Javier Gostling
Ingeniero de Sistemas
Virtualia S.A.
[EMAIL PROTECTED]
Fono: +56 (2) 202-6264 x 130
Fax: +56 (2) 342-8763
Mobil: +56 (9) 824-5236

Av. Kennedy 5757, of 1502
Las Condes
Santiago
Chile





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



Re: regular expressions in bash

2002-04-19 Thread Gordon Messmer

On Fri, 2002-04-19 at 07:26, Harry Putnam wrote:
 
 It is new within a year or so, I believe but if you look close you'll
 also notice it isn't posix regex 
 
 The example given shows it.
   `b.*r3
 
 Does not match
   ./fubar3

Sure it's a POSIX regex.  However, the man page points out that the
pattern must *match* the *entire path*.  Match vs. search maybe isn't
clear if you're accustomed to always searching... A regex search will
match if any part of the string fits the regex.  A match is only good
if the pattern fits the string from the very beginning.





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



Re: Samba-Linux-XP-Win95

2002-04-19 Thread hanfamily

I don't know if this will help but it can't hurt. I could
not get Win2000 to recognize the samba shares and someone
gave me this hint

Create a group for samba (I used 'smb'),
add your users to it, and then add this to your globals:

printer admin = @smb

 Goodluck
  Linda



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



how do I use my scanner?

2002-04-19 Thread ramzez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi...
  How do I use my scanner? 

  The scanner is in parallel port... and I want to adquire a image and 
manipulate it with Gimp

thanks,
bye

- -- 
Linux User
Registered #232544
http://counter.li.org/
my GnuPG-key at
www.keyserver.net
- --- rm -rf /bin/laden ---
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8wHSls4dF9gl05swRAnAGAKCBCjaZvpvPMZZcJBAwjMJByC/JkACfQIFR
sRYT8qHdc4ikGMvXiExTdqk=
=rojs
-END PGP SIGNATURE-



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



divX

2002-04-19 Thread ramzez

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi...
  I have some movies in DivX format in CD, the files are .avi; Are there some 
free applications to see this movies??

A lot of thanks,
bye
- -- 
Linux User
Registered #232544
http://counter.li.org/
my GnuPG-key at
www.keyserver.net
- --- rm -rf /bin/laden ---
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8wDQus4dF9gl05swRAuxEAJ9wiIcmjyoNZgSMu45ceyxphiMpLQCfYyV7
QffTMPOx8LUwsND3H7tJOa0=
=q7Ge
-END PGP SIGNATURE-



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



Re: regular expressions in bash

2002-04-19 Thread Harry Putnam

Gordon Messmer [EMAIL PROTECTED] writes:

 On Fri, 2002-04-19 at 07:26, Harry Putnam wrote:
 
 It is new within a year or so, I believe but if you look close you'll
 also notice it isn't posix regex 
 
 The example given shows it.
   `b.*r3
 
 Does not match
   ./fubar3

 Sure it's a POSIX regex.  However, the man page points out that the
 pattern must *match* the *entire path*.  Match vs. search maybe isn't
 clear if you're accustomed to always searching... A regex search will
 match if any part of the string fits the regex.  A match is only good
 if the pattern fits the string from the very beginning.

I'm not really sure what constitutes a posix legal regex but I don't 
think it includes trick riders like having to match a specific part
of a string, unless put into the regex itself with anchors or the
like.



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



Re: Unidentified Network Traffic

2002-04-19 Thread Ed Wilts

On Fri, Apr 19, 2002 at 09:38:21AM -0600, Rodolfo J. Paiz wrote:
 At 4/19/2002 06:34 AM -0500, you wrote:
 If you only get 3-10 per day, you're lucky.  I've had 3914 hits since
 Sunday!  That's an attack attempt every 2 minutes...
 
 You really might want to cut all those IP addresses out of the logs, group 
 them by networks (say, by /24's), and contact the people who run the 
 networks with the largest number of offenders. Might reduce the bandwidth 
 they take from you and is certainly in their best interest too...

I know where they're coming from, but the ISP's heavy-handed approach will
impact me as well as the offenders.

.../Ed

-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]



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



Re: mouse 3rd buttons ?????

2002-04-19 Thread Statux

You in X or at console? If X, make sure your X config understands your
mouse setup (protocol, etc).

On Fri, 19 Apr 2002, Yohann DESQUERRE (DSI NOISIEL) wrote:

 Hi,


 I 've got a wheel mouse with 3 buttons but when i tried to copy the
 third buttons has no action 



 Any suggestions 



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




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



Xwindow and dell inspirion 8200

2002-04-19 Thread Yan Zhu

anyone got Xwindow to work on that?
i download all nvidia drivers, installed it, still crashes!

thanks

yan



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



Re: Unidentified Network Traffic

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 04:22 PM -0500, you wrote:
  You really might want to cut all those IP addresses out of the logs, group
  them by networks (say, by /24's), and contact the people who run the
  networks with the largest number of offenders. Might reduce the bandwidth
  they take from you and is certainly in their best interest too...

I know where they're coming from, but the ISP's heavy-handed approach will
impact me as well as the offenders.

I see your point and it is of course valid. Although it is a risk then, 
many a time I've been able to garner special treatment by proving myself to 
be more of a benefit than a cost. In the case of my ISP at one point, I'd 
given them so much useful information and help that they specifically 
allowed all traffic to me regardless of any other measures they took, and I 
had the cellular number of the head of tech support. Kinda nice.

Extending a helping hand can get it chopped off sometimes, but other days 
it can be very positive. Your call each time on which is more likely.


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Re: how do I use ISO images like CDs?

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 02:57 PM -0500, you wrote:

mount -o loop image.iso /mount/point

At least that's what works for me at home. You might want to read through 
the man page for mount to see what else it can do for you.

Keep in mind that the directory /mount/point must exist before you issue 
this command.


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Xwindow and dell inspirion 8200 Again

2002-04-19 Thread Yan Zhu


I know that was not enough information.

RedHat 7.2

Laptop 8200

here is the log after startX


XFree86 Version 4.1.0 (Red Hat Linux release: 4.1.0-3) / X Window System

(protocol Version 11, revision 0, vendor release 6510)
Release Date: 2 June 2001
 If the server is older than 6-12 months, or if your card is
 newer than the above date, look for a newer version before
 reporting problems.  (See http://www.XFree86.Org/FAQ)
Build Operating System: Linux 2.4.7-0.13.1smp i686 [ELF]
Build Host: stripples.devel.redhat.com

Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Fri Apr 19 04:57:15 2002
(==) Using config file: /etc/X11/XF86Config-4
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device NVIDIA GeForce 2 Go (generic)
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
 XFree86 ANSI C Emulation: 0.1
 XFree86 Video Driver: 0.4
 XFree86 XInput driver : 0.2
 XFree86 Server Extension : 0.1
 XFree86 Font Renderer : 0.2
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
 compiled for 4.1.0, module version = 1.0.0
 Module class: XFree86 Font Renderer
 ABI class: XFree86 Font Renderer, version 0.2
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
 compiled for 4.1.0, module version = 0.1.0
 ABI class: XFree86 Video Driver, version 0.4
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card , rev 04 class 06,00,00
hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00
hdr 01
(II) PCI: 00:1d:0: chip 8086,2482 card 8086,4541 rev 02 class 0c,03,00
hdr 80
(II) PCI: 00:1d:2: chip 8086,2487 card 8086,4541 rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 42 class 06,04,00
hdr 01
(II) PCI: 00:1f:0: chip 8086,248c card , rev 02 class 06,01,00
hdr 80
(II) PCI: 00:1f:1: chip 8086,248a card 8086,4541 rev 02 class 01,01,8a
hdr 00
(II) PCI: 00:1f:5: chip 8086,2485 card 1013,5959 rev 02 class 04,01,00
hdr 00
(II) PCI: 00:1f:6: chip 8086,2486 card 14f1,5421 rev 02 class 07,03,00
hdr 00
(II) PCI: 01:00:0: chip 10de,0112 card 1028,00d4 rev b2 class 03,00,00
hdr 00
(II) PCI: 02:00:0: chip 10b7,9200 card 1028,00d4 rev 78 class 02,00,00
hdr 00
(II) PCI: 02:01:0: chip 104c,ac42 card e000, rev 00 class 06,07,00
hdr 82
(II) PCI: 02:01:1: chip 104c,ac42 card e800, rev 00 class 06,07,00
hdr 82
(II) PCI: 02:01:2: chip 104c,8027 card 1028,00d4 rev 00 class 0c,00,10
hdr 80
(II) PCI: 02:03:0: chip 104c,ac50 card f400, rev 01 class 06,07,00
hdr 02
(II) PCI: End of PCI scan
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
 compiled for 4.1.0, module version = 0.1.0
 ABI class: XFree86 Video Driver, version 0.4
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
 [0] -1 0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
 [0] -1 0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
 [0] -1 0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0e (VGA_EN is set)
(II) Bus 1 I/O range:
 [0] -1 0xc000 - 0xc0ff (0x100) IX[B]
 [1] -1 0xc400 - 0xc4ff (0x100) IX[B]
 [2] -1 0xc800 - 0xc8ff (0x100) IX[B]
 [3] -1 0xcc00 - 0xccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
 [0] -1 0xfc00 - 0xfdff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
 [0] -1 0xe000 - 0xe7ff (0x800) MX[B]
(II) Bus 2: bridge is at (0:30:0), (0,2,16), BCTRL: 0x06 (VGA_EN is
cleared)
(II) Bus 2 I/O range:
 [0] -1 0xe000 - 0xe0ff (0x100) IX[B]
 [1] -1 0xe400 - 0xe4ff (0x100) IX[B]
 [2] -1 0xe800 - 0xe8ff (0x100) IX[B]
 [3] -1 0xec00 - 0xecff (0x100) IX[B]
 [4] -1 0xf000 - 0xf0ff (0x100) IX[B]
 [5] -1 

Re: regular expressions in bash

2002-04-19 Thread Bill Crawford

On Fri, 19 Apr 2002, Harry Putnam wrote:

 Gordon Messmer [EMAIL PROTECTED] writes:
 
  On Fri, 2002-04-19 at 07:26, Harry Putnam wrote:
  
  It is new within a year or so, I believe but if you look close you'll
  also notice it isn't posix regex 
  
  The example given shows it.
`b.*r3
  
  Does not match
./fubar3
 
  Sure it's a POSIX regex.  However, the man page points out that the
  pattern must *match* the *entire path*.  Match vs. search maybe isn't
  clear if you're accustomed to always searching... A regex search will
  match if any part of the string fits the regex.  A match is only good
  if the pattern fits the string from the very beginning.
 
 I'm not really sure what constitutes a posix legal regex but I don't 
 think it includes trick riders like having to match a specific part
 of a string, unless put into the regex itself with anchors or the
 like.

 No, but the find man page actually specifies that it has to match the
whole path, i.e. there is an implicit ^ at the start, as if it were
^(your_regexp_here)




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



Re: how do I use my scanner?

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 02:48 PM -0500, you wrote:
Hi...
   How do I use my scanner?

Too little information. You're going to need make, model, etc. But more 
importantly, you're going to need to do a little work before then, until 
you get to the point where you have specific questions. This is like how 
do I build a computer? You need to get to the point where you're asking 
Which slot does the AGP card go into? Hope you know what I mean.

* Start at http://www.linuxdoc.org and look through the HOWTO's for 
something about scanners.

* Also check http://www.xsane.org which I *think* is the site for the X 
program that runs scanners. Might have the wrong URL, though.

* Finally, search on Google for scanner Linux and see what comes up.


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



Restricting root log in except on console

2002-04-19 Thread Greg Caskey

Hi we have a Redhat 6.2 linux firewall and I would like to restrict the root
log on access to only the console window.  If you ssh in you must login as a
user and then can goto SU if you have the priviliages.

However I cannot seem to find out where to do this?

Any help would be appreciated.

Greg



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



Re: Xwindow and dell inspirion 8200 Again

2002-04-19 Thread David Talkington

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Yan Zhu wrote:

I know that was not enough information.

RedHat 7.2

Laptop 8200

here is the log after startX

Much better, thank you.  ;-)

My first guess, based on that output, would be that you haven't run
Xconfigurator.  Try that as root.

- -d

- -- 
David Talkington

PGP key: http://www.prairienet.org/~dtalk/0xCA4C11AD.pgp

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.8
Comment: Made with pgp4pine 1.75-6

iQA/AwUBPMCdd79BpdPKTBGtEQKU5wCeJof0ffJzv/6VWYilRPaUd3rhSesAn3S8
+yxrjXzIL747abEmInUrzMkF
=H5Jt
-END PGP SIGNATURE-




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



gvim tries to print to a4 paper

2002-04-19 Thread Bret Hughes

I have dug aroung until I am blue in the fingertips trying to figure out
what happens when I hit the print button in gvim.  It prints a really
nice syntax highlighted document but when it gets to my hp5si printer it
is looking for a4 paper to print it on.  I don't use a4 paper.  

Does anyone know where the macro or what ever it is that gets run to
generate the pretty print stuff is?  Or alt least where I can change the
default paper layout?


running the latest vim enhanced on a RH 7.2 box

[bhughes@bretsony scripts]$ gvim --version
Gnome vim 6.0

TIA

Bret



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



Re: Restricting root log in except on console

2002-04-19 Thread David Talkington

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Greg Caskey wrote:

Hi we have a Redhat 6.2 linux firewall and I would like to restrict the root
log on access to only the console window.  If you ssh in you must login as a
user and then can goto SU if you have the priviliages.

Have you read the man page for sshd and looked at the options in 
sshd_config?  I think you'll find your answers there.

- -d


- -- 
David Talkington

PGP key: http://www.prairienet.org/~dtalk/0xCA4C11AD.pgp

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.8
Comment: Made with pgp4pine 1.75-6

iQA/AwUBPMCdub9BpdPKTBGtEQIUbACeNvRrXqu0mdMp2hfVSYmhmUppO0cAoKCT
qTysJuHu3O6NH1n7FNN/D8dd
=tBcV
-END PGP SIGNATURE-




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



Re: Restricting root log in except on console

2002-04-19 Thread Greg Caskey

Hi...

Must of missed that one, thanks.  I will look at it now.

If I need telnet access, how would I restrict root access to the console
only?

Greg
- Original Message -
From: David Talkington [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, April 19, 2002 4:44 PM
Subject: Re: Restricting root log in except on console


 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Greg Caskey wrote:

 Hi we have a Redhat 6.2 linux firewall and I would like to restrict the
root
 log on access to only the console window.  If you ssh in you must login
as a
 user and then can goto SU if you have the priviliages.

 Have you read the man page for sshd and looked at the options in
 sshd_config?  I think you'll find your answers there.

 - -d


 - --
 David Talkington

 PGP key: http://www.prairienet.org/~dtalk/0xCA4C11AD.pgp

 -BEGIN PGP SIGNATURE-
 Version: PGP 6.5.8
 Comment: Made with pgp4pine 1.75-6

 iQA/AwUBPMCdub9BpdPKTBGtEQIUbACeNvRrXqu0mdMp2hfVSYmhmUppO0cAoKCT
 qTysJuHu3O6NH1n7FNN/D8dd
 =tBcV
 -END PGP SIGNATURE-




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




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



Re: Restricting root log in except on console

2002-04-19 Thread Rodolfo J. Paiz

At 4/19/2002 04:24 PM -0600, you wrote:
Hi we have a Redhat 6.2 linux firewall and I would like to restrict the root
log on access to only the console window.  If you ssh in you must login as a
user and then can goto SU if you have the priviliages.

Do you have ssh access enabled and configured? If so, you really must do a 
little work on your own before asking the list (it's actually quicker many 
times). This also makes for more interesting and useful questions on the 
list which is more beneficial for all of us (including you).

Read the configuration file carefully (usually /etc/ssh/sshd_config). 
You'll find your answer in there.


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



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



protocol version 58

2002-04-19 Thread BG



Hi,

I am experimenting 
with a Return to Castle Wolfenstein server and when I try to connect to it I get 
error:

Server uses protocol 
version 58

and I cannot 
connect.

What's this all 
about and how can I fix it?

TIA,
Bill


Re: gvim tries to print to a4 paper

2002-04-19 Thread Bret Hughes

On Fri, 2002-04-19 at 17:44, Bret Hughes wrote:
 I have dug aroung until I am blue in the fingertips trying to figure out
 what happens when I hit the print button in gvim.  It prints a really
 nice syntax highlighted document but when it gets to my hp5si printer it
 is looking for a4 paper to print it on.  I don't use a4 paper.  
 
 Does anyone know where the macro or what ever it is that gets run to
 generate the pretty print stuff is?  Or alt least where I can change the
 default paper layout?
 
 
 running the latest vim enhanced on a RH 7.2 box
 
 [bhughes@bretsony scripts]$ gvim --version
 Gnome vim 6.0
 
 TIA


neeevr miiind.  I think I found it.

The command run  is :hardcopy
and 
:set printoptions=paper:letter
should fix it.  Big job in the queue so we will see.

Sorry for the wasted bandwidth.  Never fails I get pissed I can't find
something, ask on the list and then think of something else to try.

Bret



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



Re: mouse 3rd buttons ?????

2002-04-19 Thread Cameron Simpson

On 15:01 19 Apr 2002, Yohann DESQUERRE (DSI NOISIEL) [EMAIL PROTECTED] 
wrote:
| I 've got a wheel mouse with 3 buttons but when i tried to copy the
| third buttons has no action 

Heh, just had this problem yesterday when changing mice.  I set the
mouse protocol to IMPS/2 in the /etc/X11/XF86Config-4 file; it was
reading PS/2. Before the change the third button wasn't registering
at all. After, I had button 3 and also the desired 4 and 5 for the
wheel action.
-- 
Cameron Simpson, DoD#743[EMAIL PROTECTED]http://www.zip.com.au/~cs/

Reminds me of the time that I had one of those Hav-A-Hart traps.  It was
the damnedest thing, I'd throw the cage into the pool and when I'd pull
it out about an hour later there'd be a cold, still, bug-eyed cat in it.
- Bill Berbenich



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



Re: Restricting root log in except on console

2002-04-19 Thread Anthony E. Greene

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Apr 19, 2002 at 04:56:34PM -0600, Greg Caskey wrote:
Must of missed that one, thanks.  I will look at it now.

If I need telnet access, how would I restrict root access to the console
only?

man login

Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]%3E
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05 HomePage: http://www.pobox.com/~agreene/
Linux. The choice of a GNU generation http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene [EMAIL PROTECTED] 0x6C94239D

iD8DBQE8wLx4pCpg3WyUI50RAsESAKDMI03eXHdrqggsnL/Qzrfj15TQYACfSP4I
2ag+EnVIoH/pKJlRQQze+gs=
=+xzs
-END PGP SIGNATURE-



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



RE: prob with mount -t smbfs

2002-04-19 Thread Patrick Nelson

Thorsten Strusch wrote:
-
the syntax is correct, but the user is named Administrator

And you are sure, that there is a share named loc$ ?

# smbclient -L tst -U Administrator
shows you the available shares.

-

It was the fact that I didn't have the samba-client and samba-common loaded
on that machine.  The administrator works fine on my system.  Hay the
smbclient command might just come in handy...



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