Re: Executing Java as a CGI

1998-05-26 Thread William T Wilson

On Mon, 25 May 1998, Fred Whipple wrote:

 I'm trying to work my way through the Java-CGI HOWTO, but have run into

Although I can't imagine why you'd want to write CGI scripts in Java other
than the "coolness factor," I think I can point out your problem.

 # test.class is in the same directory as test.cgi,
 # so there should be no problem calling the program like this:
 java test

There is your mistake.  You should always call programs by their full
pathnames whenever possible in scripts.  This is particularly important in
CGI scripts which do not inherit the same PATH environment variable that
you are used to seeing as a user.  Although, this is not DIRECTLY the
problem, it is still good practice.  But I bet that PATH problems are
still the fundamental problem. 

Unlike DOS, just because two programs are in the same directory, does not
necessarily mean they can call each other just by using their filename. 
Whenever a bash script tries to execute another program, it always uses
the PATH environment variable and ignores the current directory (unless
"." is in the PATH variable, which it should not be even though Red Hat
5.0 does so).  However, based on your statements the CGI bash script seems
to be finding the Java wrapper script, but the Java wrapper script isn't
able to find the Java interpreter.

 java was not found in /usr/bin/jdk-1.1.5/../bin/i586/green_threads/java

If this is the path it is searching, no wonder.  Examine the path, and you
will see that it is really looking in
/usr/bin/bin/i586/green_threads/java
most likely this is not where your interpreter is.  But without your PATH
environment variable, your .java_wrapper can probably not find the
interpreter it is looking for.

You have three choices.  Either export the PATH environment variable with
the settings you need (which I don't know what they are, but the same PATH
you have as a user would probably do fine), rewrite the wrapper to set its
own PATH variable, or give up on the wrapper and code the correct
invocation of the interpreter directly into your CGI script. 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: what is portmap used for?

1998-05-26 Thread William T Wilson

On Mon, 25 May 1998, Neely Kountze wrote:

 I am trying to find our about the function of portmap, and cannot find

Portmap is used so that programs on one system can connect to a single
well-known port (belonging to the portmapper) on another system and ask
the portmapper where it can find other services.  It's useful for NIS and
other Sun-RPC type things.  It's not strictly necessary for NFS especially
if you are just a client.  You don't need it for httpd, sendmail, dns,
syslog, or samba, or a myriad of other things either.  Only for NIS
really.

 syslogd, and samba on my linux server.  Are there any other services
 which I can eliminate, like portmap, from rumlevel 3.  I'm using Redhat
 5.0?

In general, you can eliminate any service you're not using.  Few of the
services started by the runlevel rc scripts are strictly necessary,
although some of them (like atd) are more useful than they look, and
others, like autofs, look useful but aren't. :)  Others like kerneld are
useful or not depending on your specific configuration.



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: KDE Setup

1998-05-26 Thread Magnus Schoultz

Make a file called .Xclients in your home directory and put the command
startkde in it.

-Magnus

Dave Watts wrote:
 
 Hi folks,
 
   I am trying to set up KDE on my system running RH 5.0. I have successfully
 installed the support, libs, base, utilities, and admin binary rpm files.
 I've added /opt/kde/bin to my PATH and KDEDIR=/opt/kde. Since I do not have
 a .xinitrc but I .wm_style file that I changed from Mwm to startkde. I boot
 up to runlevel 3 and when I try to start kde by typing "startkde" I get the
 following error messages:
 
  Warning: could not attach SHM
 krootwm: can not connect to X server
 kwmsound: can not connect to X server
 kcontrol: can not connect to X server
 kbgndwm: can not connect to X server
 kwm: can not connect to X server
 kpanel: can not connect to X server
 kfm: can not connect to X server
 
  I've looked through the documentation for Installation and the only thing I
 can see that I haven't changed is replacing /ect/rc.d/xdm with
 /opt/kde/bin/kdm, and that is because I do not have a file called xdm in the
 rc.d directory.
 
 I would appreciate any assistance with this, I really would like to try KDE
 out.
 
 TIA
 Dave



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Importing Date to Bash Script

1998-05-26 Thread Canary, Robert W.

Hi,

what is the correct sytax for importing the system date and time into a bash script?

I need to assign this to variable that I can manipulate.

Also,  How do I write to the message log file via the syslogd?

thanks in advance
--
robert


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




bru and remote dumps

1998-05-26 Thread pancho


hello all

several questions:

1. Where do I define bru to make remote dumps?

2. When using /sbin/dump in a remote machine a get always the following
error:

/sbin/dump 0usf 265000 [EMAIL PROTECTED]:/dev/nst0 /
  DUMP: Date of this level 0 dump: Tue May 26 02:03:57 1998
  DUMP: Date of last level 0 dump: the epoch
  DUMP: Dumping /dev/sda2 (/) to /dev/nst0 on host [EMAIL PROTECTED]
  DUMP: mapping (Pass I) [regular files]
  DUMP: mapping (Pass II) [directories]
  DUMP: estimated 43845 tape blocks on 0.01 tape(s).
rdump: Lost connection to remote host.
  DUMP: Bad return code from dump: 1

I made a .rhosts in the so called machine galaxy.lca it has permissions
only for root (user) rw

rsh galaxy.lca ls  works ok.

Any sugestions?


regards

miguel


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




xfree 3.3.2 and Xwrapper

1998-05-26 Thread Ron Golan

I have xfree 3.3.2 and fvwm2 working now somewhat. I can startx as root
but not as a regular user. As a regular user if I type Xwrapper I get an X
session starting but just a gray screen and now xclients start up.

How is Xwrapper supposed to be invoked? Where is the documentation for
Xwrapper? What should its permissions be?

--
Ron Golan
[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Netscape broke in xfree 3.3.2

1998-05-26 Thread Ron Golan

Another problem since upgrading to xfree86 3.3.2 is the
following:

[rgolan@ozenfant xinit]$ netscape 
[1] 2849
[rgolan@ozenfant xinit]$ /usr/lib/netscape/netscape-navigator: can't
resolve symbol '__xstat'

I think I read that this has something to do with libraries. Does anyone
know how to fix it?
--
Ron Golan
[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: Failed depndencies using RPM

1998-05-26 Thread David . LANDGREN

   If you are sure you have all the dependencies installed, and RPM
reports
failed dependencies, try this:

rpm -i --nodeps [package]
[...]
 failed dependencies:
  /bin/sh is needed by XFree86-libs-3.3.2-5

Do you have the latest version of RPM itself? This error is usually an
indication of an old version of rpm on your system

DL


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: Importing Date to Bash Script

1998-05-26 Thread David . LANDGREN

what is the correct sytax for importing the system date and time into a
bash script?

I need to assign this to variable that I can manipulate.

TODAY = $(date)
YESTERDAY = `date --yesterday`
echo "Today is $TODAY"
echo "Yesterday was $YESTERDAY"

You use backticks to capture the output of a program. However, it gets
fiddly if not impossible to nest them. The $( ) idiom is to be preferred, as
you can nest them easily to an arbitrary depth.

Also,  How do I write to the message log file via the syslogd?

I profess complete ignorance here. What documentation have you already
looked at?

DL


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




PB perl after upgrading from Redhat 4.2 to Redhat 5.0.

1998-05-26 Thread Laurent BODIN

After upgrading from Redhat 4.2 to Redhat 5.0. I have noticed that the
following perl script doesn't work :

#!/usr/bin/perl

use Sys::Syslog;

print "Hello";

###
#   Error Message
###

syntax error at /usr/lib/perl5/i386-linux/5.00404/sys/syslog.ph line 31,
near "unless defined"
syntax error at /usr/lib/perl5/i386-linux/5.00404/sys/syslog.ph line 35,
near "}"
BEGIN failed--compilation aborted at ./p line 3.


I use "syslog" in many PERL scripts.
I am currently running PERL version 5.004_04 built for i386-linux

Any idea ?
Thanks,



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: TkDesk won't work for me...

1998-05-26 Thread Claire Bradford

 David Taylor wrote:
 
 I thought I'd resend this because I'm not sure if it was received the
 first time.
 
 I am running RedHat 5.0 with Tcl/Tk 8.0 and I am trying to install
 TkDesk.
 
 I originally tried to install the rpm version (statically linked) and
 I
 got the following error message:
 
 failed dependencies:
 libtk4.2.so is needed by TkDesk-1.0b5-2
 libtcl7.6.so is needed by TkDesk-1.0b5-2
 
 I thought the whole premise of the statically linked version was that
 it
 would work without regard to what version of the Tcl/Tk libraries I
 had
 installed...? In essence I thought that even tho' I had v8.0 it should
 have worked.  No?  (forcing it didn't work either)

The TKDesk page states that versions of TkDesk are not yet compatible
with v8.0. The TkDesk page can be found at :-

http://people.mainz.netsurf.de/~bolik/tkdesk/

Regards

Claire


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Another go at IPX

1998-05-26 Thread Graham

Maybe I am missing the point, but why cannot you not continue to use
Samba over TCP/IP on the Win95 machines?

Graham...

Michael Jinks wrote:
 
 Graham wrote:
 
  You need to take a look at the Netware Emulator MARS_NWE. The Win95 PCs
  will need to have a Netware Client installed (either MS or Novell).
 
 Sigh.  Been there, it didn't work.  I followed all of the steps for setting up
 mars_nwe, up to the point of verifying that my /proc filesystem looked right,
 but whenever I had one of my NW-enabled Linux boxes look for available servers,
 it would only see itself (not the other IPX-enabled Linux box, not any of our NT
 servers that talk IPX, just itself, in spite of the fact that all of our Linux
 boxes connect beautifully over TCP/IP).  That's why I was hoping somebody could
 provide me with a working example.
 
 Tried all of the frame types, too, and nothing made any difference.
 
 I already use SAMBA like crazy, but since we are doomed to using several Win95
 machines without the GUI, those machines can't run TCP/IP -- only IPX.
 
 
 
  Alternatively you may be able to use SAMBA to export resource as Windows
  Shares.  I don't actually know if it is possible to run SAMBA over IPX.
 
 I would suspect so (Win95 has to share its drives somehow), but I think that
 would be redundant if I can get IPX to work at all.
 
 
 
 
 
  Anyway 2 things to take a look at, come back with any more specific
  queries.
 
  Graham...
 
  Michael Jinks wrote:
  
   Several weeks ago I tried to get IPX working between a couple of RedHat
   boxes, and never had any luck.  My /proc stuff and my kernel
   configuration all looked right, but I never could get two Linux boxes to
   talk over IPX (they did TCP/IP just fine).  Now I'm trying again.
  
   I think that part of my problem is that the IPX HOWTO assumes that you
   know something about Novell (we don't have any Novell machines), so it
   leaves certain terms undefined or unexplained.
  
   I'm sure that somebody somewhere has a RedHat box which talks IPX, so
   whoever you are, would you mind helping me out with a copy of some
   config files?  All I want is a working example to compare to the
   instructions.
  
   The whole reason for this is that we have a few win95 boxes which are
   committed to using only IPX, and right now we're setting up a Linux
   fileserver, so if we want it to be useful to the 95 machines, we have to
   be able to export resources ('drives' in the M$ world) _from_ the Linux
   machine to the 95 boxes over IPX.
  
   Thanks as always,
   m
  
   --
 PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
   http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
To unsubscribe: mail [EMAIL PROTECTED] with
  "unsubscribe" as the Subject.
 
  --
PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
  http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
   To unsubscribe: mail [EMAIL PROTECTED] with
 "unsubscribe" as the Subject.
 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: Importing Date to Bash Script

1998-05-26 Thread Canary, Robert W.

Hi,

Thanks for the explaination on the $().  It worked very nicely.

As far as " How do I write to the message log file via the syslogd?", 
 someone post to me with a clue of "man logger".   I looked at it but it 
really didn't give me alot of explaination.  I really want to post an entry 
under the info facility, which is cued in the syslog.conf to show up in the 
/var/log/info.log.

--
robert

--
From:   [EMAIL PROTECTED][SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, May 26, 1998 3:10 AM
To: [EMAIL PROTECTED]
Cc: The recipient's address is unknown.
Subject:RE: Importing Date to Bash Script

what is the correct sytax for importing the system date and time into a
bash script?

I need to assign this to variable that I can manipulate.

TODAY = $(date)
YESTERDAY = `date --yesterday`
echo "Today is $TODAY"
echo "Yesterday was $YESTERDAY"

You use backticks to capture the output of a program. However, it gets
fiddly if not impossible to nest them. The $( ) idiom is to be preferred, 
as
you can nest them easily to an arbitrary depth.

Also,  How do I write to the message log file via the syslogd?

I profess complete ignorance here. What documentation have you already
looked at?




-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: --help

1998-05-26 Thread David . LANDGREN

 How to delete --help file.

rm -- --help

rm ./--help



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Compaq 4000 NIC Problems

1998-05-26 Thread Steve_G_Jones





To:   [EMAIL PROTECTED]
cc:
From: Steve G Jones @ SB_PHARM_RD
Date: 26-May-98 10:24:35 AM
Subject:  Compaq 4000 NIC Problems
Categories:

Hello,

Has anyone had any luck getting RedHat 5.0 to recognise the embedded
Netelligent Network Interface Card found on a Compaq 4000?  Linux won't
find it during autoprobing at boot time.  I get error messages:

May 20 19:41:17 localhost kernel: Warning : Unknown PCI device (8086:7180).
Please read include/linux/pci.h
May 20 19:41:17 localhost kernel: Warning : Unknown PCI device (8086:7181).
Please read include/linux/pci.h
May 20 19:41:17 localhost kernel: Warning : Unknown PCI device (e11:b011).
Please read include/linux/pci.h

But I'm not sure if they're related.

Any advice, anyone.  Please...I'm tearing out what little hair I have left!

Steve G Jones
[EMAIL PROTECTED]





-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: single

1998-05-26 Thread James Youngman

 "pd" == Patrick Dupre [EMAIL PROTECTED] writes:

Why the command "linux single" does not work at boot time
(linux works) ?

   Try 'linux 1' at the lilo prompt.

  pd Same thing, I really do not understand, it always switch to
  pd runlevel 6

No idea why this would happen (unless you've changed the /etc/inittab
entry for runlevel 1).   To rescue yourself, use

linux init=/bin/sh


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Compaq 4000 NIC Problems

1998-05-26 Thread Peter Chen

Go to http://cesdis.gsfc.nasa.gov/pub/linux/drivers/index.html and download
the TI ThunderLAN driver, re-compile your kernel and install it.

Regards
Peter

--
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Compaq 4000 NIC Problems
 Date: Tuesday, May 26, 1998 5:24 PM
 
 
 
 
 
 To:   [EMAIL PROTECTED]
 cc:
 From: Steve G Jones @ SB_PHARM_RD
 Date: 26-May-98 10:24:35 AM
 Subject:  Compaq 4000 NIC Problems
 Categories:
 
 Hello,
 
 Has anyone had any luck getting RedHat 5.0 to recognise the embedded
 Netelligent Network Interface Card found on a Compaq 4000?  Linux won't
 find it during autoprobing at boot time.  I get error messages:
 
 May 20 19:41:17 localhost kernel: Warning : Unknown PCI device
(8086:7180).
 Please read include/linux/pci.h
 May 20 19:41:17 localhost kernel: Warning : Unknown PCI device
(8086:7181).
 Please read include/linux/pci.h
 May 20 19:41:17 localhost kernel: Warning : Unknown PCI device
(e11:b011).
 Please read include/linux/pci.h
 
 But I'm not sure if they're related.
 
 Any advice, anyone.  Please...I'm tearing out what little hair I have
left!
 
 Steve G Jones
 [EMAIL PROTECTED]
 
 
 
 
 
 -- 
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST
ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips
/mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with 
"unsubscribe" as the Subject.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: ppp problem

1998-05-26 Thread David . LANDGREN

I just reinstalled RedHat do to redo the directory structures.  After
restarting I began to get the message
"Sorry, ppp not supported by this kernel" 
I installed the stock redhat kernel which I believe has ppp in it.  Any
ideas??

Belief is not sufficient. You need certainty! Does

dmesg | grep ppp

produce any output?


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Upgrade to XFree86 3.3.2

1998-05-26 Thread Patrick Dupre

Just rpm -Uvh  XFree86...   --force

--

   Patrick DUPRE|   |   Tel:  (33 4) 76-88-78-51
   25 Rue des Martyrs   |   |   Fax:  (33 4) 76-85-56-10
   CNRS/LCMI (GHMFL) BP 166 |   |
   F-38042 GRENOBLE Cedex 09|   |   email: [EMAIL PROTECTED]



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: floppy

1998-05-26 Thread David Spencer

Bill Lewis wrote:
 
 Help,  I can't access my floppy .  when Linux boots up I see a line that
 says device fd0 is 1.44.  However I can't access the floppy to format,
 copy to or from or read.  I get this

Have you tried using the mtools: mdir mcopy etc?  If you want to format
the floppy to DOS format, better let DOS do it.  (Operating systems are
always better at formatting disks to their own native format than to
other formats).


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: System Commander overwrote my MBR:

1998-05-26 Thread James Michael Keller

Michael J. Yanowitz wrote:
 
   Thanks for the quick reply (though I won't try it 'til tonight), but I have
 two more questions:
 1) Should there be anything after the initrd= , or is that the correct syntax?
 
 2) Do I need to do anything in System Commander to let it know where the LILO
or the Linux Boot Master Record resides?
 

I'm using system commander and running NT, 95, PC DOs and Linux.  I
installed lilo to the root partition rather than the MBR, System
commander takes care of triggering the boot record for each parition on
the drives.  Otherwise they want to overwrite each other and you have to
break out the floppies again.

Once lilo is on the linux parition, when you boot it will give you a
new os message and it will say linux ( or free bsd, or whatever version
of unix - it's rather good at picking them out ) and then adds it to the
menu.  Works like a camp here.

-- 
---
James Michael Keller| [EMAIL PROTECTED]  or [EMAIL PROTECTED]
(c)1998 All rights reserved | http://www.radix.net/~jmkeller
---


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Error messages

1998-05-26 Thread Kevin A. Pieckiel

I don't have the slightest clue where the problem is.  I get this
message daily and it's getting annoying.  Any clues?  Suggestions
welcome:


From [EMAIL PROTECTED] Tue May 26 08:05:07 1998
Date: Tue, 26 May 1998 01:02:01 -0400
From: Cron Daemon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Cron root@gateway run-parts /etc/cron.daily

shell-init: could not get current directory: getwd: cannot access parent directories
job-working-directory: could not get current directory: getwd: cannot access parent 
directories

Kevin A. Pieckiel


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Working with SRC RPMS

1998-05-26 Thread Jakob 'Sparky' Kaivo

On 26 May 1998, Jake Colman wrote:

 I wanted to upgrade some packages on my system and decided to downloaded source
 RPMs.  Looking at the RPM MAN page, I thought that rpm --recompile would
 compile and install the package. I tried it, it recompiled but a rpm -q showed
 that the older package was still installed.  I did a rpm --rebuild, generated a
 binary rpm, and the did a rpm --Uvh and successfully upgraded.  What is the
 proper procedure for working with a SRPM?

What I usually do, possibly with too many steps :), is the following:

# rpm -ivh foo-1.0-1.src.rpm
foo   ##
# cd /usr/src/redhat/SPECS
# rpm -ba foo.spec
Build output
# rpm -ivh ../RPMS/arch/foo-1.0-1.arch.rpm
foo   ##


+-++
| Jakob 'Sparky' Kaivo|  [EMAIL PROTECTED] |
| NoDomainName Networks   |http://www.nodomainname.net |
+-++


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




System Commander overwrote my MBR:

1998-05-26 Thread Michael J. Yanowitz

  I used to boot with LILO without any problems, but I
wanted to install System Commander so that I can also
install Window's NT.
  LILO was installed in the MBR in /dev/hda, but my
Linux partition is in /dev/hdb2.
  So I installed System Commander and now I can no longer
boot into Linux.
  Any ideas, on how I can fix this so that I can boot
Linux?

  Thanks in advance:
  Michael J. Yanowitz


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




shell scripts

1998-05-26 Thread Linux user

Coul anyone point me to a Howto or something about gnu bash
scripts ?
Thanx in advance .

--
Andrei Postolache, Romania, [EMAIL PROTECTED], +40-35-340482
--



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Working with SRC RPMS

1998-05-26 Thread Kelley L.



On Tue, 26 May 1998, Jakob 'Sparky' Kaivo wrote:

 On 26 May 1998, Jake Colman wrote:
 
  I wanted to upgrade some packages on my system and decided to downloaded source
  RPMs.  Looking at the RPM MAN page, I thought that rpm --recompile would
  compile and install the package. I tried it, it recompiled but a rpm -q showed
  that the older package was still installed.  I did a rpm --rebuild, generated a
  binary rpm, and the did a rpm --Uvh and successfully upgraded.  What is the
  proper procedure for working with a SRPM?
 
 What I usually do, possibly with too many steps :), is the following:
 
 # rpm -ivh foo-1.0-1.src.rpm
 foo   ##
 # cd /usr/src/redhat/SPECS
 # rpm -ba foo.spec
 Build output
 # rpm -ivh ../RPMS/arch/foo-1.0-1.arch.rpm
 foo   ##
 

  I used to do it this way myself, until I found out about,
rpm --rebuild foo-1.0-1.src.rpm

   this one builds a foo-1.0-1.arch.rpm and cleans up after itself.

later
Kelley



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: StarOffice 4.0

1998-05-26 Thread Ray Curtis

 "jmk" == James Michael Keller [EMAIL PROTECTED] writes:

jmk I got the wrapper for 4.0, I open up an xterm in X and try and rpm -Uvh
jmk the wrapper and it says that it can only be installed from X - but the X
jmk server is running ... what gives?

jmk Anyone got this thing to install?

Sure works fine, are you in a xterm as root, and what are the exact
error messages ?



-- 
Curtis Consulting
mailto:[EMAIL PROTECTED]
http://www.clark.net/pub/ray

Boys will be boys, and so will a lot of middle-aged men.
-- Kin Hubbard


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: networking RedHat and win95 help

1998-05-26 Thread Igmar Palsenberg

I have RedHat and win95 connected to each other via ethernet. The network
card runs fine on both systems. I want to be able to set up the RH machine
so it dials into my local ISP, and be able to go on the Internet with both
my RH and win95 machine. Also basically to be able to use the RH as a
firewall for the 95 machine..

Definally would appreciate any help that anyone can give.

Recompile your kernel with the following :

IP  Forwarding-gatewaying
IP Firewalling
IP Masquerade

Than setup the box with the ISP connection, and make sure that bot boxes can
see each other.

Then read the IP-Masquerade HOWTO


Igmar


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Working with SRC RPMS

1998-05-26 Thread Jake Colman


I wanted to upgrade some packages on my system and decided to downloaded source
RPMs.  Looking at the RPM MAN page, I thought that rpm --recompile would
compile and install the package. I tried it, it recompiled but a rpm -q showed
that the older package was still installed.  I did a rpm --rebuild, generated a
binary rpm, and the did a rpm --Uvh and successfully upgraded.  What is the
proper procedure for working with a SRPM?

-- 
Jake Colman 

Principia Partners LLC  Phone: (201) 946-0300
Harborside Financial Center   Fax: (201) 946-0320
902 Plaza II   Beeper: (800) 505-2795
Jersey City, NJ 07311  E-mail: [EMAIL PROTECTED]
   E-mail: [EMAIL PROTECTED]
  web: http://www.ppllc.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: System Commander overwrote my MBR: errata

1998-05-26 Thread Federico Strati

ok,
i posted my second mail without reading the others... ;-)
follow the hints from real users os System Commander


ciao fede

Michael J. Yanowitz wrote:
 
   Thanks for the quick reply (though I won't try it 'til tonight), but I have
 two more questions:
 1) Should there be anything after the initrd= , or is that the correct syntax?
 
 2) Do I need to do anything in System Commander to let it know where the LILO
or the Linux Boot Master Record resides?
 
  hi Michael,
 
  boot with the bootdisk of redhat specifing at the prompt:
  linux single root=/dev/hdb2 initrd=
  this will mount your root partition and give you a shell,
  then rerun lilo
 
  ciao fede
 
   J. Yanowitz wrote:
  
 I used to boot with LILO without any problems, but I
   wanted to install System Commander so that I can also
   install Window's NT.
 LILO was installed in the MBR in /dev/hda, but my
   Linux partition is in /dev/hdb2.
 So I installed System Commander and now I can no longer
   boot into Linux.
 Any ideas, on how I can fix this so that I can boot
   Linux?
  
   Thanks in advance:
   Michael J. Yanowitz
 
  [EMAIL PROTECTED]
 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.

-- 

[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: RH5 routing problems... Help!

1998-05-26 Thread John J. Donohue

On Tue, 26 May 1998, Kevin Currie wrote:
 
   I recently switched from Debian to RedHat, however, RedHat is
 giving me some rather annoying problems.  I have a server with two
 ethernet cards.  The kernel finds both of them okay.  I want to configure
 eth0 on a 192.168.1.x class C network.  The server will be .2, and an NT
 box will be .42.  I can setup the device seemingly okay.  I'll ping
 192.168.1.2 from the server and it is perfectly happy to reply, but if I
 try and ping the NT box from the server nothing it can't see it.  If I
 ping the NT box from itself, it works, but I cannot ping the server from
 the NT box.  I know that the cabling and the hub are okay.  I know the
 network cards work.
snip
 ---
 cat /proc/dev/route
 ---
 
 Iface Destination Gateway Flags   RefCnt  Use Metric  Mask   
 MTU Window  IRTT
 eth0  0001A8C001  0   2   0   00FF   
 15000   0
 lo007F01  0   2   0   00FF   
 35840   0  
 
 --
 /etc/sysconfig/network
 --
 
 NETWORKING=yes
 FORWARD_IPV4=false
 HOSTNAME=eddie.sirius.cybernetics.net
 DOMAINNAME=sirius.cybernetics.net
 GATEWAY=
 GATEWAYDEV=
 

You haven't set a route to the local net. Either fill in GATEWAY= and
GATEWAYDEV= in /etc/sysconfig/network and then reboot
OR
do some manual ROUTE ADD's to accomplish the same thing. Your system hasn't
been told that the 192 net is on eth0.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




X Quick Poll

1998-05-26 Thread Michael Hatzakis, Jr MD

Hope you guys don't mind, but I am about to set up my X manager and wonder which ones 
you guys like best.  Not overwhelmed by Metro-X and having done a bit of reading, I am 
considering XFree, but also considering olvwm, fvwm as well.  Which are easy to 
install and which are more widely supported ?

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]


--
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with
   "unsubscribe" as the Subject.




Re: libc5 vs libc6

1998-05-26 Thread Greg Fall

On 26 May 1998, Jake Colman wrote:

 Can someone please explain to me what libc is all about?  Some binary packages
 provide different versions of the RPM depending on whether you want libc5 or
 libc6.  Which is provided with RH5?  Which do I or should I prefer?  Why?

libc-4 was the old a.out libc
libc-5 was the original ELF libc
libc-6 is the new GNU libc, also called glibc-2

Each of these is I think binary-incompatible with the previous version.
Starting with Red Hat 5.0, glibc (libc-6) is the version with which most
everything is built, and it takes some effort to use libc5, even though
you have it there.  Get libc6 stuff from now on.

Read more about it in the /usr/doc/glibc-2.0.7 area right there on your
computer!

--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--

Greg Fall
[EMAIL PROTECTED], [EMAIL PROTECTED]
http://www-personal.engin.umich.edu/~gmfall


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: System Commander overwrote my MBR:

1998-05-26 Thread Federico Strati

Hi michel,

Michael J. Yanowitz wrote:
 
   Thanks for the quick reply (though I won't try it 'til tonight), but I have
 two more questions:
 1) Should there be anything after the initrd= , or is that the correct syntax?

it's the correct spelling, however check the redhat manual
(it's called handy trick, in section with lilo or kernel rebuild)
check also the bootparam-HOWTO (i don't remember the exact name of
this).

 
 2) Do I need to do anything in System Commander to let it know where the LILO
or the Linux Boot Master Record resides?

well, i don't know this, i use only lilo and i thinked you was aware of
this
only needing to get in linux,
my "extrapolation" is that Lilo is to be installed in the boot record
of your root partition (e.g. boot=/dev/hda2) and not in the MBR
(boot=/dev/hda) of the hard-disk, then in System C.
you give it that info.

good luck

ciao fede

 
  hi Michael,
 
  boot with the bootdisk of redhat specifing at the prompt:
  linux single root=/dev/hdb2 initrd=
  this will mount your root partition and give you a shell,
  then rerun lilo
 
  ciao fede
 
   J. Yanowitz wrote:
  
 I used to boot with LILO without any problems, but I
   wanted to install System Commander so that I can also
   install Window's NT.
 LILO was installed in the MBR in /dev/hda, but my
   Linux partition is in /dev/hdb2.
 So I installed System Commander and now I can no longer
   boot into Linux.
 Any ideas, on how I can fix this so that I can boot
   Linux?
  
   Thanks in advance:
   Michael J. Yanowitz
 
  [EMAIL PROTECTED]
 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.

-- 

[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: X Quick Poll

1998-05-26 Thread Rick Forrester


[EMAIL PROTECTED] said:
 Hope you guys don't mind, but I am about to set up my X manager and 
 wonder which ones you guys like best.  Not overwhelmed by Metro-X and 
 having done a bit of reading, I am considering XFree, but also 
 considering olvwm, fvwm as well.  Which are easy to install and which 
 are more widely supported ?

Mike, these are different issues you've gotten a bit tangled here.

XFree86  Metro-X are X drivers.  Once set up, they'll allow you to run X on 
your installation.

olvwm, fvwm, fvwm2, etc., are window managers; they provide the tools which 
allow you to work in X once you've got the system working.

The choice between XFree86 and MetroX must be based on both objective  
subjective factors.  When MetroX works, it can work quite well.  It is a 
commercial X driver that has been, unfortunately, somewhat problematic in the 
past.  There appear to be some good people behind the product, and they've 
donated a lot of code/support to the free X driver, XFree86.  There were, 
apparently, difficulties on the control  administration side of the MetroX 
house; they've been trying to clean up the show, but even the last release was 
not good for many users.

You'll need to take the list of equipment that you have - video card specs and 
monitor specs, and then determine which of the X drivers will work for your 
hardware.  If both, try both, and then make a choice from there.

A lot of users find that XFree86 works well, has been more stable and reliable 
for their hardware, and seems to be more bug free than MetroX.  MetroX will, 
however, support some video chipsets that XFree can't; being commercial they 
can have NDA's that give them access to data about proprietary chipsets which 
XFree86 can't get.

Publish details about your video card, video RAM capacity, monitor, etc., and 
then I think we can help a bit more.


 Mike

 Michael Hatzakis, Jr MD Resident Physiatrist - R3 Thomas Jefferson 
 University Hospital Department of Rehabilitation Medicine 
 Philadelphia, PA, 19026

 E-Mail Address:  [EMAIL PROTECTED] 

best of luck

 Rick Forrister
-- 
Rick Forrister [EMAIL PROTECTED]

Opera: Greek word meaning "death by music".
--Anonymous



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: StarOffice 4.0

1998-05-26 Thread Dr. Meridian



I got the wrapper for 4.0, I open up an xterm in X and try and rpm 
-Uvh
the wrapper and it says that it can only be installed from X - but the 
X
server is running ... what gives?

I've had the same problem with it and would like to know too :)

Meridian-


--
# unzip;strip;touch;finger;mount;fsck;more;yes;umount;sleep
--


__
Get Your Private, Free Email at http://www.hotmail.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




eth0

1998-05-26 Thread Robert Fausey

I am able to start eth0 and therefore see the local network.  The
network card is working fine in Windows 95 but not with RedHat.  In the
control panel, it is set to start at boot but it does not.  Starting
eth0 manually no effect.




-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: System Commander overwrote my MBR:

1998-05-26 Thread Federico Strati

hi Michael,

boot with the bootdisk of redhat specifing at the prompt:
linux single root=/dev/hdb2 initrd=
this will mount your root partition and give you a shell,
then rerun lilo

ciao fede

 J. Yanowitz wrote:
 
   I used to boot with LILO without any problems, but I
 wanted to install System Commander so that I can also
 install Window's NT.
   LILO was installed in the MBR in /dev/hda, but my
 Linux partition is in /dev/hdb2.
   So I installed System Commander and now I can no longer
 boot into Linux.
   Any ideas, on how I can fix this so that I can boot
 Linux?
 
   Thanks in advance:
   Michael J. Yanowitz
 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.

-- 

[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




X Quick Poll -Reply

1998-05-26 Thread Jeffrey Waters

Just my .02 worth here but I would stay as far away from Metro-X as
possible.  I have several support e-mail's from them, telling me that my
equipment is not supported even though its on their list.  I had XFree up
and running within 10min of starting and have not had a single problem
yet.

 [EMAIL PROTECTED] 05/26/98 12:30pm 
Hope you guys don't mind, but I am about to set up my X manager and
wonder which ones you guys like best.  Not overwhelmed by Metro-X
and having done a bit of reading, I am considering XFree, but also
considering olvwm, fvwm as well.  Which are easy to in
stall and which are more widely supported ?

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: System Commander overwrote my MBR:

1998-05-26 Thread Damon Andrew Wasson

On Tue, 26 May 1998, Michael J. Yanowitz wrote:
 
   I used to boot with LILO without any problems, but I
 wanted to install System Commander so that I can also
 install Window's NT.
   LILO was installed in the MBR in /dev/hda, but my
 Linux partition is in /dev/hdb2.
   So I installed System Commander and now I can no longer
 boot into Linux.
   Any ideas, on how I can fix this so that I can boot
 Linux?
This is explained in the System Commander Manual...
Basically, you need to move boot.dat from the c:\sc directory to your root
directory on your dos partition, rename it something like linux.mbr and
then set up system commander to boot using that file (which is a backup
copy of whatever was in the MBR before installing system commander.

---
If a sound is made in the forest and there is no one around to hear it, 
does a tree fall down?
---



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: RH5 routing problems... Help!

1998-05-26 Thread Kevin Currie


  NETWORKING=yes
  FORWARD_IPV4=false
  HOSTNAME=eddie.sirius.cybernetics.net
  DOMAINNAME=sirius.cybernetics.net
  GATEWAY=
  GATEWAYDEV=

 You haven't set a route to the local net. Either fill in GATEWAY= and
 GATEWAYDEV= in /etc/sysconfig/network and then reboot
 OR
 do some manual ROUTE ADD's to accomplish the same thing. Your system hasn't
 been told that the 192 net is on eth0.

What should I put in there if I don't have a gateway?  Should I
just put eth0 and the IP of eth0 for the gateway?  This box isn't behind
any kind of router.  It is simply an intranet server (right now, until I
get IP masq up).

Kevin




-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: X Quick Poll

1998-05-26 Thread Derek Balling

You seem to be confusing X _SERVERS_ with X _WINDOW MANAGERS_.

There are two basic popular X Servers for Red Hat users : MetroX and
XFree86. (Yes, others exist, but we're talking about popularity with RH
customers, a good chunk of whom will use one of the two that came on their
CD).

There are a PLETHORA of Window Managers, which (if done correctly *grin*)
should run under whatever X Server is operational : fvwm, fvwm95, olvwm,
kvm, etc.

Hope this makes your search a little easier. Personally, I prefer MetroX
(because it has very easy to configure multiple monitor support) as a
server, although I didn't use it for all that long (because it didn't, and
this is a downside, support the second video card that I had gotten).
Previous to having two monitors/cards, I used KDE as my window manager
(well, kvm actually, but KDE is the whole "package")

Just my $0.02 worth, your mileage will vary.

D

At 01:29 PM 5/26/98 -0400, Michael Hatzakis, Jr MD wrote:
Hope you guys don't mind, but I am about to set up my X manager and wonder
which ones you guys like best.  Not overwhelmed by Metro-X and having done
a bit of reading, I am considering XFree, but also considering olvwm, fvwm
as well.  Which are easy to install and which are more widely supported ?

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




questions.......

1998-05-26 Thread Matt Teagarden

I just subscibed to this wonderful list and have noticed a few posts about
turning a linux machine into a sniffer box.   How is this done?  any FAQ on
the subject?  And also, anyone who is familiar with apache, how do you get
apache to log what type of browser that a client is using.  I run webtrends
to view log files off my apache server and it never is able to determine
what type of browser a web surfer is using.

Kudos to all who responded to my last post about bootup, and maximal mount
count.  I really appreciate it!

-Matt
[EMAIL PROTECTED]



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




networking RedHat and win95 help

1998-05-26 Thread Stephen Schroeder

I have RedHat and win95 connected to each other via ethernet. The network
card runs fine on both systems. I want to be able to set up the RH machine
so it dials into my local ISP, and be able to go on the Internet with both
my RH and win95 machine. Also basically to be able to use the RH as a
firewall for the 95 machine..

Definally would appreciate any help that anyone can give.


The grass is greener on the otherside ..
until you find out it is astroturf


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: X Quick Poll

1998-05-26 Thread Vidiot

Hope you guys don't mind, but I am about to set up my X manager and wonder which ones 
you guys like best.  Not overwhelmed by Metro-X and having done a bit of reading, I 
am considering XFree, but also considering olvwm, fvwm as well.  Which are easy to 
install and which are more widely supported ?

First off, olvwm and fvwm are window managers, they are not Xservers, Hell,
they need a Xserver running before they'll work :-)

I use XFree86 and olvwm.  The reason I use olvwm is because it is also the
desktop that I use on the Sun Solaris/Sun OS machines at work.  I can set up
the desktop at home that matches my desktop at work.

Otherwise, KDE would be the way to go.

MB
-- 
System Administrator - Finnigan FT/MS - Madison WI. URL:http://www.ftms.com/
e-mail: [EMAIL PROTECTED]   [Oooohhh, I need a hug]
phone: (608) 273-8262 ext: 612  fax: (608) 273-8719
Visit - URL:http://www.vidiot.com/  (Your link to Star Trek and UPN)


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Graphical login app

1998-05-26 Thread Michael

Hi all !

Does anyone here know of a grapphical login app. which allows me
to login to various WM. ig. I would like to be able to choose if
I want to login to WindowMaker, Enlightenment etc.

I'm currently using Login.app 1.2.1, but that only allows me to login
to one WM.

Any suggestions will be wellcome !

Thanks.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: shell scripts

1998-05-26 Thread altex



 Coul anyone point me to a Howto or something about gnu bash
scripts ?


read man pages (man bash) or search for bash-doc-*.rpm (try rufus.w3.org or 
ftp.redhat.com)

Claudiu Balciza


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Interbase for RH4.2 - JDBC ??

1998-05-26 Thread altex

(Talking about RH5.0)

There is JDK for Linux
There is Interbase 4.0 for RH4.2 (works fine on 5.0)
It is supposed the above can "communicate" through JDBC

But where is the InterBase JDBC driver ?

I guess I have a problem because the (free) InterBase 4.0 / Linux isn't delivered with 
an InterBase InterServer which seems to be
the 'middle tier' for the InterBase InterClient's JDBC driver.

The only workaround was to install InterServer on a windoze system and access it like:

Connection established to 
jdbc:interbase://windoze_with_interserver/linux_server:/database_path/database_file

Yet I don't feel confy with the crash-prone windows "kind of server"

any suggestions, links, drivers ?

Claudiu Balciza



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: How to add another IP (different NETWORK) with single Ethern

1998-05-26 Thread Jake Colman

 "Dave" == Dave Wreski [EMAIL PROTECTED] writes:

Dave If you have X configured, you can try using the netcfg utility.
Dave Otherwise, copy the /etc/sysconfig/network-scripts/ifcfg-eth0 to
Dave /etc/sysconfig/network-scripts/ifcfg-eth0:0.  Then edit this new file
Dave so it looks like this:

But first the kernel would need to have been compiled with IP Aliasing, right?

-- 
Jake Colman 

Principia Partners LLC  Phone: (201) 946-0300
Harborside Financial Center   Fax: (201) 946-0320
902 Plaza II   Beeper: (800) 505-2795
Jersey City, NJ 07311  E-mail: [EMAIL PROTECTED]
   E-mail: [EMAIL PROTECTED]
  web: http://www.ppllc.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




libc5 vs libc6

1998-05-26 Thread Jake Colman


Can someone please explain to me what libc is all about?  Some binary packages
provide different versions of the RPM depending on whether you want libc5 or
libc6.  Which is provided with RH5?  Which do I or should I prefer?  Why?

Thanx!

-- 
Jake Colman 

Principia Partners LLC  Phone: (201) 946-0300
Harborside Financial Center   Fax: (201) 946-0320
902 Plaza II   Beeper: (800) 505-2795
Jersey City, NJ 07311  E-mail: [EMAIL PROTECTED]
   E-mail: [EMAIL PROTECTED]
  web: http://www.ppllc.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: X Quick Poll

1998-05-26 Thread Michael Hatzakis, Jr MD

Thanks for setting me straight on this...  In this case, when I setup up Metro-X or 
Xfree86 which window manager comes up by default...?  I never chose a window manager 
when I had Metro-X running...

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]

-Original Message-
From:   Greg Fall [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, May 26, 1998 1:45 PM
To: Red Hat List Serv (E-mail)
Subject:Re: X Quick Poll

On Tue, 26 May 1998, Michael Hatzakis, Jr MD wrote:

 Hope you guys don't mind, but I am about to set up my X manager and
 wonder which ones you guys like best.  Not overwhelmed by Metro-X and
 having done a bit of reading, I am considering XFree, but also
 considering olvwm, fvwm as well.  Which are easy to install and which
 are more widely supported ?

A common new-guy mistake; you've confused X servers with window managers.
An X server (under Red Hat you have XFree86 and MetroX from which to
choose, and a handful of other--more expensive--ones are available and
necessary for certain graphics cards that are not supported by XFree86 and 
MetroX) is the program that handles the lowest-level X commands, like 
'make a window'.  A window manager (olvwm, twm, fvwm, fvwm2, afterstep,
enlightenment, ...) is a program that gives users the ability to interact
with and manipulate these windows.  Of course you need both an X server
and a window manager if you expect to get anything done under X.

afterstep and fvwm2 (and I guess the personally-hated fvwm95) are pretty
popular window managers.  Space-fantasy types seem to dig enlightenment.
The other ones, I don't know.

See the following websites for more information:

http://www.PLiG.org/xwinman/
http://www-personal.engin.umich.edu/~gmfall/fvwm2-ade (personal plug)

--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--

Greg Fall
[EMAIL PROTECTED], [EMAIL PROTECTED]
http://www-personal.engin.umich.edu/~gmfall


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.

 application/ms-tnef


Re: floppy

1998-05-26 Thread Antonomasia


 Have you tried using the mtools: mdir mcopy etc?  If you want to format
 the floppy to DOS format, better let DOS do it.  

This works for me.

fdformat /dev/fd0H1140
mkdosfs  /dev/fd0H1140


--
##
# Antonomasia   [EMAIL PROTECTED]  #
# See http://www.notatla.demon.co.uk/#
##


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RedHat network printing problem. Please help.

1998-05-26 Thread Jon A. Christopher

Hello,

I've been beating my head against the wall about what's probably a simple
problem, so I thought I'd ask the list for help.

I've set up my RH 5.0 PC as a print server for several machines using lpd.
Unfortunately, it only works if the remote user has an account on the
local machine.  The man page for lpd/printcap has some stuff about a "rs"
capability which is supposed to do just that, limit remote print requests
to users with accounts on the local machine, but I don't want that
behavior, and I don't have that enabled.

How can I enable printing for everyone?  I've got the machines listed in
/etc/hosts.lpd, and I've restarted lpd.

If I turn on logging, I can see the request come in, but the remote files
are never transfered to the local queue (unless the request is from an
account which also exists on the local machine).

Please help me before I pull the rest of my hair out too!

Thanks,
Jon

--
Jon A. Christopher, [EMAIL PROTECTED]  |   | See my web page:
Department of Biochemistry/Biophysics | (o o) | quorum.tamu.edu/jon
Texas AM University MS-2128  +-ooO--(_)--Ooo-+ 
College Station, TX, 77843|Don't look here| 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




/dev/modem?

1998-05-26 Thread Peter Lavender

Hi Everyone,

I'm trying to get my modem 'seen' in linux, I have an external modem 
connected to com2.

I have seen references to a symlink(?) to cua(n), (I'm guessing that 
com2 would be cua1?) for /dev/modem.  On my system this doesn't 
exist, but cua1 does.

Just to see if I can talk to the modem I have started minicom and 
have configured it to use /dev/cua1, but nothing works.. No AT 
commands are showing and there appears to be nothing TX'd to the 
modem.

Could someone give me an idea where to look to sort this out?

Thanks,

Pete


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RH5 routing problems... Help!

1998-05-26 Thread Kevin Currie


I recently switched from Debian to RedHat, however, RedHat is
giving me some rather annoying problems.  I have a server with two
ethernet cards.  The kernel finds both of them okay.  I want to configure
eth0 on a 192.168.1.x class C network.  The server will be .2, and an NT
box will be .42.  I can setup the device seemingly okay.  I'll ping
192.168.1.2 from the server and it is perfectly happy to reply, but if I
try and ping the NT box from the server nothing it can't see it.  If I
ping the NT box from itself, it works, but I cannot ping the server from
the NT box.  I know that the cabling and the hub are okay.  I know the
network cards work.
When I installed, I hauled the box into the my office and plugged
it into an ethernet inet connection using the eth1 card (then eth0).
After the install, I copied ifcfg-eth0 to ifcfg-eth1 and edited ifcfg-eth0
to be 192.168.1.2.  After a reboot, I could still get out on the net
through eth1.  When I took the box home, I disabled the config for eth1 on
bootup.  From home I simply cannot see any computer on the LAN.  However,
if I establish a PPP connection, I can get to the internet.
Below are a few config files, display outputs, etc.  I'm new to
RedHat and it isn't nearly as straight foward as Debian, so this is
everything I could find that was semi-important...
BTW, please assume that I do not have X running, so any solutions
must not use the X based config tools.  Thanks.

Kevin Currie


---
ifconfig  file.out
---

lo  Link encap:Local Loopback
inet addr:127.0.0.1 Bcast:127.255.255.255  Mask:255.0.0.0
UP BROADCAST LOOPBACK   RUNNING  MTU:3584  Metric:1  
RX packets:55 errors:0 dropped:0 overruns:0  
TX packets:55 errors:0 dropped:0 overruns:0

eth0Link encap:EthernetHWaddr 00:40:05:38:FF:47
inet addr:192.168.1.2  Bcast:192.168.1.255  Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
RX packets:2 errors:0 dropped:0 overruns:0
TX packets:33 errors:0 dropped:0 overruns:0  
Interrupt:11 Base address:0x320 

-
cat /proc/dev/net
-

Inter-|   Receive  |  Transmit 
 face |packets errs drop fifo frame|packets errs drop fifo colls carrier
lo: 71   00 00   71000 00  
eth0:2   00 00   50000 00  
eth1:0   00 000000 00

---
cat /proc/dev/route
---

Iface   Destination Gateway Flags   RefCnt  Use Metric  Mask   
 MTU Window  IRTT
eth00001A8C001  0   2   0   00FF   
 15000   0
lo  007F01  0   2   0   00FF   
 35840   0  

--
/etc/sysconfig/network
--

NETWORKING=yes
FORWARD_IPV4=false
HOSTNAME=eddie.sirius.cybernetics.net
DOMAINNAME=sirius.cybernetics.net
GATEWAY=
GATEWAYDEV=

-
/etc/sysconfig/network-scripts/ifcfg-eth0
-

DEVICE=eth0
IPADDR=192.168.1.2
NETMASK=255.255.255.0
NETWORK=192.168.1.0
BROADCAST=192.168.1.255
ONBOOT=yes

-
/etc/sysconfig/network-scripts/ifcfg-eth1
-

DEVICE=eth1
IPADDR=141.218.113.11
NETMASK=255.255.255.0
NETWORK=141.218.113.0
BROADCAST=141.218.113.255
ONBOOT=no



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Defragment utilities??? (and other questions)

1998-05-26 Thread Alexei Nefediev

Defragmentation utility for ext2 partition does exist. It is called
'defrag' :-). The latest version I know is defrag-0.73-2.

But be VERY careful with it. If smth goes wrong with your system when this
utility is working over some partition, this partition may be lost
completely and you'll have to format it via 'mkfs -t ext2'. You will
hardly be able to save some information from it. This happened to me once
and I never use this utility since that time. :-(

The number you get after fsck checks the partition really indicates the
defragmentation of your partition, but usually it is about several per
cent, so nothing to worry about. 

Alexei 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




The destruction of Linux as GNU PL

1998-05-26 Thread Michael

Hi folks !

I'm a bit curious about what other linux-users think about KDE being
built on non-free libs.
The reasson I'm asking is that, apparanty, more and more people
are reccomending KDE and due to the license of the qt-libs one
might fear that this will mean the end to linux as we know it, with the
GNU Public Licence. Aren't there any other linux-users who are fearing
these tendencies in the linux-community ? 
Besides the GNOME-project, what other steps are being taken to avoid
this situation (maby someone is working on making Trolltech comply to
the GNU PL) ?

Any response will be appreciated !


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: The destruction of Linux as GNU PL

1998-05-26 Thread Jon A. Christopher

On Tue, 26 May 1998, Michael wrote:

 Hi folks !
 
 I'm a bit curious about what other linux-users think about KDE being
 built on non-free libs.
 The reasson I'm asking is that, apparanty, more and more people
 are reccomending KDE and due to the license of the qt-libs one
 might fear that this will mean the end to linux as we know it, with the
 GNU Public Licence. Aren't there any other linux-users who are fearing
 these tendencies in the linux-community ? 
 Besides the GNOME-project, what other steps are being taken to avoid
 this situation (maby someone is working on making Trolltech comply to
 the GNU PL) ?
 
 Any response will be appreciated !

At this point, this is a religious issue.  Please don't go into it here.

Jon

--
Jon A. Christopher, [EMAIL PROTECTED]  |   | See my web page:
Department of Biochemistry/Biophysics | (o o) | quorum.tamu.edu/jon
Texas AM University MS-2128  +-ooO--(_)--Ooo-+ 
College Station, TX, 77843|Don't look here| 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: The destruction of Linux as GNU PL

1998-05-26 Thread Deryk Barker

Once upon a time Michael wrote:
 
 Hi folks !
 
 I'm a bit curious about what other linux-users think about KDE being
 built on non-free libs.
 The reasson I'm asking is that, apparanty, more and more people
 are reccomending KDE and due to the license of the qt-libs one
 might fear that this will mean the end to linux as we know it, with the
 GNU Public Licence. Aren't there any other linux-users who are fearing
 these tendencies in the linux-community ? 
 Besides the GNOME-project, what other steps are being taken to avoid
 this situation (maby someone is working on making Trolltech comply to
 the GNU PL) ?

Well, Trolltech have released a free version of qt. It is not GPL'ed
and you may not change it, but it *is* free in the sense that you
don't have to pay for it and it may be freely distributed further.

(See http://www.troll/no/qtfree.html for more details).

For myself, I'm not worried. Just glad to have KDE on *my* desktop.

-- 
|Deryk Barker, Computer Science Dept. | Music does not have to be understood|
|Camosun College, Victoria, BC, Canada| It has to be listened to.   |
|email: [EMAIL PROTECTED] | |
|phone: +1 250 370 4452   | Hermann Scherchen.  |


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Working with SRC RPMS

1998-05-26 Thread Jake Colman

 "Kelley" == Kelley L [EMAIL PROTECTED] writes:


Kelley   I used to do it this way myself, until I found out about, rpm
Kelley --rebuild foo-1.0-1.src.rpm

Well that's what I do too.  So this is the accepted practise?  Build a binary
RPM from the source RPM and then install/upgrade from the binary RPM?

-- 
Jake Colman 

Principia Partners LLC  Phone: (201) 946-0300
Harborside Financial Center   Fax: (201) 946-0320
902 Plaza II   Beeper: (800) 505-2795
Jersey City, NJ 07311  E-mail: [EMAIL PROTECTED]
   E-mail: [EMAIL PROTECTED]
  web: http://www.ppllc.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: xfree 3.3.2 and Xwrapper

1998-05-26 Thread Ron Golan

Since uprading to XFree86 3.3.2 I have been struggling with trying to use
X as a normal user. I can get X to work as root if I keep the following:
  
  
[rgolan@ozenfant bin]$ ls -al X Xwrapper XF86_SVGA 
lrwxrwxrwx   1 root root9 May 26 13:27 X - XF86_SVGA
-rwxr-xr-x   1 root users 3048967 Mar  3 15:11 XF86_SVGA
-rwS--x--x   1 root users5907 Mar  3 15:12 Xwrapper
[rgolan@ozenfant bin]$ 


I have tried replacing the link from XF86_SVGA to Xwrapper and then I
can't start X even as root. (signal 2 error)

I got Netscape to work by juggling the /etc/ld.so.conf as follows:

[rgolan@ozenfant bin]$ cat /etc/ld.so.conf
/usr/i486-linuxaout/lib
/usr/i486-linux-libc5/lib
/usr/X11R6/lib
[rgolan@ozenfant bin]$ 


So the hurdle I still need to overcome is the correct use of Xwrapper. The
XFree86 FAQ is not clear to me but if someone can interpret it for me or
knows of another explanation I would appreciate it.

===excerpt from XFree86 3.3.2 FAQ===

The xinit command (which startx runs) provided with XFree86
3.3.2 and later has been modified to look for an X server called
``Xwrapper'' instead of ``X''. If you don't have Xwrapper installed,
you will get an error message from xinit/startx when it tries to
start the non-set-uid X server without using the wrapper. The
same thing will happen if you do have Xwrapper installed but
you have an xserverrc file (usually $HOME/.xserverrc, but it can be
any file pointed to by your XSERVERRC environment variable)
that references ``X'' instead of ``Xwrapper''. To fix that, edit your
xserverrc file and replace ``X'' with ``Xwrapper''. If instead of X
you have some other X server name (eg, XF86_SVGA) in your
xserverrc file, you will need to create a symbolic link from it to
/usr/X11R6/bin/X and replace it with ``Xwrapper'' in your xserverrc
file.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Bus Mouse woes, the sequel

1998-05-26 Thread Michael Hatzakis, Jr MD

Have Xfree running, thanks for all your input, it looks real nice, supports my trident 
and 1024 mode and looks great.  

However, it still does not recognize my bus mouse.  I have a bus mouse card at a 
definable irq, now at 5 and cannot understand why even on install, the system could 
not probe it.  The serial works fine, but need to preserve my two serial ports for 
other stuff...

How I define the settings for X to recognize the busmouse..?  My 
/usr/X11R6/lib/XF86Config
Has pointer protocol microsoft and device /dev/mouse?  

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]


--
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with
   "unsubscribe" as the Subject.




Re: The destruction of Linux as GNU PL

1998-05-26 Thread Chris Frost

All I can say w/o starting a huge asbestos shortage grin is to check
out www.gnome.org.

Chris
- Visit Me At http://home.hiwaay.net/~jfrost -

-- For My Public PGP Key Visit http://home.hiwaay.net/~jfrost/pgp_key.txt --


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




channel bonding?

1998-05-26 Thread Matt

Has anyone ever accomplished a successful connection to the inet using two
modems bonded under linux?

"channel bonding"  a similar product for win95/98 is availible, but i would
rather run linux.

-matt
[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: kernel compile question

1998-05-26 Thread Matt Housh


You probably don't have as86 installed. It's in the bin86 RPM,
bin86-0.4-3 on my system. HTH

Matt

---
Matt Housh email: [EMAIL PROTECTED]
MicroComputer SpecialistUniversity of Tulsa
   Engineering and Natural Sciences

"I don't remember yesterday. And today, it rained."

On Tue, 26 May 1998, David S Edwards wrote:

 Hello,
 
 I'm trying to build 2.0.33, but I get this compile error when I do a "make
 boot".  It says as86 not found when compiling bootsect.c  (I think i got
 that right)
 
 Any suggestions?
 david
 
 
 -- 
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with 
"unsubscribe" as the Subject.
 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: AMD K-6 Questions

1998-05-26 Thread Stephen Schroeder

I installed RH 4.2 on a K-6/200 on a Intel 430VT chip set and had no
problem at all
and actually have gone through a few installs (just learning) and each time
it went without hitch.


At 03:44 PM 5/26/98 -0500, you wrote:
What's the word on the AMD K6 compatibility with Linux?

The RH hardware compatibility guide suggests that there may be some
problems with installing Linux on a K6 system. I just wanted to know if
anyone has had problems/successes with these processors and/or
K6-compatible BIOSs.

Thanks in advance.

Tom
[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.
 
The grass is greener on the otherside ..
until you find out it is astroturf


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: 2nd ide hdd?

1998-05-26 Thread Fred Smith

On Tue, May 26, 1998 at 10:50:04PM +, Peter Lavender wrote:
 Hi everyone,
 
 I was just thinking, I have a spare 1gig + ide hdd.  I was wondering 
 if I can use this with linux on an old 486MB that doesn't support LBA 
 or large hdd's at all?

Sure!

If you're going to use it as a SECONDARY drive (i.e., NOT the one from
which you boot) there's no problem at all, just put it in, partition
it with fdisk run mkfs and then mount your partitions. If you want to
boot from it, just make sure that the partition where you kernel lives
is entirely below cylinder 1024 (0-1023). One easy way to do this is to
make a small partition (5-20 mb) at the beginning of the disk, copy 
everything from /boot to it, then mount it as /boot (make sure it is
listed in /etc/fstab so it'll get mounted automatically at boot time).
Having done that, you should be fine.

There used to be an old mini-HOWTO on using large IDe drives that
spelled out the procedure, but it seems to have been replaced by a newer,
larger one that discusses other things, but not that (or not as well).
But it's not hard to do anyway.

Fred
-- 
---
 .Fred Smith/  
( /__  ,__.   __   __ /  __   : /  
 //  /   /__) /  /  /__) .+'   Home: [EMAIL PROTECTED] 
//  (__ (___ (__(_ (___ / :__ 781-438-5471 
 Jude 1:24,25 -


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: X Quick Poll

1998-05-26 Thread Dr. Meridian

-
afterstep and fvwm2 (and I guess the personally-hated fvwm95) are 
pretty
popular window managers.  Space-fantasy types seem to dig 
enlightenment.
The other ones, I don't know.
-

I guess im the only one that is using ctwm? 

Meridian-



__
Get Your Private, Free Email at http://www.hotmail.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




kernel errors?

1998-05-26 Thread GateKeepeR News

I just ran a make mrproper and then tried a make menuconfig but it gave
me the following errors..

[root@postal linux]# make menuconfig
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts/lxdialog all
make[1]: Entering directory `/usr/src/linux-2.0.31/scripts/lxdialog'
gcc -O2 -Wall -fomit-frame-pointer -DLOCALE  -DCURSES_LOC="curses.h"
-c lxdi
alog.c -o lxdialog.o
In file included from lxdialog.c:22:
dialog.h:22: sys/types.h: No such file or directory
dialog.h:23: fcntl.h: No such file or directory
dialog.h:24: unistd.h: No such file or directory
dialog.h:25: ctype.h: No such file or directory
dialog.h:26: stdlib.h: No such file or directory
dialog.h:27: string.h: No such file or directory
dialog.h:29: curses.h: No such file or directory
lxdialog.c:53: locale.h: No such file or directory
make[1]: *** [lxdialog.o] Error 1
make[1]: Leaving directory `/usr/src/linux-2.0.31/scripts/lxdialog'
make: *** [menuconfig] Error 2   


Any ideas as to what this would be? Thanks..

Bryan


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: eth0

1998-05-26 Thread Abdullah Al-Molah

At 02:05 PM 5/26/98 -0400, you wrote:
I am able to start eth0 and therefore see the local network.  The
network card is working fine in Windows 95 but not with RedHat.  In the
control panel, it is set to start at boot but it does not.  Starting
eth0 manually no effect.




-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.


1st I need to know what brand is your NIC card, and we can move on into
getting it to work from that point.



Abdullah Al-Molah 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Compromise?!?!?!?

1998-05-26 Thread Jack Hatfield

I am probably opening myself up for all kinds o '$h|t with this problem but,
does RedHat 5.0 come shipped with what version of BIND, 4.9 or so, and if
so,

Does it contain that BIND patch for backdoor intruders running vulnerable
versions of named?

Does anyone know what I am talking about? How do you find hidden files in
linux?

I am supposed to be looking for some stuff and I have found half of it but
not all.

Can anyone help? This is so vague but  I am totally new to all this hacked
stuff. All I know is I have version RedHat version 4.2 and I have just
purchased 5.0 and am wondering if re-installing this thing will kill what
user files I have installed?

Oh my, too much.
RocNet Monster
RocSoft, Inc.
915 Lyttleton St.
Camden SC 29020
803 713-3433


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: X Quick Poll

1998-05-26 Thread Jil Tardiff


I've enjoyed using WindowMaker so far. It doesn't seem to be too
resource-hungry and even looks pretty good on my laptop!


Jil


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Cannot find X server : not installed

1998-05-26 Thread Federico Strati

Eric Fowler (Eastman Software) wrote:
 
 I have rh5. I installed, ran xf86config, then startx. Startx fails because
 /usr/X11R6/bin/X is linked to  /usr/X11R6/bin/XF86_S3, which does not exist.
 I tried again with standard 16 color vga and the same thing happened. What's
 up?

hi Eric,

have you installed the XF86_S3 server pkg? or the XVGA16 one?
you can find this pkgs in the standard RPMS dir of RH 5.

ciao fede

p.s. are you working for microsoft and running linux? just curiosity.

 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.

-- 

[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




cursor speed -Reply

1998-05-26 Thread Dennis Clark

That's the typematic rate and can be set in the BIOS (for most
motherboards).  Don't know if Linuz has settings to override the BIOS
settings.

 Danny Rice [EMAIL PROTECTED] 05/24/98 12:15pm 

When you are editing and hold down the right or left arrow key the
cursor will begin to move after a period of time (T) at some speed
(S).  How do you change the settings for T and S?


-- 
Danny Rice


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST
ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips
/mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: Cannot find X server : not installed

1998-05-26 Thread Michael Hatzakis, Jr MD

I believe manual page 94-95 should help... Mike

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]

-Original Message-
From:   Eric Fowler (Eastman Software) [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, May 26, 1998 7:14 PM
To: [EMAIL PROTECTED]
Subject:Cannot find X server : not installed

I have rh5. I installed, ran xf86config, then startx. Startx fails because
/usr/X11R6/bin/X is linked to  /usr/X11R6/bin/XF86_S3, which does not exist.
I tried again with standard 16 color vga and the same thing happened. What's
up? 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.


 application/ms-tnef


Re: adduser

1998-05-26 Thread Craig Kattner

 Now what?  Do I manually make an entry in /etc/passwd?  And if so, what
 do I use for a passwd since it's encrypted in that file??
 
I think as root you can do "passwd houze" and change that users password.
Or log on as that user and just run passwd. (I don't know if you can log
on as that user yet though. I think new users are locked out until a
password is set.)


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




No Subject

1998-05-26 Thread mika-redhat

On Tue, May 26, 1998 at 11:11:09AM -0700, Jason Scherbarth wrote:
 I don't know of Enlightenment being available as an RPM.  It's possible
 that it might be a goal of the upcoming .14 release, but there's not
 much word about what is in and what is not.  I know that Rasterman is
 working with RedHat Labs and has begun offering his Imlib stuff as RPMs.
 If you want to get E working with the current 13.3 release make sure you
 download both the Imlib and Imlib developers RPMs.  Once you have those
 installed as well as the other requisite libs, E should compile and work
 pretty well(it's got a pretty nice install script).  I am by no means a
 Linux wizard and managed to get it working(boy, is it cool!).  If you
 have any questions or problems I'd be happy to share any ideas...
 
 js
 
  From:   Michael [SMTP:[EMAIL PROTECTED]]
  Hi all !
  Does anyone know where to get an rpm-package of enlightenment.
  I have been all over the redhat ftp-site and for some reason
  I cannot connect to ftp://ftp.enlightenment.org
  Any other ftp's will be greatly appreciated
  
  Thanks

There is a rpm available but I haven't gotten it to work and neither 
has anyone else I know. 

I would just compile the source which is available at 
ftp.rasterman.com/pub/enlightenment (or something like that)

Hope this helps.
-- 
#include signature.h
/*
* Mika Koivisto
* E-mail: [EMAIL PROTECTED]
* WWW: http://www.r00t.nu 
*/

Memory fault -- core...uh...um...core... Oh damnit, I foreget!


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: all of these emails

1998-05-26 Thread Michael Jinks

I use Communicator's mail filtering feature.  It's not perfect but it will at
least separate mails from the various lists that I'm subscribed to.  That helps
a lot.  I do a lot of highlighting and alt-d, but it beats letting the computer
guess at what I'm interested in.



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: adduser

1998-05-26 Thread Stacy Brodzik

I tried using "passwd houze" from root and it seemed to work ok since it
prompted me for a new password and verification.  Then it came back with
this:

passwd:  User not known to the underlying authentication modeule

Stacy



 
  Now what?  Do I manually make an entry in /etc/passwd?  And if so, what
  do I use for a passwd since it's encrypted in that file??
  
 I think as root you can do "passwd houze" and change that users password.
 Or log on as that user and just run passwd. (I don't know if you can log
 on as that user yet though. I think new users are locked out until a
 password is set.)
 
 
 -- 
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with 
"unsubscribe" as the Subject.
 
 


-- 
Stacy Brodzik   INTERNET: [EMAIL PROTECTED]

University of Washington
Dept of Atmospheric Sciences
Box 351640
Seattle, WA  98195-1640


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: adduser

1998-05-26 Thread Brian Eith

On Tue, May 26, 1998 at 06:10:04PM -0700, Stacy Brodzik wrote:
 I tried using "passwd houze" from root and it seemed to work ok since it
 prompted me for a new password and verification.  Then it came back with
 this:
 
 passwd:  User not known to the underlying authentication modeule
 
 Stacy

If you have X windows working, log in as root, and use the control-panel
to add the user (there should be an icon called 'user/group
configuration' or something similar).

regards,
Brian.

-- 
=
|  Brian Eith  [EMAIL PROTECTED]   http://www.cs.wisc.edu/~eith  |
=
| Linux is user friendly. It's just selective about who its friends are |
=

For PGP public key: http://www.cs.wisc.edu/~eith/key.html


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Linux/MAC/NT/Win95 Networking

1998-05-26 Thread felix k sheng

On Tue, May 26, 1998 at 02:47:02PM -0600, Kyle Moore wrote:
I have read everything I can find about Linux and learned a ton but
still haven't found the answer to this problem.  I have Linux,
Macintosh, Win95 and NT4.0 machines that need to be able to network
together.  I have never set up a network before but understand the
basics of how they work.  I would like to have internet access through
the Linux box (I assume some kind of IP Masquerading would be needed),
printer sharing and file sharing also.  From there, local email, central
faxing and group scheduling seem pretty easy.

hey,

the accessing the internet through the linux box is quite easy to
set up.  all you'll need, pretty much, is a nic card in each box and
a hub to plug them all into - oh and the ipfwadm package if you don't
have it already.  here are some good links to help get you started:

http://www.tor.shaw.wave.ca/~ambrose/
http://www.linuxhq.com/HOWTO/Firewall-HOWTO.html

this one's good once you get past just masquerading:
http://www.xos.nl/linux/ipfwadm/paper/


outside of  simple connectivity, netatalk is good for macs and similarly
you can use samba to fileshare to your M$ machines.  alternately you
could just use nfs and get nfs clients to both of them - depending
on what you need.

good luck!

'lx

-- 
/*-- felix sheng   [EMAIL PROTECTED]   tel:212 597 8069  page:800 800 7759 --*/


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




5.1 and the Expo?

1998-05-26 Thread Michael Jinks

If anyone from RedHat is listening, I'm curious -- is there any
relationship between the apparently imminent release of 5.1 and the
timing of the Expo this weekend?  More to the point, will copies be
ready in time to pick one up from you guys in person?


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: The destruction of Linux as GNU PL

1998-05-26 Thread Jakob 'Sparky' Kaivo

On Tue, 26 May 1998 [EMAIL PROTECTED] wrote:

 If i remember correctly, www.gnu.org has something about creating a
 replacement for qt that has the normal GNU public license.

Yeah, this is coming (kinda) in the form of GNOME, except GNOME is all qt
is plus a bunch more. When GNOME has matured a bit more, perhaps the KDE
group will rewrite for GNOME and GTK+ instead of qt.

+-++
| Jakob 'Sparky' Kaivo|  [EMAIL PROTECTED] |
| NoDomainName Networks   |http://www.nodomainname.net |
+-++


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: pthreads and Chapeau Rouge 5.0

1998-05-26 Thread Eric Fowler \(Eastman Software\)

I need to reopen this issue, as I had set it aside. 
I have installed rh5 with all the dev options except X-development. I have
written a very short piece of code that calls pthread_create() and
pthread_join(), and am getting what us Microsofties call an unresolved
external. I cannot find glibc2 anywhere on the system, and am baffled by the
-l link options in the gnu compiler. 
What exactly must I do to link these LIB's? 

By the way, my XFree86 system is down too, so I can't go to the "real" help
files. 

Thanks gobs. 

 -Original Message-
 From: Cristian Tibirna [SMTP:[EMAIL PROTECTED]]
 Sent: Sunday, May 17, 1998 11:35 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: pthreads and Chapeau Rouge 5.0
 
 On Sun, 17 May 1998, Eric Fowler (Eastman Software) wrote:
 
  (1) Does RedHat 5 support POSIX threads or anything at all like it? 
 
 Yes, glibc2 does. Then so does RH5
 
  (2) If so, what additional libraries(if any) must I install to be able
 to
  develop threaded code on this platform? 
 
 Any. Glibc2 comes with the system.
 
  
  I'm only asking 'cause I can't find the thread APIs in the man pages ...
 
  
 
 Try the info system. It becomes little by little the doc. system of choice
 for RH, it seems.
 
 DISCLAIMER: it is very possible that I am completely wrong. Don't worry,
 I'll stand corrected, and you'll know it :-)
 
 P.S. That @microsoft.com address was just another joke or what? :-)
 
 
 
 
 -- 
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips
 /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with 
"unsubscribe" as the Subject.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: AMD K-6 Questions

1998-05-26 Thread DSmoak

What's the word on the AMD K6 compatibility with Linux?

I'm running RH5.0 on a 200MHZ K6 and a Shuttle 569 MB.  I've
just used kernels that were RPMed on the RH site... seems
fine to me.

 The RH hardware compatibility guide suggests that there may be some
 problems with installing Linux on a K6 system. I just wanted to know if

This had me worried too, but I took the plunge figuring that they
were just being conservative.  The manual does say that you should
use the '386 options for building kernels to be safe... that's 
something I know nothing about at this time.

 anyone has had problems/successes with these processors and/or
 K6-compatible BIOS

My runs... I consider that a success!  8-)

--
Doug


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Defragment utilities??? (and other questions)

1998-05-26 Thread Dave Reed


 From: "George Lenzer" [EMAIL PROTECTED]

 1. Does Linux have/need a defragmenting program?  I looked around on the net 
 and found some indications that as long as 10% of the file system is free, ext2 
 doesn't need defragmenting?  Is that true?  I noticed that my system mentions 

The file systems does some "smart" things to reduce fragmentation.  I
believe these include buffering writes until a significant number of
blocks are need so they can be allocated contiguously and
preallocating blocks in hopes that they can be used for the same file
- I'm certain it frees those blocks if they don't end up being used.
These are from a description I saw in a OS textbook that had a chapter
on Linux.  Someone can probably give you a more detailed answer if you
need it, but in general fragmentation is not a problem with the Linux
file system (ext2).  That doesn't mean there is no fragmentation, but
not enough to worry about.


 something about "0.8% non-contiguous" after re-mounting /dev/hda at boot time. 
  Is this a fragmentation message?


Don't know for certain, but probably and certainly 0.8% is nothing to
worry about.  I think I heard that someone wrote a defragmenter for
the ext2 file system, but since you are new to Linux, I wouldn't
bother with it until fragmentation becomes a problem for you and it
probably never will.


 2. How difficult is it to recompile the kernel for someone who can write batch 
 files under DOS and had some BASIC programming experience in the days before 
 structured BASIC?  (120 GOTO 10, etc...)  I want to add sound support to my 
 Linux machine, but I am afraid that the machine will not boot after I 
 recompile.  Which leads to my next question;


The main thing you need to know is what support to include and what
you can include in modules (assuming you want to build a modular
kernel which is probably a good idea).  Other than that, it's just a
matter of following directions that are in the RedHat manual and/or
the kernel compile HOWTO.  I compiled my kernel w/o reading the HOWTO
- just followed the directions in the RedHat 4.1 manual.  I had a fair
amount of general computer and Unix knowledge at the time, but was new
to Linux and I was able to determine for the most part what I needed
to include and what I didn't.  I suspect the kernel compile HOWTO
tells you about the options.  Make certain you keep a copy of the old
kernel in case your new kernel won't boot.  You'll need to modify the
lilo.conf file and rerun lilo after compiling the kernel to specify
the new kernel and allow the old kernel to still boot (assuming your
using lilo).  Again, this information should be in the kernel compile
HOWTO.


 3. If I installed the "Multimedia machine" option when I installed Redhat 5.0, 
 was that supposed to have configured sound for me or only install support?  I 
 tried to use x11amp the other night and I got two error messages.  (Something 
 about not being able to open device /dev/audio and one other error.)


 4. If I successfully get sound working from the console, does that carry over 
 to the X environment?


Can't answer your sound questions since I have never bothered trying
to get my sound card to work.


 5. Should I have istalled the C developer libraries and compilers, etc... in 
 order to recompile the kernel?


Yes, you'll need those along with the four kernel RPMS.  If you didn't
install them initially (you had to install one of them, but you may
not have installed the other three), you can install them now using
rpm.  You'll need to mount the RedHat CD and then use rpm to install
them.  Hint: look at the commands mount, umount and rpm.  If you can't
figure it out, ask and I'm certain someone on the list will help.

Dave
[EMAIL PROTECTED]


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




RE: X Quick Poll

1998-05-26 Thread Michael Hatzakis, Jr MD

Publish details about your video card, video RAM capacity, monitor, etc., and then I 
think we can help a bit more.

Thanks so much...  Actually, I had trouble getting Metro-X to recognize my video 
setup, which is one reason I have been veering towards Xfree86...  My problem areas 
are **.

System:
Generic Non-Intel 486 100mhz 32 mb ram
NE-2000
**Video Card:  
Jaton Video 57P  (PCI, PP Disabled, Trident TGUI9680 with 2mb)
Monitor:
MaxTech XT-4873 14" 1024x768 at 60hz, non-interlaced
**Mouse:
Bus mouse, not working, using serial temporarily until I figure out how to get 
X to recognize bus mouse.

BTW, is there a newer version of Xfree than one supplied on Hurricane...?

Mike

Michael Hatzakis, Jr MD
Resident Physiatrist - R3
Thomas Jefferson University Hospital
Department of Rehabilitation Medicine
Philadelphia, PA, 19026

E-Mail Address:  [EMAIL PROTECTED]

-Original Message-
From:   Rick Forrester [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, May 26, 1998 1:51 PM
To: [EMAIL PROTECTED]
Cc: Michael Hatzakis, Jr MD
Subject:Re: X Quick Poll 


[EMAIL PROTECTED] said:
 Hope you guys don't mind, but I am about to set up my X manager and 
 wonder which ones you guys like best.  Not overwhelmed by Metro-X and 
 having done a bit of reading, I am considering XFree, but also 
 considering olvwm, fvwm as well.  Which are easy to install and which 
 are more widely supported ?

Mike, these are different issues you've gotten a bit tangled here.

XFree86  Metro-X are X drivers.  Once set up, they'll allow you to run X on 
your installation.

olvwm, fvwm, fvwm2, etc., are window managers; they provide the tools which 
allow you to work in X once you've got the system working.

The choice between XFree86 and MetroX must be based on both objective  
subjective factors.  When MetroX works, it can work quite well.  It is a 
commercial X driver that has been, unfortunately, somewhat problematic in the 
past.  There appear to be some good people behind the product, and they've 
donated a lot of code/support to the free X driver, XFree86.  There were, 
apparently, difficulties on the control  administration side of the MetroX 
house; they've been trying to clean up the show, but even the last release was 
not good for many users.

You'll need to take the list of equipment that you have - video card specs and 
monitor specs, and then determine which of the X drivers will work for your 
hardware.  If both, try both, and then make a choice from there.

A lot of users find that XFree86 works well, has been more stable and reliable 
for their hardware, and seems to be more bug free than MetroX.  MetroX will, 
however, support some video chipsets that XFree can't; being commercial they 
can have NDA's that give them access to data about proprietary chipsets which 
XFree86 can't get.

Publish details about your video card, video RAM capacity, monitor, etc., and 
then I think we can help a bit more.


 Mike

 Michael Hatzakis, Jr MD Resident Physiatrist - R3 Thomas Jefferson 
 University Hospital Department of Rehabilitation Medicine 
 Philadelphia, PA, 19026

 E-Mail Address:  [EMAIL PROTECTED] 

best of luck

 Rick Forrister
-- 
Rick Forrister [EMAIL PROTECTED]

Opera: Greek word meaning "death by music".
--Anonymous



--
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with
   "unsubscribe" as the Subject.




Re: 2nd ide hdd?

1998-05-26 Thread Eric L. Green [EMAIL PROTECTED]

On Tue, 26 May 1998, Peter Lavender wrote:
 I was just thinking, I have a spare 1gig + ide hdd.  I was wondering 
 if I can use this with linux on an old 486MB that doesn't support LBA 
 or large hdd's at all?

Sure. Just make sure that the /boot partition is below the 1024 cylinder
boundary.  

Eric Lee Green   [EMAIL PROTECTED]  Executive Consultants
Systems Specialist   Educational Administration Solutions


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Linux/MAC/NT/Win95 Networking

1998-05-26 Thread Stephan Greene

On Tue, 26 May 1998, Kyle Moore wrote:

 I have read everything I can find about Linux and learned a ton but
 still haven't found the answer to this problem.  I have Linux,
 Macintosh, Win95 and NT4.0 machines that need to be able to network
 together.  I have never set up a network before but understand the
 basics of how they work.  I would like to have internet access through
 the Linux box (I assume some kind of IP Masquerading would be needed),
 printer sharing and file sharing also.  From there, local email, central
 faxing and group scheduling seem pretty easy.
 
 So the question is: What software should I use to network these
 different operating systems together?  Netatalk looks like a good
 solution if it were just Linux and the Mac but I don't know what to use
 in this situation.

You've actually listed several requirements:

1) Internet access for a small LAN.

Run tcp/ip on all clients.  Linux box connects to Internet via modem,
ISDN, or whatever.  RH 5.x ships with everything you need in a normal
install; you will need to turn on IP Forwarding and run appropriate
ipfwadm rules (search for ipfwadm in the message archives for some recent
suggestions).  Optionally, run DHCPD on Linux box to assign IP addresses
and named (aka BIND) for local nameservice.  I'd get the networking under
control before doing anything else; without it you're stopped anyway.

There are several FAQs discussing this in more detail.

2) File and printer sharing.

For the Win95/NT boxen, Samba is probably easiest.  You may need to do
some special configuration of the samba server to support encrypted
passwords on the Windows box (esp. NT 4.0 with SP3).  This is all
documented in the doc files included with the samba rpm and on the samba
web site.

I haven't done anything like this with Macs, but your thought to use
Netatalk is probably the way to go.

An alternative would be to run the mars_nwe netware emulator server and
use IPX on the clients to do file and print serving.


3) Applications

There are several options here.  At the simplest, just share files.  More
robust, run web server (apache), email (sendmail + pop/imap or qmail),
mail lists (majordomo, smartlist, petidomo), news (inn or dnews) plus
suitable web-based and client-server apps.  Most of the necessary servers
come with RedHat (qmail, petidomo are available off the web and dnews is
commercial).  You can also do databases (msql, mysql, Postgresql) with and
without web interfaces.

WebEvent is a decent web-based calendar program.  I think it's commercial
now, there may still be a free version out there.  Search for their site
at any decent web search server.

BSCW is a rather capable "group collaboration" server developed in Europe
and freely available.  Search for their main distribution site for
details.

The sky is the limit here; I'm sure I've totally ignored someone's
favorite application!  Keep focused on your users' needs and you'll do
allright.

Good luck!

Steve

---
Stephan A. Greene   [EMAIL PROTECTED]
Manager, IT Systems Engineering http://www.washsq.com
Washington Square Associates, Inc.  "technology simplified" (TM)
202-544-0222(main)/1-800-759- PIN 1030552# (pager)
---


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: eth0

1998-05-26 Thread Eric L. Green [EMAIL PROTECTED]

On Tue, 26 May 1998, Robert Fausey wrote:
 I am able to start eth0 and therefore see the local network.  The
 network card is working fine in Windows 95 but not with RedHat.  In the
 control panel, it is set to start at boot but it does not.  Starting
 eth0 manually no effect.

What kind of network card? What message do you get a bootup about the
network card? What happens if you manually "insmod" the network card
driver (e.g. "insmod 3c509" or "insmod ne")?

One common problem is that Red Hat ships the 2.0.32 kernel with the "ne"
(NE2000) driver compiled as a module, but the NE2000 driver currently
doesn't work as a module :-(. Not Red Hat's fault, it's the fault of the
kernel maintainers, because the stock one off of ftp.kernel.org does the
same thing, but you'll probably need to compile the NE2000 driver into the
kernel to make it work right. 

Eric Lee Green   [EMAIL PROTECTED]  Executive Consultants
Systems Specialist   Educational Administration Solutions
 See http://members.tripod.com/~e_l_green


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Error messages

1998-05-26 Thread Rick L. Mantooth

Kevin,
The getwd usually means that you're (or cron) is trying to do something
from a directory that doesn't exist.

Example,
cd /usr/trash

Then in another xterm or VC, type rmdir /usr/trash

Now in the first xterm or VC, type "ls" or "cd .." and you should
get the getcd error. You can then cd /tmp or whatever to get back
to normal.

I'd look over the scripts in /etc/cron.daily and see if any of them
are trying to do something from a specific directory.

Are each of the scripts using #!/bin/sh or maybe some other
shell that has been removed? Maybe #!/bin/sh is typo'd ?

My thoughts,
Rick

On Tue, 26 May 1998, Kevin A. Pieckiel wrote:

 I don't have the slightest clue where the problem is.  I get this
 message daily and it's getting annoying.  Any clues?  Suggestions
 welcome:
 
 
 From [EMAIL PROTECTED] Tue May 26 08:05:07 1998
 Date: Tue, 26 May 1998 01:02:01 -0400
 From: Cron Daemon [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Cron root@gateway run-parts /etc/cron.daily
 
 shell-init: could not get current directory: getwd: cannot access parent directories
 job-working-directory: could not get current directory: getwd: cannot access parent 
directories
 
 Kevin A. Pieckiel
 
 
--
Rick L. Mantooth[EMAIL PROTECTED]
http://www.why.net/users/rickdman/index.html
Love:  two vowels, two consonants, two fools.


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




unsubscribe

1998-05-26 Thread Thomson, Kent




R. Kent Thomson
ISDS Program Manager
2700 E. Foothill Blvd., Suite 200
Pasadena, CA 91107
PH 626.584.0878x136 FAX 626.584.1612
http://www-isds.jpl.nasa.gov

 -Original Message-
 From: [EMAIL PROTECTED]
 [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 26, 1998 7:33 AM
 To:   Thomson, Kent
 Subject:  Re: unsubscribe
 
 WARNING:
   Please try to use '[EMAIL PROTECTED]'
   the next time when issuing (un)subscribe requests.
 
 You have not been removed, I couldn't find your name on the list.
 Make sure you meant to try this list address and not another list,
 such as the [EMAIL PROTECTED]
 What I did find were the following approximate matches
 (The LEFT column is the addresses that we have in our list,
 the RIGHT column is your address and does NOT mean you are
 subscribed using that address):
 
  83 [EMAIL PROTECTED]  17035 [EMAIL PROTECTED]
 866 [EMAIL PROTECTED]   16823 [EMAIL PROTECTED]
 1030 [EMAIL PROTECTED]16654 [EMAIL PROTECTED]
 1134 [EMAIL PROTECTED]  15143 //www-isds.jpl.nasa.gov
 274 [EMAIL PROTECTED]   14913 [EMAIL PROTECTED]
 146 [EMAIL PROTECTED]14864 [EMAIL PROTECTED]
  60 [EMAIL PROTECTED]   14275 [EMAIL PROTECTED]
 722 [EMAIL PROTECTED]14230 [EMAIL PROTECTED]
 
 If you recognise one of these addresses as being the one you
 wanted to unsubscribe, send in a new unsubscribe request
 containing the text:  unsubscribe the_address_you_meant.
 
 If this wasn't your intention or you are having problems getting
 yourself
 unsubscribed, reply to this mail now (quoting it entirely (for
 diagnostic
 purposes), and of course adding any comments you see fit).
 
 Transcript of unsubscription request follows:
 -- 
 From [EMAIL PROTECTED]  Tue May 26 10:32:38 1998
 Received: (qmail 30211 invoked from network); 26 May 1998 14:32:24
 -
 Received: from isds-server.jpl.nasa.gov (137.79.115.100)
   by mail2.redhat.com with SMTP; 26 May 1998 14:32:24 -
 Received: by isds-server.jpl.nasa.gov with Internet Mail Service
 (5.0.1458.49)
  id K89QZBAQ; Tue, 26 May 1998 07:32:23 -0700
 Message-ID:
 [EMAIL PROTECTED]
 From: "Thomson, Kent" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: unsubscribe
 Date: Tue, 26 May 1998 07:32:21 -0700
 X-Priority: 3
 X-Mailer: Internet Mail Service (5.0.1458.49)
 
 
 
 
 R. Kent Thomson
 ISDS Program Manager
 2700 E. Foothill Blvd., Suite 200
 Pasadena, CA 91107
 PH 626.584.0878x136 FAX 626.584.1612
 http://www-isds.jpl.nasa.gov
 
  -Original Message-
  From:  [EMAIL PROTECTED]
  [SMTP:[EMAIL PROTECTED]]
  Sent:  Tuesday, May 26, 1998 7:22 AM
  To:[EMAIL PROTECTED]
  Subject:   redhat-digest Digest V98 #372
  
Message: Message: Re: Another go at IPXMessage:
  RE: Importing Date to Bash ScriptMessage: RE: --help   
  Message: Compaq 4000 NIC ProblemsMessage: Re: single   
  Message: Re: Compaq 4000 NIC ProblemsMessage: RE: ppp
 problem
 Message: Re: Upgrade to XFree86 3.3.2Message: Re:
  floppyMessage: Re: Netscape broke in xfree 3.3.2   
  Message: Re: redhat-digest Digest V98 #357Message:
 networking
  RedHat and win95 helpMessage: Graphical login app   
  Message: System Commander overwrote my MBR:Message: shell
  scriptsMessage: Re: shell scriptsMessage: RH5
 routing
  problems... Help!Message: Re: System Commander overwrote my
  MBR:Message: Re: shell scriptsMessage: Interbase
 for
  RH4.2 - JDBC ??Message: Re: System Commander overwrote my
 MBR:
 Message: 2nd ide hdd?Message: /dev/modem?   
  Message: Re: How to add another IP (different NETWORK) with single
  EthernMessage: libc5 vs libc6Message: Working with
 SRC
  RPMSMessage: Re: networking RedHat and win95 help  
 


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Pls help me..

1998-05-26 Thread Chris Lea

I think that setserial just helps you to configure IRQs and such.  I'd
recommend netcfg for basic configuration.  At least, that's what worked
for me.

-Chris Lea

Sony lloyd wrote:
 
 What should I do to configure my modem?
 Somethin like setserial /dev/modem..or?
 
 Amanda
 
 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.

-- 
---
Chris LeaLucid Designs, LLC 
 "Opportunity is missed by most people because 
it is dressed in overalls and looks like work."
  -Thomas Edison
(310) 475-4727  http://www.luciddesigns.com
---


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Pls help me..

1998-05-26 Thread osama bin zia

I tell you the best way is to go to xwindows then go to the terminal screen and
give command modemtool .

-osama

Sony lloyd wrote:

 What should I do to configure my modem?
 Somethin like setserial /dev/modem..or?

 Amanda

 --
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.




-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




networking help

1998-05-26 Thread Tony Langdon


It's 26 May 98  17:23:55,
We'll return to [EMAIL PROTECTED] and All's
discussion of networking help

 sc One Machine is running Winblows 95 and the other one is running RH 4.2
 sc I want to basically set up the RH box so it a firewall and it dials
 sc into the ISP and the 95 proxies through the LAN.

 sc can someone tell me the basic down and dirty on this ?

I could say "2 words", namely "IP Masquerading".

The best place to go is the IP Masquerade Mini HowTo.  If you have the
HowTos installed on your system, look there, otherwise you'll find them
online as part of the Linux Documentation Project (there is a link from
www.linux.org).

Shouldn't be too hard to setup (I haven't tried yet, but might fiddle
with it at work one day - I have a subnet at home, so don't need to
masquerade :) ).

.. Everyone hates me because I'm paranoid.
--
|Fidonet:  Tony Langdon 3:632/367.2
|Internet: [EMAIL PROTECTED]
|
| Standard disclaimer: The views of this user are strictly his own.



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: Problem just don't leave me alone ;-))

1998-05-26 Thread impu choudhury


This is how I can it to work now...

I login as root
su to my username
type,
xhost + localhost
and then run Circus (the IRC program) and don't get the error anymore .

So far, its working well for me.  Thanks for all the help.



---impu choudhury [EMAIL PROTECTED] wrote:

 Hi Tony,
  Hi Tony, yup, you guessed it, I tried those before but didn't
 work  this is my second install (as somebody suggested that
 something was wrong ;))  There must be a thing I'm not doing right...
 Anyhow, I answered to your advice...see if you think of something
 else...thanks..  
 
 Tony: You need to edit /etc/group to do this (can't remember if the X
 tools will do this as
 well). So the line in /etc/group will read:
 
  ppp:all the usual junk yourlogin
 
 impu: Yes, mine read:
 
 PPP:PbwLx7WbV9Zdw:503:root,impu  - (;-)) I don't care if I gave away
 password)
  
 Tony: Until you get it fixed, there is a simple workaround.  Login as
 root, get your PPP connection up, then type:
 su - yourlogin
 At which point, you should be logged in as yourself, and can IRC
 happily. :-)
 
 impu: But unfortunately, I get this error as soon as I try to launch
 cIRCus (IRC)
 Using cIRCus resource directory: /usr/lib/circus
 Xlib: connection to "localhost.localdomain:0.0" refused by server
 Xlib: Client is not authorized to connect to Server
 couldn't connect to display "localhost.localdomain:0.0"
 
 While I run it just fine while logged on as root.
 
 _
 DO YOU YAHOO!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 
 -- 
   PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST
ARCHIVES!
 http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips
/mailing-lists
  To unsubscribe: mail [EMAIL PROTECTED] with 
"unsubscribe" as the Subject.
 
 

_
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.




Re: PPP Over ISDN

1998-05-26 Thread Mukesh Sundaram

There are probably a couple of fine points that I've gleaned in working
with ISDN vs analog modem. Treating an ISDN modem as an analog modem is
fine if you're only interested in 56Kb, i.e. 1B channel. If, like me,
you have a 3Com Impact IQ, and would like to avail of features like
multi-link PPP and dynamic bandwidth allocation (wherein the data call
yields a B channel to incoming / outgoing calls), there are some
things to pay attention to, which are in no particular order:

1. Authentication mechanism: must use PAP for MLPP support
2. Modem settings:
   - explicitly set all modem switches that are relevant
   - make sure the switch that specifies 56k vs 64k is 64.
 Otherwise, you get only 1B channel.
3. Dialed number
   - I found even for a local call, I had to use 1+areacode+number
 to get proper communication with my ISP.

Hope this helps..

Mukesh


Jake Colman wrote:
 
 I have an external ISDN 'modem' that I'd like to use.  I already have PPP up
 and running over an analog modem so I have no networking issues.  Where can I
 find information on configuring Linux and PPP to use ISDN?  I did scan the
 HOWTOs and did not find anything seemlingly relevant.
 
 Thanx!
 
 --
 Jake Colman

-- 
Mukesh Sundaram   [EMAIL PROTECTED]
1307 S. Mary Ave. #212(408) 730-8647
Sunnyvale, CA 94087   (408) 737-3658 (fax)


-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
 To unsubscribe: mail [EMAIL PROTECTED] with 
   "unsubscribe" as the Subject.