Re: RAM Used by processes

2002-08-11 Thread Edward Dekkers

> How do I find out how much RAM and swap is used by different
> processes? 'free' gives me a total and ps -aux gives me a %
> output. I need a per-process usage of physical and swap memory
> in MB.

Don't know about swap, but you may want to try 'top'.

Regards,
Ed.




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



RE: What's Up with RH73?

2002-08-11 Thread Patrick Nelson

Michael Fratoni wrote:
-
I've seen the same problem working on the installers for the RULE project. 
Red Hat however does say that the minimum processor is a i586, I believe. 
Many older, slower systems crash with a sig 11 while running 
/sbin/loader. I have a PII-200 system here that does the same thing.

Just out of curiosity, you booted with boot: linux nodma in the example 
above?

Why didn't you continue? You can install 7.3 after booting off a RH 7.2 
boot disk. OK, so it's not obvious, but this install method works fine. I 
doubt Red Hat could/would support it, though. ;) 

I will say that I haven't tried this with an upgrade, only a clean 
install, but I see no reason why it wouldn't work as an upgrade. The 
comps file, the install classes, etc. will all load of the CD. Using the 
7.2 boot disk just allows the system to load.

After building the RULE 'miniconda' installer for the 7.3 release, I found 
we had the same problem with crashing on older hardware. I've built some 
of our 7.3 installers with an older kernel and it seems to have resolved 
the issue.
-
Yeah the reason I put the list of systems up is to show this isn't just old
systems.  However old systems running none gui services is a huge benefit in
the Linux world.  I have a bunch of single service servers that work great.
However, dropping off the lower than 586 line IMHO is a bad idea.

Nope boot that system with:  linux ide=nodma

Probably should have but this is a production box (DNS server) and didn't
trust my TS ways of getting it working.  Might think about it again later.
Instead I just updated the kernel and grabbed the latest PostgreSQL (7.2.1)
from the pg site and updated the system at the 72 level.  

Hmm...



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



Re: LDAP administration

2002-08-11 Thread Ziad Samaha

Chad

LDAP Browser is good but I'd rather stick to the command line utilities.

Cheers,

Ziad


>From: Chad Skinner <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: redhat-list <[EMAIL PROTECTED]>
>Subject: LDAP administration
>Date: Sun, 11 Aug 2002 20:15:32 -0500
>
>What graphical administration programs do any of you use and/or which would
>you recommend. I am trying to learn more about LDAP and its administration
>so if any of you know of software I should investigate or resources I 
>should
>read please let me know.
>
>Thanks,
>Chad
>
>
>
>--
>redhat-list mailing list
>unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
>https://listman.redhat.com/mailman/listinfo/redhat-list




_
Chat with friends online, try MSN Messenger: http://messenger.msn.com



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



RAM Used by processes

2002-08-11 Thread harish . k

Hi list,

How do I find out how much RAM and swap is used by different
processes? 'free' gives me a total and ps -aux gives me a %
output. I need a per-process usage of physical and swap memory
in MB.

TIA,

Harish



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



Re: pppd "not replacing existing default route to eth0"

2002-08-11 Thread Kevin - KD Micro Software

ah, same thinking :)
didn't see your message before I replied then.

Thanks.

- Original Message -
From: "Kevin Myers" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 12, 2002 1:01 PM
Subject: Re: pppd "not replacing existing default route to eth0"


> On Mon, 12 Aug 2002 08:46:09 +0800, Kevin wrote:
>
> >When I run pppd, it's connecting to the ISP ok, but traffic doesn't go
anywhere and in /var/log/messages, I'm getting "not replacing existing
default route to eth0". I can see why outgoing traffic isn't going anywhere
cause its trying to go out via eth0, but why is this?
> >
> >I *think* this has something to do with static-routes in /etc/sysconfig
but I'm not sure.
>
> Why do you think that?
>
> The log file says that the problem is a routing one. There is no route to
> the internet, as ppp has not replaced the default gateway that was already
> in place.
>
> What you need to find out is where the current default route is coming
from,
> and why it's there. (169.254 is a windows auto config IP???)
>
> This would be easy to test, before you bring ppp up delete the default
route
> with:
>
> route del default
>
> and see what happens.
>
> You can check the routing table with:
>
> route
>
> and restore the old default gateway with
>
> route add default gw  169.254.236.254
>
> (Though unless you know what this is for, it's not useful)
>
> HTH.
>
>
>
> --
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
> https://listman.redhat.com/mailman/listinfo/redhat-list




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



Re: pppd "not replacing existing default route to eth0" [solved]

2002-08-11 Thread Kevin - KD Micro Software




Thanks for the quick response 
Ed.
I knew it had something to do with the routing, and I had had trouble with 
the static-routes file before but it didn't appear to be it this time.I 
dunno why I didn't think of this before, but a simple route del 
default and then route add default ppp0 sorted it out 
perfectly.
Thanks anyway.
Kevin 
GreenKD Micro Software :: "Servicing all ends of the evolutionary 
scale" - Frank Holmes[EMAIL PROTECTED]
MP 107, Market City, 280 Bannister Road, Canning Vale WA 
6155.Phone: 9256 1566 (2778 internal)     Mobile: 
0419 949 254.
 
- Original Message - 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 12, 2002 9:04 AM
Subject: Re: pppd "not replacing existing default 
route to eth0"
> On Mon, 12 Aug 2002, Kevin - KD Micro Software wrote:> 
> > When I run pppd, it's connecting to the ISP ok, but traffic 
doesn't go> > anywhere and in /var/log/messages, I'm getting "not 
replacing existing> > default route to eth0". I can see why outgoing 
traffic isn't going> > anywhere cause its trying to go out via eth0, 
but why is this?> > > > I *think* this has something to do 
with static-routes in /etc/sysconfig> > but I'm not sure.> 
> Do the static routes include a static default route?  If so, then 
you are> probably correct in your guess.> > At this point 
the obvious answer is to "experiment".  Making sure you keep> a copy 
of your configuration files, delete the static routes you guess may> be 
causing the problem.  If that clears things up with regards to 
Internet> connectivity...then you may be all the way thereor part of 
the way > there.  Depending on your network topology you may have to 
add additional > static routes to compensate for the new default 
route.> > Regards,> Ed> > -- > 
http://www.shorewall.net/  for 
all your firewall needs> http://www.greshko.com http://webcams.greshko.com> 
> > > -- > redhat-list mailing list> 
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe> https://listman.redhat.com/mailman/listinfo/redhat-list


Re: pppd "not replacing existing default route to eth0"

2002-08-11 Thread Kevin Myers

On Mon, 12 Aug 2002 08:46:09 +0800, Kevin wrote:

>When I run pppd, it's connecting to the ISP ok, but traffic doesn't go anywhere and 
>in /var/log/messages, I'm getting "not replacing existing default route to eth0". I 
>can see why outgoing traffic isn't going anywhere cause its trying to go out via 
>eth0, but why is this?
>
>I *think* this has something to do with static-routes in /etc/sysconfig but I'm not 
>sure.

Why do you think that?

The log file says that the problem is a routing one. There is no route to
the internet, as ppp has not replaced the default gateway that was already
in place.

What you need to find out is where the current default route is coming from,
and why it's there. (169.254 is a windows auto config IP???)

This would be easy to test, before you bring ppp up delete the default route
with:

route del default 

and see what happens.

You can check the routing table with:

route

and restore the old default gateway with

route add default gw  169.254.236.254

(Though unless you know what this is for, it's not useful)

HTH.



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



about memory leak when I call gethostbyname at platform Redhat Linux 7.2

2002-08-11 Thread Gu Jian





emergence problem! I 
need your help!
Platfrom Rredhat 
Linux 7.2, I called the system function gethostbyname, then I used memory leak 
tools(mtrace and valgrind) to trace memory leak, I found the gethostbyname 
having a memory leak.
I can use command 
"man freehostent", but I can not use, the gcc compiler told me the function 
"freehostent" not found. What can I do?
My example source as 
follow :
#include #include 
#include #include 
#include #include 
#include typedef unsigned int 
u_int32;char serv[2][256]={{"192.168.1.168"},{"ntp.psh.com.cn"}};
int main(int argc, char 
*argv[]){ mtrace(); u_int32 num;  //unsigned int32; struct hostent 
*hp; if ((hp = gethostbyname(serv[1]) ) != 0) 
{  memmove((char *)&num, hp->h_addr, 
sizeof(u_int32));  printf("OK\n"); } //freehostent(hp); return 
1;}
 
best 
regards!
Firmstone 
Zhang


UUCP

2002-08-11 Thread Bruce Conmee



I am using 
Linux RedHat 5.2 and I connect remotely to another machine using UUCP. The 
system work fine for most of the time. However if the system fails to connect to 
the remote machine for any reason I get an error message "retry time out not 
reached" I cant see where I can alter the retry time for UUCP. How do I alter 
the retry time for UUCP?
 
I am using 
Taylor UUCP   DISCLAIMER***The information contained in this email and any attachmentsare intended for the named recipient only. It may contain privileged and confidential information, if you are not thenamed recipient, you must not disclose, copy, distribute or take any action in reliance on it. The legal privilege and confidentiality attached to this email is not waived, lost or destroyed by reason of a mistaken delivery to you. If youhave received this email in error, please notify the sender and delete it from your computer and network. Unless stated otherwise, this email represents the views of the sender andnot necessarily those of the RTA.**


Re: LDAP administration

2002-08-11 Thread Aly S.P Dharshi

Chad Skinner wrote:

>What graphical administration programs do any of you use and/or which would
>you recommend. I am trying to learn more about LDAP and its administration
>so if any of you know of software I should investigate or resources I should
>read please let me know.
>
>Thanks,
>Chad
>
>
>
There is the GQ client under linux and the Java based ldap browser ( do 
a search on google)




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



Re: Checking Hard Drive Sizes

2002-08-11 Thread Mohd Irfan R Khan

u can use df -ah 
on a shell prompt 
- Original Message - 
From: "Jim Hale" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 11, 2002 8:29 PM
Subject: RE: Checking Hard Drive Sizes


> Thanks All :)
> 
> Now - there wouldn't be anyway using the 'Konquerer' program to view the
> information there? I'm a bit spoiled when I use the File Explorer in
> WinBloze.
> 
> Thanks!
> 
> Jim Hale
> ---
> Visit Our MIDI & Digital Audio Website at http://hale.dyndns.org or Our
> Forums At http://haleforum.dyndns.org
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> On Behalf Of Anthony Abby
> Sent: Sunday, August 11, 2002 7:58 AM
> To: Redhat-List
> Subject: Re: Checking Hard Drive Sizes
> 
> 
> df
> 
> On Sun, 2002-08-11 at 08:29, Jim Hale wrote:
> > What's the command (or program) that I can run to show me the space 
> > used/left on the Hard Drives?
> > 
> > Jim Hale
> 
> 
> 
> 
> -- 
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
> https://listman.redhat.com/mailman/listinfo/redhat-list
> 
> 
> 
> -- 
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
> https://listman.redhat.com/mailman/listinfo/redhat-list
> 


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.381 / Virus Database: 214 - Release Date: 8/2/2002



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



Re: mouse not working with KVM switch and Compaq Remote Inside Lights Out board

2002-08-11 Thread Edward Dekkers

> I have a compaq RACK mount keyboard with integrated mouse and Compaq KVM 8
> port switch. Also I have  Compaq Remote Insight Lights Out management
board.

More than likely the mouse doesn't like the KVM or the KVM doesn't like the
mouse. I've seen this before.

Try a different mouse. Sometime the mouse doesn't re-initialize properly
when the KVM signals it to. Sometimes the KVM doesn't wait long enough for
the mouse to re-initialize either. Sometimes (like with my old mouse) I had
to wait 3 seconds after a switch before I moved it, or it would screw up X
Windows.

All my problems went away when I got a Microsoft Intellimouse Optical, but
YMMV.

These things tend to happen a bit with KVMs - not much you can do about it.

Regards,
Ed.




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



Re: pny Compact flash Reader

2002-08-11 Thread Edward Dekkers

> me too! ;-) now i have a useless pny flash card reader. any suggestions?
> ;-)

Sell it to an M$ user?

Hang it from your rearview mirror in your car?

Make a necklace out of it?

Just off the top of my head.

:)

Regards,
Ed.




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



LDAP administration

2002-08-11 Thread Chad Skinner

What graphical administration programs do any of you use and/or which would
you recommend. I am trying to learn more about LDAP and its administration
so if any of you know of software I should investigate or resources I should
read please let me know.

Thanks,
Chad



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



Re: pppd "not replacing existing default route to eth0"

2002-08-11 Thread Ed . Greshko

On Mon, 12 Aug 2002, Kevin - KD Micro Software wrote:

> When I run pppd, it's connecting to the ISP ok, but traffic doesn't go
> anywhere and in /var/log/messages, I'm getting "not replacing existing
> default route to eth0". I can see why outgoing traffic isn't going
> anywhere cause its trying to go out via eth0, but why is this?
> 
> I *think* this has something to do with static-routes in /etc/sysconfig
> but I'm not sure.

Do the static routes include a static default route?  If so, then you are
probably correct in your guess.

At this point the obvious answer is to "experiment".  Making sure you keep
a copy of your configuration files, delete the static routes you guess may
be causing the problem.  If that clears things up with regards to Internet
connectivity...then you may be all the way thereor part of the way 
there.  Depending on your network topology you may have to add additional 
static routes to compensate for the new default route.

Regards,
Ed

-- 
http://www.shorewall.net/  for all your firewall needs
http://www.greshko.com http://webcams.greshko.com



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



Re: What's Up with RH73?

2002-08-11 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 11 August 2002 08:33 pm, Michael Fratoni wrote:

> Why didn't you continue? You can install 7.3 after booting off a RH 7.2
> boot disk. OK, so it's not obvious, but this install method works fine.
> I doubt Red Hat could/would support it, though. ;)
>
> I will say that I haven't tried this with an upgrade, only a clean
> install, but I see no reason why it wouldn't work as an upgrade. The
> comps file, the install classes, etc. will all load of the CD. Using
> the 7.2 boot disk just allows the system to load.

Before someone tries this and finds a problem, I should point out that I 
have done this on an IDE system using ext2 filesystems and booting with 
'linux text'. 
On systems with scsi, ext3, reiserfs, raid, etc. it will probably fail 
unless you do a little work and manage to provide modules built for the 
boot kernel. Updates disk, perhaps?

I just did another install to verify that it worked, and the only problem 
I found was that the NIC wasn't found at install time, probably because 
the driver couldn't be loaded. 

- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1XCQ8ACgkQn/07WoAb/StqKwCdHBo4znDwrBbEc2vG9ihXayr8
o9QAnRRg+JC96ektPFof/Cw07UyrFrPr
=LThz
-END PGP SIGNATURE-



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



pppd "not replacing existing default route to eth0"

2002-08-11 Thread Kevin - KD Micro Software



Hi all,
 
When I run pppd, it's connecting to the ISP ok, but 
traffic doesn't go anywhere and in 
/var/log/messages, I'm getting "not replacing existing default route to eth0". I 
can see why outgoing traffic isn't going anywhere cause its trying to go out via 
eth0, but why is this?
 
I *think* this has something to do with 
static-routes in /etc/sysconfig but I'm not sure.
 
/var/log/messages
Aug 12 08:39:02 mail pppd[17779]: pppd 2.4.1 
started by root, uid 0Aug 12 08:39:34 mail pppd[17779]: Serial connection 
established.Aug 12 08:39:34 mail pppd[17779]: Using interface ppp0Aug 12 
08:39:34 mail pppd[17779]: Connect: ppp0 <--> /dev/ttyS0Aug 12 
08:39:42 mail pppd[17779]: not replacing existing default route to eth0 
[169.254.236.254]Aug 12 08:39:42 mail pppd[17779]: local  IP address 
XXX.XXX.XXX.XXXAug 12 08:39:42 mail pppd[17779]: remote IP address 
XXX.XXX.XXX.XXX
TIA

Kevin 
GreenKD Micro Software :: "Servicing all ends of the evolutionary 
scale" - Frank Holmes[EMAIL PROTECTED]
MP 107, Market City, 280 Bannister Road, Canning Vale WA 
6155.Phone: 9256 1566 (2778 internal)     Mobile: 
0419 949 254.


Re: What's Up with RH73?

2002-08-11 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 09 August 2002 06:13 pm, Patrick Nelson wrote:
> OK, I've just got to say something and I hate the fact that I am able
> to say it.  Something has changed with the install process of RH73 and
> it is cutting out a large percentage systems.  I'm not sure of where to
> begin, but lets just say that I'm trying to upgrade my RH72, RH71, and
> RH62 systems to RH73.

I've seen the same problem working on the installers for the RULE project. 
Red Hat however does say that the minimum processor is a i586, I believe. 
Many older, slower systems crash with a sig 11 while running 
/sbin/loader. I have a PII-200 system here that does the same thing.

> The next system was an HP OmniBook 5700ct laptop.  The system was
> running RH72.  The system would not boot into the install because it
> was halting during partition check because of a dma timeout (or
> actually no timeout). Help from this list and RH support could not give
> me a solution to this. After weeks of trying different options and
> looking trough source.  Finally found a way to disable dma correctly to
> allow the install process to continue.  Outcome:  System upgraded.

Just out of curiosity, you booted with boot: linux nodma in the example 
above?

>   running install...
>   running /sbin/loader
>   Install exited abnormally -- received signal 11
> Which then goes to a line that says "you man safely reboot your
> system". Great signal 11... bad hardware frigging wonderful!  Booting
> off a RH72 floppy with the RH 73 CD goes into the install (of course I
> didn't continue).  Hmm...  Outcome:  No upgrade preformed.

Why didn't you continue? You can install 7.3 after booting off a RH 7.2 
boot disk. OK, so it's not obvious, but this install method works fine. I 
doubt Red Hat could/would support it, though. ;) 

I will say that I haven't tried this with an upgrade, only a clean 
install, but I see no reason why it wouldn't work as an upgrade. The 
comps file, the install classes, etc. will all load of the CD. Using the 
7.2 boot disk just allows the system to load.

After building the RULE 'miniconda' installer for the 7.3 release, I found 
we had the same problem with crashing on older hardware. I've built some 
of our 7.3 installers with an older kernel and it seems to have resolved 
the issue.

- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.2 in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1XAmUACgkQn/07WoAb/SsbsgCfe+MJAn2JIVqfQzzP69ZL7apI
/LEAnjYr6DgMiby5xrRzq+Vaww4J47ee
=piEL
-END PGP SIGNATURE-



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



RE: Lower MTU on NIC?

2002-08-11 Thread Darryl Harvey

man ifconfig




Rgds,
Darryl


> -Original Message-
> From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On
> Behalf Of Peter Kiem
> Sent: Monday, August 12, 2002 9:08 AM
> To: Red Hat Mailing List
> Subject: Lower MTU on NIC?
> 
> Hi all,
> 
> I'm having problems with a mailserver and I think it may be an MTU
problem.
> The NIC is currently set to 1500.
> 
> 1. How do you lower the MTU on the NIC, preferably without a reboot.
> 2. What MTU would you suggest?
> 
> 
> --
> Regards,
> +---+-+
> | Peter Kiem| E-Mail: <[EMAIL PROTECTED]> |
> | Zordah IT | Mobile: +61 0414 724 766|
> |   IT Consultancy &| WWW   : www.zordah.net  |
> |   Internet Hosting| ICQ   : "Zordah" 81 |
> +---+-+
> 
> 
> 
> --
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
> https://listman.redhat.com/mailman/listinfo/redhat-list



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



Re: HOWTO Remove Cron in Logwatch

2002-08-11 Thread Tom Pollerman

On Sun, 11 Aug 2002 08:43:02 -0400 (EDT)
Joe Giles wrote:

> 
> I found the files... So, basically, I can just remove (move) the
> file out of the services directory and this will take care of it?
> 

The preferred method is to list the Services that you want Logwatch to
monitor in:

/etc/log.d/logwatch.conf

But, I suppose, removing Logwatch's Cron script from
/etc/log.d/scripts/services would keep that Service's activity in
/var/log/messages from being parsed..
As you suggest, just move the script file to someplce else, and
replace it if the need ever arises.

Cheers,

 Tom   


> > On Sat, 10 Aug 2002 16:58:03 -0400 (EDT)
> > Joe Giles wrote:
> > 
> > > 
> > > List, 
> > > 
> > > This is probobly an elementary question, so please for give me
> > > :)
> > > 
> > > How would you remove a cron job from listing in LOGWATCH?
> > > 
> > > I run a cron job every minute and my daily logwatch report is
> > > RATHER LARGE.
> > > 
> > > I have entered > /dev/null after the job, but it still lists in
> > > the CRON log.
> > > 
> > > How can I stop this?
> > > 
> > > Thanks
> > > 
> > > Joe Giles
> > > [EMAIL PROTECTED]
> > > AOL ID: mcigiles
> > 
> > On my RH 7.0 machine, the Logwatch configuration file is located
> > at:
> > 
> >  /etc/log.d/logwatch.conf
> > 
> > It is fairly well commented, but the Services which it logs are
> > 
> >   Services= ALL
> > 
> >  by default.
> > You can change this section to reflect only those Services
> > (Logwatch lists  them in
> > 
> >/etc/log.d/scripts/services  ) 
> > 
> > that you may it want  to monitor. There are examples of the syntax
> > in the /etc/log,d/logwatch.conf file.
> > 
> > 
> > Regards,
> > 
> >   Tom
> > 



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Calbazana, Al

I'm just going from my limited experience...  I've had RH on a PII-200 w/
128MB and w/ 256MB, a PII-233 w/ 256 MB RAM, and an AMD K something or other
300.  Running an X environment on any of the above was not much fun.  Given
those setups, I found it less of a hassle to run in the shell.  I spent far
more time being productive than "waiting" for X apps to respond.  KDE and
Gnome would "run" but they didn't respond well.  This all could've been my
setup at the time, who knows...  I do know that any windowing environment is
going to be resource intensive.

I now run on a PIII-450 with 512 MB RAM, a Voodoo 3D, a 30GB Maxtor 7200,
and a 4GB Quantum Bigfoot.  No complaints here!  

I'm surprised Win2k seemed to perform better given that same setup :)
Win95, I can understand since it does not have as much of the overhead.

Thanks,

Al

-Original Message-
From: Mike Burger [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, August 11, 2002 11:37 AM
To: '[EMAIL PROTECTED]'
Subject: RE: newbie question: how to speed up linux

The problem with this answer is that the guy has 192MB of RAM, and 2 hard 
drives.  I can't vouch for his disk space availability, but 192MB should 
still be plenty of RAM in which to run KDE.

On Sun, 11 Aug 2002, Calbazana, Al wrote:

> I assume you are booting straight to some X environment (KDE, Gnome, and
> Enlightenment).  IMO, using a GUI with such low resources is asking for
it.
> If you are going to use a machine like that, consider booting straight to
> command line :)  Besides, that's the best way to learn!
> 
> Thanks,
> 
> Alejandro
> 
> -Original Message-
> From: Anders Thoresson [mailto:[EMAIL PROTECTED]] 
> Sent: Sunday, August 11, 2002 8:02 AM
> To: [EMAIL PROTECTED]
> Subject: newbie question: how to speed up linux
> 
> I've just taken my first stumbling steps down on the Linux road,
> installing Redhat 7.3. Many things have impressed me so far, but the
> over all speed of my system is a big dissappointment. Compared to when I
> run Windows 95 and Windows 2000 on the same computer, almost everything
> seems to take for ever.
> 
>  Clicking "New Message" in Evolution until the new message turns up
> takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
> between 30 seconds and a minute. Recieving 500 mails or so from my ISP
> somewhere between 15 och 30 minutes.
> 
>  My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
> and 2 ATA33 hard drives.
> 
>  What's the bottleneck? Could anything besides plugging in more RAM be
> done to boost the performance?
> 
>  Best regards,
> 
>   Anders
> 
> 
> 
> 



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


**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**



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



Lower MTU on NIC?

2002-08-11 Thread Peter Kiem

Hi all,

I'm having problems with a mailserver and I think it may be an MTU problem.  
The NIC is currently set to 1500.

1. How do you lower the MTU on the NIC, preferably without a reboot.
2. What MTU would you suggest?


-- 
Regards,
+---+-+
| Peter Kiem| E-Mail: <[EMAIL PROTECTED]> |
| Zordah IT | Mobile: +61 0414 724 766|
|   IT Consultancy &| WWW   : www.zordah.net  |
|   Internet Hosting| ICQ   : "Zordah" 81 |
+---+-+



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



Re: Another question about enabling SMP

2002-08-11 Thread Joe Giles

I think all you have to do is install the smp verion of the kernel, then boot from it. 

This is what I did to enable my SMP server. I installed the Red Hat SMP Kernel and 
kernel headers from RPM. It was simple.

Hope this helps

Joe

Hi !
Is there anyway to enable SMP without doing a full install again ?
I recall seeing a search engine for the archive database, just can't remember where. 
How do I search the archive for the emails ?
Thx




Joe Giles
[EMAIL PROTECTED]
AOL ID: mcigiles



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Saul Arias

At 02:56 PM 11-08-02, Anders Thoresson wrote:

> > The problem with this answer is that the guy has 192MB of RAM, and 2 hard
> > drives.  I can't vouch for his disk space availability, but 192MB should
> > still be plenty of RAM in which to run KDE.
>I'm running Gnome. Is Gnome more hungry for memory than KDE?
>
>Right now, 95% of my 192 MB RAM is used, but just 6% of my 385 MB of
>swap.
>
>Running just Gnome, Gnomeicu, Evolution and Opera, I would have guessed
>to have a little more free RAM?

I have a PII-266Mhz with 160 MB RAM. I run RedHat 7.3 with Gnome. I usually 
have several xterms open, plus Evolution, Opera and the Yahoo Messenger, 
and the speed is not a problem for me. My impression is that you don't need 
more RAM.

Do a "ps -axfu" to see which processes you are running. Maybe you have 
something running in the background that you don't need. Take a look at the 
"top" command, also. Another suggestion is to "purge" Evolution mailboxes, 
as these can get really big. I don't remember the exact command to do that, 
and I'm in Windows now (I have a network adapter, that I use to connect to 
my wife's laptop, which I have not gotten to run under Linux).

-- 
Saul Arias <[EMAIL PROTECTED]>



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



Re: compiling a new kernel

2002-08-11 Thread ABrady

On Sun, 11 Aug 2002 10:08:39 -0300
Ted Gervais <[EMAIL PROTECTED]> wrote:

> At 12:50 PM 8/10/2002 -0400, you wrote:
> >On Sat, 10 Aug 2002, Ted Gervais wrote:
> >
> > >
> > > Thanks Bob,  and the others responding.
> > >
> > > I tried 'make mrproper' as well.  I guess I am getting desperate.
> > >
> > > Somehow I am thinking that maybe there is a hardware problem?
> > > Could 
> > that be
> > > the reason for things not working??
> >
> >Ted, where exactly is the compile failing?  Can you post the error
> >message.
> 
> That is a bit tricky to answer..  When it fails and I rerun the
> compile process it stops on a different error. And that error could be
> earlier or later than the last one.So each time it stops, it is on
> a different error and not related to the first.  Sometime it is a
> segmentation fault. Like the following:
> 
> misc.c: In function 'misc_open' :
> misc.c:147; Internal error : Segmentation fault.
> Prior to the Error indication it looked like this:
> gcc: Internal error: Illegal Instruction (program as)
> 
> 
> I have never seen this type of refusal to work before.  I am stumped..

I've only seen this behavior twice.

Once was when I was compiling something and I didn't have enough swap.
It was a long time ago and I can't remember what it was, but it forced
me into using a swapfile until I got it built.

The second time was when I had a ram module going bad. I didn't know it
was flaky at the time and it passed memtest. But it finally started
locking during boot. It failed memtest after it reached that stage.
After replacing it the first thing I did was build a kernel. It worked
just fine from then on.

-- 
XP: The ME of NT.



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



Another question about enabling SMP

2002-08-11 Thread Arthur Chan



Hi !
Is there anyway to enable SMP without doing a full 
install again ?
I recall seeing a search engine for the archive 
database, just can't remember where. 
How do I search the archive for the emails 
?
Thx


Re: redhat-list digest, Vol 1 #5045 - 14 msgs

2002-08-11 Thread CM Miller


Well i learned a new command here, ckconfig, but
either one of these along with ps -aux yields any ssh.


I think that the default ipchains is doing something
with it.  I've also nmap my machine and it doesn't
show anything. 

How do I permantely remove the ipchains module from
the kernel.  I've already tried and the output tells
me that it is too busy. 

thanks

-Chris 




>Have you tried "service sshd start" and "chkconfig
>sshd on"?
>
>On Sat, 10 Aug 2002, CM Miller wrote:
>
>> 
>> 
>> Recently upgraded from RH 7.1 to 7.3 and before I
did
>> this, I had openssh running quite well.  
>> 
>> Once I've upgraded to 7.3, openssh stopped working.

>> I'm not sure what has happened.  I've upgraded all
of
>> the rpm packages for openssh and even used apt-get,
>> but to no avail, I can't get it to work.  
>> 
>> Can anyone give me some advice as to why went wrong
>> here?

=
*
GAIM ID:  cmmiller1973
*

__
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Mike Burger

Just remember...even though Linux is reporting your RAM as used, it's not 
all actually being "used".  Take a look at your "cached" and "-/+ buffers" 
to get an idea of what's actually in use.

On 11 Aug 2002, Anders Thoresson wrote:

> > The problem with this answer is that the guy has 192MB of RAM, and 2 hard 
> > drives.  I can't vouch for his disk space availability, but 192MB should 
> > still be plenty of RAM in which to run KDE.
> I'm running Gnome. Is Gnome more hungry for memory than KDE? 
> 
> Right now, 95% of my 192 MB RAM is used, but just 6% of my 385 MB of
> swap. 
> 
> Running just Gnome, Gnomeicu, Evolution and Opera, I would have guessed
> to have a little more free RAM?
> 
> 
> 
> 



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



Re: newbie question: how to speed up linux

2002-08-11 Thread Hal Burgiss

On Sun, Aug 11, 2002 at 08:56:05PM +0200, Anders Thoresson wrote:
> > The problem with this answer is that the guy has 192MB of RAM, and 2 hard 
> > drives.  I can't vouch for his disk space availability, but 192MB should 
> > still be plenty of RAM in which to run KDE.

Sure, its plenty to start with. But how long before X, etc cache
starts taking all this. That's one way to have performance tank.

> I'm running Gnome. Is Gnome more hungry for memory than KDE? 
> 
> Right now, 95% of my 192 MB RAM is used, but just 6% of my 385 MB of
> swap. 
> 
> Running just Gnome, Gnomeicu, Evolution and Opera, I would have guessed
> to have a little more free RAM?

Just a casual observations, based on my previous system which was 256M
Ram, 512 Swap, running just X (no gnome or kde):

On a clean boot, all is great for maybe a week. During this time X
memory consumption slowly increases, I guess due to caching, etc.
Eventually swap usage increases also, of course. At some point,
usually around 75% full, swap usage becomes a severe performance
hindrance (at what point this happens depends on kernel version --
some are much worse than others). Something that was very fast,
becomes an egg-sucking dog. So my solution, when I couldn't stand it
anymore, was to restart X. This frees up all the various X memory.
For me, this was every 7-14 days, or so.

It seems X-4.2 is much better about all this BTW.

Now I am on a 1G machine, and it just isn't an issue. I run X 30+ days
with no performance detriment. Hardly any swap is used.

I would guess these issues would surface faster with memory hogs such
as kde or gnome, etc.

If I had 192M RAM for my usage, I'd want want probably at least 700M
swap to avoid this particular situation.

-- 
Hal Burgiss
 



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



Re: HowTo : Extract word with 'sed'

2002-08-11 Thread John H Darrah

On Fri, 9 Aug 2002, Paul Branston wrote:

> On Thu, Aug 08, 2002 at 11:40:32AM -0400, Michael C Tiernan wrote:
> > On Thursday 08 August 2002 08:59, Nick Lindsell said:
> >  > At 14:34 08/08/2002 +0200, you wrote:
> >  > > "File_21_05082002" and i would like to
> >  > > extract "21" from this.
> >  > >How can i do it with 'sed'?
> >  >
> >  > No need for sed, cut is simpler:-
> >  > $extract= echo "File_21_05082002"|cut -c 6-7
> >
> > Cut is easier for this problem but I'd modify it one bit
> > $extract= `echo "File_21_05082002"|cut -d_ -f2`
> >
> > This assumes (*cough*) that you want the value between the two "_" characters.
> >
> > To answer your original question.  In sed:
> > $extract=`echo $Fname | sed -e "s/^File_//" -e "s/_[0-9]*$//"`
> >
> > Should come very close to what you wanted (I think...)
>
> or in sed using 1 pattern match assuming File_ always comes before the
> digits and the end of the digits is a _ character.
>
>  echo "File_21_05082002"|sed -e 's/^File_\(.*\)_.*$/\1/'
>

Or just use shell globbing:

  orig="File_21_05082002"
  temp=${orig#*_}
  result=${temp%_*}
  echo $result

-- 
John Darrah (u05192)| Dept: N/C Programming
Giddens Industries  | Ph: (425) 353-0405 #133
PO box 3190 | Ph: (206) 767-4212 #133
Everett  WA98203| Fx: (206) 764-9639



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Anders Thoresson

> The problem with this answer is that the guy has 192MB of RAM, and 2 hard 
> drives.  I can't vouch for his disk space availability, but 192MB should 
> still be plenty of RAM in which to run KDE.
I'm running Gnome. Is Gnome more hungry for memory than KDE? 

Right now, 95% of my 192 MB RAM is used, but just 6% of my 385 MB of
swap. 

Running just Gnome, Gnomeicu, Evolution and Opera, I would have guessed
to have a little more free RAM?



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



newbie question: upgrading software through redhat network andup2date

2002-08-11 Thread Anders Thoresson

Are new versions of software like Evolution put on Redhat Network and
made available through up2date, or do I have to get newer packages
somewhere else? 

Is up2date/RHN just for critical bugfixes? 

If, does that mean that if I get a newer version of Evolution from
somewhere else the RHN, then I can't depend on RHN/up2date to get my
critical bugfixes, but rather have to track them down by myself? 







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



Re: newbie question: how to speed up linux

2002-08-11 Thread Kevin MacNeil

You didn't say which desktop you're using, but both the gnome and kde
GUIs are pretty resource intensive.  One possibility is to try a leaner
desktop like xfce (www.xfce.org).  You should be able to switch back and
forth between it and what you're using now.

If you're using gnome and want to stick with it, you can really speed
things up by using gmc to draw the desktop instead of nautilus.  It's
not as pretty but it is faster and more stable.

Another thing I do (I'm not sure how much difference this makes) is to
install processor-specific kernel and glibc packages.  You can find the
latest i686 binaries for both in en/os/i686 at your favorite redhat
update mirror.

For the record, I have a celeron 433 with 384mb ram and run the ximian
gnome desktop (with gmc instead of nautilus) on redhat 7.2, with 
i686-specific versions of the kernel and glibc packages.  I have no
complaints whatsoever with the stability and performance of this setup,
although that wasn't the case before I got rid of nautilus.  Who knows,
maybe it's better now.



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



RE: Checking Hard Drive Sizes

2002-08-11 Thread Bret Hughes

On Sun, 2002-08-11 at 09:59, Jim Hale wrote:
> Thanks All :)
> 
> Now - there wouldn't be anyway using the 'Konquerer' program to view the
> information there? I'm a bit spoiled when I use the File Explorer in
> WinBloze.

is gtop installed?

try that if so.

Bret



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Mike Burger

The problem with this answer is that the guy has 192MB of RAM, and 2 hard 
drives.  I can't vouch for his disk space availability, but 192MB should 
still be plenty of RAM in which to run KDE.

On Sun, 11 Aug 2002, Calbazana, Al wrote:

> I assume you are booting straight to some X environment (KDE, Gnome, and
> Enlightenment).  IMO, using a GUI with such low resources is asking for it.
> If you are going to use a machine like that, consider booting straight to
> command line :)  Besides, that's the best way to learn!
> 
> Thanks,
> 
> Alejandro
> 
> -Original Message-
> From: Anders Thoresson [mailto:[EMAIL PROTECTED]] 
> Sent: Sunday, August 11, 2002 8:02 AM
> To: [EMAIL PROTECTED]
> Subject: newbie question: how to speed up linux
> 
> I've just taken my first stumbling steps down on the Linux road,
> installing Redhat 7.3. Many things have impressed me so far, but the
> over all speed of my system is a big dissappointment. Compared to when I
> run Windows 95 and Windows 2000 on the same computer, almost everything
> seems to take for ever.
> 
>  Clicking "New Message" in Evolution until the new message turns up
> takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
> between 30 seconds and a minute. Recieving 500 mails or so from my ISP
> somewhere between 15 och 30 minutes.
> 
>  My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
> and 2 ATA33 hard drives.
> 
>  What's the bottleneck? Could anything besides plugging in more RAM be
> done to boost the performance?
> 
>  Best regards,
> 
>   Anders
> 
> 
> 
> 



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Calbazana, Al

I assume you are booting straight to some X environment (KDE, Gnome, and
Enlightenment).  IMO, using a GUI with such low resources is asking for it.
If you are going to use a machine like that, consider booting straight to
command line :)  Besides, that's the best way to learn!

Thanks,

Alejandro

-Original Message-
From: Anders Thoresson [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, August 11, 2002 8:02 AM
To: [EMAIL PROTECTED]
Subject: newbie question: how to speed up linux

I've just taken my first stumbling steps down on the Linux road,
installing Redhat 7.3. Many things have impressed me so far, but the
over all speed of my system is a big dissappointment. Compared to when I
run Windows 95 and Windows 2000 on the same computer, almost everything
seems to take for ever.

 Clicking "New Message" in Evolution until the new message turns up
takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
between 30 seconds and a minute. Recieving 500 mails or so from my ISP
somewhere between 15 och 30 minutes.

 My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
and 2 ATA33 hard drives.

 What's the bottleneck? Could anything besides plugging in more RAM be
done to boost the performance?

 Best regards,

  Anders



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


**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**



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



RE: Checking Hard Drive Sizes

2002-08-11 Thread Jim Hale

Thanks All :)

Now - there wouldn't be anyway using the 'Konquerer' program to view the
information there? I'm a bit spoiled when I use the File Explorer in
WinBloze.

Thanks!

Jim Hale
---
Visit Our MIDI & Digital Audio Website at http://hale.dyndns.org or Our
Forums At http://haleforum.dyndns.org

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Anthony Abby
Sent: Sunday, August 11, 2002 7:58 AM
To: Redhat-List
Subject: Re: Checking Hard Drive Sizes


df

On Sun, 2002-08-11 at 08:29, Jim Hale wrote:
> What's the command (or program) that I can run to show me the space 
> used/left on the Hard Drives?
> 
> Jim Hale




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



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



RE: newbie question: how to speed up linux

2002-08-11 Thread Kevin Krieser

I've noticed too that Evolution doesn't seem to be the fastest program out
there.  Probably still a matter of maturity.  In tests, it downloaded and
moved mail slower than Mozilla, for instance.  Though I liked the program
better.  So I don't think it is Linux thats to blame.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Anders Thoresson
Sent: Sunday, August 11, 2002 7:02 AM
To: [EMAIL PROTECTED]
Subject: newbie question: how to speed up linux


I've just taken my first stumbling steps down on the Linux road,
installing Redhat 7.3. Many things have impressed me so far, but the
over all speed of my system is a big dissappointment. Compared to when I
run Windows 95 and Windows 2000 on the same computer, almost everything
seems to take for ever.

 Clicking "New Message" in Evolution until the new message turns up
takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
between 30 seconds and a minute. Recieving 500 mails or so from my ISP
somewhere between 15 och 30 minutes.

 My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
and 2 ATA33 hard drives.

 What's the bottleneck? Could anything besides plugging in more RAM be
done to boost the performance?

 Best regards,

  Anders



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



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



Re: compiling a new kernel

2002-08-11 Thread Ted Gervais

At 12:50 PM 8/10/2002 -0400, you wrote:
>On Sat, 10 Aug 2002, Ted Gervais wrote:
>
> >
> > Thanks Bob,  and the others responding.
> >
> > I tried 'make mrproper' as well.  I guess I am getting desperate.
> >
> > Somehow I am thinking that maybe there is a hardware problem? Could 
> that be
> > the reason for things not working??
>
>Ted, where exactly is the compile failing?  Can you post the error
>message.

That is a bit tricky to answer..  When it fails and I rerun the compile 
process it stops on a different error. And that error could be earlier or 
later than the last one.So each time it stops, it is on a different 
error and not related to the first.  Sometime it is a segmentation fault. 
Like the following:

misc.c: In function 'misc_open' :
misc.c:147; Internal error : Segmentation fault.
Prior to the Error indication it looked like this:
gcc: Internal error: Illegal Instruction (program as)


I have never seen this type of refusal to work before.  I am stumped..

>You might want to start from scratch by going into
>/usr/src/linux-2.4/configs and copying the config of you choice back to
>the linux-2.4 directory as .config.


That is what I eventually did.  I had started by making my own but than 
felt - I better leave well  enough alone and take what is already in place 
and just amend that file  for the various options I need to add.


>Once that's done then do a "make mrproper", then "make oldconfig" and do

That was what I did next.  Or rather,  I backed up my .config file and than 
ran "make mrproper"  and than copied that backup file back to 
".config"  and than began the compile process.


>"make dep clean modules modules_install bzImage"


Yes.  But because I was apprehensive about it working properly, I just ran 
"make dep clean bzImage"  ; leaving the modules to compile at a later time.

And all that still didn't work..



>--
>Gerry
>
>"The lyfe so short, the craft so long to learne"  Chaucer
>
>
>
>
>--
>redhat-list mailing list
>unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
>https://listman.redhat.com/mailman/listinfo/redhat-list

---
Ted Gervais,
Coldbrook, Nova Scotia, Canada



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



Re: newbie question: how to speed up linux

2002-08-11 Thread Trapazode

Mike Burger wrote:

>I have a similarly configured machine, with the exception of hte RAM...my 
>PII 266 only has 64MB, and I often note a slowness in KDE, but I assume it 
>to be a lack of RAM, as I often note the system swapping.
>
>Check "free" to make sure your system is recognizing the full complement 
>of memory in the box.
>
>On 11 Aug 2002, Anders Thoresson wrote:
>
>>I've just taken my first stumbling steps down on the Linux road,
>>installing Redhat 7.3. Many things have impressed me so far, but the
>>over all speed of my system is a big dissappointment. Compared to when I
>>run Windows 95 and Windows 2000 on the same computer, almost everything
>>seems to take for ever.
>>
>> Clicking "New Message" in Evolution until the new message turns up
>>takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
>>between 30 seconds and a minute. Recieving 500 mails or so from my ISP
>>somewhere between 15 och 30 minutes.
>>
>> My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
>>and 2 ATA33 hard drives.
>>
>> What's the bottleneck? Could anything besides plugging in more RAM be
>>done to boost the performance?
>>
>> Best regards,
>>
>>  Anders
>>
>>
>>
>>
>
>
>
I have a 1.3ghz computer with 512 megs of ram I too am seeing this when 
I fist installed RH it seemed to do ok however I am now suspecting the 
update2 and the kernal up dates that I have done using it it is not 
running as fast as it did when I fist installed it I think I am going 
 to start from scratch.






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



RE: newbie question: how to speed up linux

2002-08-11 Thread Chris Mason

I have a Dell Latitude 233 MHz laptop which I run RH 7.3 and KDE. It's
not fast but I use it as a lot when I don't want to sit in front of my
workstation, especially as I have wireless and can be anywhere in the
house. 

I have two similar machines, I installed windows on the other and it
practically stopped it was so slow. I think you expect too much from
such a slow machine. If you don't run a gui, for instance as a server,
you can expect some reasonable work out of it, but as a desktop, it's a
bit too weak for real work.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Mike Burger
Sent: Sunday, August 11, 2002 8:42 AM
To: [EMAIL PROTECTED]
Subject: Re: newbie question: how to speed up linux

I have a similarly configured machine, with the exception of hte
RAM...my 
PII 266 only has 64MB, and I often note a slowness in KDE, but I assume
it 
to be a lack of RAM, as I often note the system swapping.

Check "free" to make sure your system is recognizing the full complement

of memory in the box.

On 11 Aug 2002, Anders Thoresson wrote:

> I've just taken my first stumbling steps down on the Linux road,
> installing Redhat 7.3. Many things have impressed me so far, but the
> over all speed of my system is a big dissappointment. Compared to when
I
> run Windows 95 and Windows 2000 on the same computer, almost
everything
> seems to take for ever.
> 
>  Clicking "New Message" in Evolution until the new message turns up
> takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
> between 30 seconds and a minute. Recieving 500 mails or so from my ISP
> somewhere between 15 och 30 minutes.
> 
>  My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB
RAM
> and 2 ATA33 hard drives.
> 
>  What's the bottleneck? Could anything besides plugging in more RAM be
> done to boost the performance?
> 
>  Best regards,
> 
>   Anders
> 
> 
> 
> 



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



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



Re: Checking Hard Drive Sizes

2002-08-11 Thread Anthony Abby

df

On Sun, 2002-08-11 at 08:29, Jim Hale wrote:
> What's the command (or program) that I can run to show me the space
> used/left on the Hard Drives?
> 
> Jim Hale




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



Re: newbie question: how to speed up linux

2002-08-11 Thread Mike Burger

I have a similarly configured machine, with the exception of hte RAM...my 
PII 266 only has 64MB, and I often note a slowness in KDE, but I assume it 
to be a lack of RAM, as I often note the system swapping.

Check "free" to make sure your system is recognizing the full complement 
of memory in the box.

On 11 Aug 2002, Anders Thoresson wrote:

> I've just taken my first stumbling steps down on the Linux road,
> installing Redhat 7.3. Many things have impressed me so far, but the
> over all speed of my system is a big dissappointment. Compared to when I
> run Windows 95 and Windows 2000 on the same computer, almost everything
> seems to take for ever.
> 
>  Clicking "New Message" in Evolution until the new message turns up
> takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
> between 30 seconds and a minute. Recieving 500 mails or so from my ISP
> somewhere between 15 och 30 minutes.
> 
>  My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
> and 2 ATA33 hard drives.
> 
>  What's the bottleneck? Could anything besides plugging in more RAM be
> done to boost the performance?
> 
>  Best regards,
> 
>   Anders
> 
> 
> 
> 



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



Re: Checking Hard Drive Sizes

2002-08-11 Thread Michael Scottaline

On Sun, 11 Aug 2002 07:29:33 -0500
"Jim Hale" <[EMAIL PROTECTED]> scribbled intuitively:

>What's the command (or program) that I can run to show me the space
>used/left on the Hard Drives?
>
>Jim Hale
>---
>Visit Our MIDI & Digital Audio Website at http://hale.dyndns.org or Our
>Forums At http://haleforum.dyndns.org
==
Try "df" w/o quotes
Mike


-- 
"Education is a progressive discovery of our own ignorance."
   --Will Durant



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



Checking Hard Drive Sizes

2002-08-11 Thread Jim Hale

What's the command (or program) that I can run to show me the space
used/left on the Hard Drives?

Jim Hale
---
Visit Our MIDI & Digital Audio Website at http://hale.dyndns.org or Our
Forums At http://haleforum.dyndns.org



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



newbie question: how to speed up linux

2002-08-11 Thread Anders Thoresson

I've just taken my first stumbling steps down on the Linux road,
installing Redhat 7.3. Many things have impressed me so far, but the
over all speed of my system is a big dissappointment. Compared to when I
run Windows 95 and Windows 2000 on the same computer, almost everything
seems to take for ever.

 Clicking "New Message" in Evolution until the new message turns up
takes a couple of seconds. Starting OpenOffice 1.0 Writer somewhere
between 30 seconds and a minute. Recieving 500 mails or so from my ISP
somewhere between 15 och 30 minutes.

 My computer is a PII-233, ATI Mach64 3D Rage IIC for video, 192 MB RAM
and 2 ATA33 hard drives.

 What's the bottleneck? Could anything besides plugging in more RAM be
done to boost the performance?

 Best regards,

  Anders



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



Re: How do I start wine?

2002-08-11 Thread Knut Ove Hauge

Hi Joe.
Now I have edit the config file so I only got this
error.
 [roo[root@localhost .wine]# wine c:drive/vb/vb.exe
Invalid path 'c:\windows' for windows directory: does
not exist
Perhaps you have not properly edited or created your
Wine configuration file.
This is '/root/.wine/config'
Knut



--- Joe Giles <[EMAIL PROTECTED]> skrev: > Ok, what I
need you to do is tell me the mount
> points for all the drives you want mapped... Like
> 
> /games = D:\games
> /storage =E:\storage
> /home/juser/c = C:\
> 
> Let me know that and I will try to help ya 
> 
> Thanks
> 
> Joe
> 
> > I dont know how to set the permissions as user
> knut in
> > /home/knut although I logged in as superuser.
> > I copied config to /root/.wine and got several
> > warnings when I tried to access c:drive.
> > If you could edit the config file for me I would
> > appreciate that.
> > hda1 is type msdos (C: in windows)I think althoug
> I
> > dont know the diffrence between msdos and dos.
> > hda5 is vfat. (D:  in windows)
> > floppy is a: I only got one.
> > and my cdrom is drive E: in windows.
> > 
> >  --- Joe Giles <[EMAIL PROTECTED]> skrev: > Ok,
> > assuming that you added the correct paths in the
> > > config file, make sure that you have full
> control
> > > (rw) on the mount, and the "C" drive for wine. 
> > > 
> > > Check that, and Im sure that you will be able to
> run
> > > it. 
> > > 
> > > You can check who owns the mount by doing an ls
> -l.
> > > Make sure that YOU have at least RWX access
> eather
> > > as an owner or group, or, if no one else is
> > > accessing the computer (Like me for home),
> everyone
> > > can have access. I do that so my kids can play
> games
> > > and such using wine.
> > > 
> > > Let me know how it turns out
> > > 
> > > Joe
> > > 
> > > > Hi again.
> > > > Well I tried the second solution you suggested
> and
> > > now
> > > > I can start and stop the wineserver which I
> didnt
> > > > could do earlier.
> > > > But now I get Permission denied
> > > > after I mounted c:drive with
> > > > mount -t msdos /dev/hda1 /home/knut/c:drive 
> > > > when I try
> > > > wine c:vbvb.exe
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > --- Joe Giles <[EMAIL PROTECTED]> skrev: >
> well,
> > > if
> > > > you cant find any config files, then I
> > > > > would recomend reinstalling it. That way you
> > > know
> > > > > that the files were instaled correctly.
> download
> > > the
> > > > > tar file and extract it then go to the
> source
> > > root
> > > > > and type ./tools/wineinstall. Then you
> should be
> > > ok.
> > > > > 
> > > > > 
> > > > > If you dont want to do that, I attached a
> basic
> > > conf
> > > > > file. Make sure you edit it to point to the
> > > correct
> > > > > locations. And any other additions you may
> have.
> > > > > Now, make sure that you mkdir .wine in your
> home
> > > > > directory and place this file in the .wine
> > > folder.
> > > > > Then, when you run a file with wine, it will
> > > build
> > > > > the registery automatically (Or is should
> anyway
> > > > > :-P)
> > > > > 
> > > > > Let me know how it works.
> > > > > 
> > > > > Thanks
> > > > > 
> > > > > Joe
> > > > > 
> > > > > > I know its a hidden file but its not
> there,
> > > nor in
> > > > > > user dir or root.
> > > > > > How do I find the version of wine?
> > > > > > Knut 
> > > > > > 
> > > > > > 
> > > > > > --- Joe Giles <[EMAIL PROTECTED]> skrev:
> >
> > > Well,
> > > > > if
> > > > > > you had wineinstall create it, it will be
> > > > > > > in the home directory of the user that
> you
> > > used
> > > > > to
> > > > > > > make wine. So, if juser was the user
> that
> > > > > created
> > > > > > > wine, it will be in /home/juser/.wine...
> > > Now,
> > > > > keep
> > > > > > > in mind that files that start with the
> "."
> > > are
> > > > > > > hidden (Including directories). You will
> > > need to
> > > > > do
> > > > > > > a ls -la to see it.
> > > > > > > 
> > > > > > > Let me know if you still cant find it,
> let
> > > me
> > > > > know
> > > > > > > the version you are using and I can send
> you
> > > the
> > > > > > > default conf file.
> > > > > > > 
> > > > > > > Thanks
> > > > > > > 
> > > > > > > Joe
> > > > > > > 
> > > > > > > > I cant find the dir .wine
> > > > > > > > 
> > > > > > > > Knut
> > > > > > > > 
> > > > > > > > 
> > > > > > > >  --- Joe Giles <[EMAIL PROTECTED]>
> skrev:
> > > >
> > > > > You
> > > > > > > have
> > > > > > > > to add the MOUNTED drive to the drives
> > > list
> > > > > > > > > in the conf file in .wine
> > > > > > > > > 
> > > > > > > > > Let me know if you need an example
> > > > > > > > > 
> > > > > > > > > Joe
> > > > > > > > > 
> > > > > > > > > > I want to run a windows program
> that
> > > > > reside in
> > > > > > > > > c:drive
> > > > > > > > > > and I have mounted that drive with
> > > > > > > > > > mount -t msdos /dev/hda1 
> > > /root/c:drive
> > > > > > > > > > and type at the command prompt 
> > > > > > > > > > wine /root/c:drive/vb/vb.exe I get
> > > > > 

gcc 3

2002-08-11 Thread maillist

hi,

i tend to upgrade my gcc version 2 onto version 3, but have one
question: as the two compilers are not binary-compatible, is it true
that i need to recompile each and every library in my system (*-devel
packages)?

and will there be an "easy" upgrade path, if redhat switches onto gcc3?

yours josef








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



Re: How do I start wine?

2002-08-11 Thread Knut Ove Hauge

Ok.
/home/knut/d:drive=D:\
/home/knut/c:drive=C:\
/home/knut/cdrom=E:\
I think that is all.
Knut



--- Joe Giles <[EMAIL PROTECTED]> skrev: > Ok, what I
need you to do is tell me the mount
> points for all the drives you want mapped... Like
> 
> /games = D:\games
> /storage =E:\storage
> /home/juser/c = C:\
> 
> Let me know that and I will try to help ya 
> 
> Thanks
> 
> Joe
> 
> > I dont know how to set the permissions as user
> knut in
> > /home/knut although I logged in as superuser.
> > I copied config to /root/.wine and got several
> > warnings when I tried to access c:drive.
> > If you could edit the config file for me I would
> > appreciate that.
> > hda1 is type msdos (C: in windows)I think althoug
> I
> > dont know the diffrence between msdos and dos.
> > hda5 is vfat. (D:  in windows)
> > floppy is a: I only got one.
> > and my cdrom is drive E: in windows.
> > 
> >  --- Joe Giles <[EMAIL PROTECTED]> skrev: > Ok,
> > assuming that you added the correct paths in the
> > > config file, make sure that you have full
> control
> > > (rw) on the mount, and the "C" drive for wine. 
> > > 
> > > Check that, and Im sure that you will be able to
> run
> > > it. 
> > > 
> > > You can check who owns the mount by doing an ls
> -l.
> > > Make sure that YOU have at least RWX access
> eather
> > > as an owner or group, or, if no one else is
> > > accessing the computer (Like me for home),
> everyone
> > > can have access. I do that so my kids can play
> games
> > > and such using wine.
> > > 
> > > Let me know how it turns out
> > > 
> > > Joe
> > > 
> > > > Hi again.
> > > > Well I tried the second solution you suggested
> and
> > > now
> > > > I can start and stop the wineserver which I
> didnt
> > > > could do earlier.
> > > > But now I get Permission denied
> > > > after I mounted c:drive with
> > > > mount -t msdos /dev/hda1 /home/knut/c:drive 
> > > > when I try
> > > > wine c:vbvb.exe
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > --- Joe Giles <[EMAIL PROTECTED]> skrev: >
> well,
> > > if
> > > > you cant find any config files, then I
> > > > > would recomend reinstalling it. That way you
> > > know
> > > > > that the files were instaled correctly.
> download
> > > the
> > > > > tar file and extract it then go to the
> source
> > > root
> > > > > and type ./tools/wineinstall. Then you
> should be
> > > ok.
> > > > > 
> > > > > 
> > > > > If you dont want to do that, I attached a
> basic
> > > conf
> > > > > file. Make sure you edit it to point to the
> > > correct
> > > > > locations. And any other additions you may
> have.
> > > > > Now, make sure that you mkdir .wine in your
> home
> > > > > directory and place this file in the .wine
> > > folder.
> > > > > Then, when you run a file with wine, it will
> > > build
> > > > > the registery automatically (Or is should
> anyway
> > > > > :-P)
> > > > > 
> > > > > Let me know how it works.
> > > > > 
> > > > > Thanks
> > > > > 
> > > > > Joe
> > > > > 
> > > > > > I know its a hidden file but its not
> there,
> > > nor in
> > > > > > user dir or root.
> > > > > > How do I find the version of wine?
> > > > > > Knut 
> > > > > > 
> > > > > > 
> > > > > > --- Joe Giles <[EMAIL PROTECTED]> skrev:
> >
> > > Well,
> > > > > if
> > > > > > you had wineinstall create it, it will be
> > > > > > > in the home directory of the user that
> you
> > > used
> > > > > to
> > > > > > > make wine. So, if juser was the user
> that
> > > > > created
> > > > > > > wine, it will be in /home/juser/.wine...
> > > Now,
> > > > > keep
> > > > > > > in mind that files that start with the
> "."
> > > are
> > > > > > > hidden (Including directories). You will
> > > need to
> > > > > do
> > > > > > > a ls -la to see it.
> > > > > > > 
> > > > > > > Let me know if you still cant find it,
> let
> > > me
> > > > > know
> > > > > > > the version you are using and I can send
> you
> > > the
> > > > > > > default conf file.
> > > > > > > 
> > > > > > > Thanks
> > > > > > > 
> > > > > > > Joe
> > > > > > > 
> > > > > > > > I cant find the dir .wine
> > > > > > > > 
> > > > > > > > Knut
> > > > > > > > 
> > > > > > > > 
> > > > > > > >  --- Joe Giles <[EMAIL PROTECTED]>
> skrev:
> > > >
> > > > > You
> > > > > > > have
> > > > > > > > to add the MOUNTED drive to the drives
> > > list
> > > > > > > > > in the conf file in .wine
> > > > > > > > > 
> > > > > > > > > Let me know if you need an example
> > > > > > > > > 
> > > > > > > > > Joe
> > > > > > > > > 
> > > > > > > > > > I want to run a windows program
> that
> > > > > reside in
> > > > > > > > > c:drive
> > > > > > > > > > and I have mounted that drive with
> > > > > > > > > > mount -t msdos /dev/hda1 
> > > /root/c:drive
> > > > > > > > > > and type at the command prompt 
> > > > > > > > > > wine /root/c:drive/vb/vb.exe I get
> > > > > > > > > > wineserver: chdir /root/.wine : No
> > > such
> > > > > file
> > > > > > > or
> > > > > > > > > > directorty.
> > > > > > > > > > I get the same if I type
> > > > > > > > > > wine C:vbvb.