Re: [techtalk] X/windowmaker

2000-03-24 Thread aprilk

For netscape try looking in /opt as well, some distros I think might put it there too, 
which would explain why it isn't in the path. To let it be found in the path, 'ln -s 
 /usr/bin/netscape' should work or wherever you prefer it.

April

Nicole Zimmerman <[EMAIL PROTECTED]> wrote:


>I can't *find* netscape, either... I have a /usr/lib/netscape but there's
>no netscape executable (especially not in my path). I haven't dug around
>too much to find it, though, mozilla has been working great (minus the
>javascript in some places).
>
>Anyway, thanks to the both of you for your suggestions. I'll keep digging
>:o)
>
>-nicole
>
>
>
>___
>techtalk mailing list
>[EMAIL PROTECTED]
>http://www.linux.org.uk/mailman/listinfo/techtalk


--
ICQ#: 6569484
AIM: Sisblundr
Yahoo: Sisblundr
--
Do you do Linux? :) 
Get your FREE @linuxstart.com email address at: http://www.linuxstart.com


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



[techtalk] Sending pictures from cron

2000-03-24 Thread GeekGrrl

I was wondering if anyone could tell me how to email a webcam snapshot via
a crontab entry. I have the entry done and it works, but 'mail
[EMAIL PROTECTED] < webcam.jpg' results that account receiving a garbled
mess instead of an image. (Yes, I know the mess -is- the image).

Is there any way to send this as an attachment so it does not get so
garbled? Can pine work in a one-line command without invoking the whole
program?

Thanks!



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Sending pictures from cron

2000-03-24 Thread Rik Hemsley

#if GeekGrrl
> I was wondering if anyone could tell me how to email a webcam snapshot via
> a crontab entry. I have the entry done and it works, but 'mail
> [EMAIL PROTECTED] < webcam.jpg' results that account receiving a garbled
> mess instead of an image. (Yes, I know the mess -is- the image).
> 
> Is there any way to send this as an attachment so it does not get so
> garbled? Can pine work in a one-line command without invoking the whole
> program?

uuencode webcam.jpg | mail [EMAIL PROTECTED]

Rik


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Sending pictures from cron

2000-03-24 Thread Jeramia Ory

> Is there any way to send this as an attachment so it does not get so
> garbled? Can pine work in a one-line command without invoking the whole
> program?

I think you want mpack.  It will MIME encode a file and then mail it
off.

Jeramia



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] X/windowmaker

2000-03-24 Thread Nicole Zimmerman

I know that's what I did on my box at home (link wherever netscape was 
to /usr/local/bin/netscape), but I think what happened here is that I 
installed all of the base/shared files but didn't install an actual 
version of netscape with executables and all that... :o)

As far as the font problem goes, I don't have a .gtkrc in my home 
directory and my global Netscape.ad doesn't appear to have any font 
settings outright.

I have a gtkrc in my ~/.gimp/ directory, which sets the default font to 
adobe-helvetica-medium-r-normal-*-10. Logically, this means the gimp's 
fonts come up smaller :o) So I tried creating a personal ~/.gtkrc 
containing the same style text:

style "default"
{
font="-adobe-helvetica-medium-r-normal-*-10-*-*-*-*-*-*"
}

And then I try running gaim to test the sucker out... and it appears it 
doesn't like it. wmakerconf didn't change either. I tried restarting X 
and then running gaim (or wmakerconf) and they both still have the big 
ol' fonts. I checked in my .gaimrc, and there's no font settings there. 
Ditto for .wmakerconf/. I also tried adding that style to 
/usr/share/gtkrc (at the top, I also modified some to be smaller, like 
from 14 to 12 or 12 to 10)...still no change.

Closer, but not quite there.
-nicole

aprilk wrote:
 > For netscape try looking in /opt as well, some distros I think might
 > put it there too, which would explain why it isn't in the path. To let
 > it be found in the path, 'ln -s /usr/bin/netscape' should work or
 > wherever you prefer it. April



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Sending pictures from cron

2000-03-24 Thread GeekGrrl

After trying uuencode and trying mpack (after digging it up), mpack works
better for me. :)

Thank you, everyone, for your time and suggestions!

On Fri, 24 Mar 2000, Jeramia Ory wrote:

> > Is there any way to send this as an attachment so it does not get so
> > garbled? Can pine work in a one-line command without invoking the whole
> > program?
> 
> I think you want mpack.  It will MIME encode a file and then mail it
> off.
> 
> Jeramia
> 
> 
> 
> ___
> techtalk mailing list
> [EMAIL PROTECTED]
> http://www.linux.org.uk/mailman/listinfo/techtalk
> 



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Shell Scripts

2000-03-24 Thread Jeff

On Fri, Mar 24, 2000 at 04:03:13PM -0400, Lisa Dickson wrote:
> hmm, RTFM?  resist trying funny man? :-)

Uh, yeah. ;)

> 
> I'm IT Univ student trying to explore unknown territory--Linux.  Time
> considerations impinge (reading the manual for example) so I thought I would
> try to ascertain a "general" understanding and seek feedback from the
> experts such as those on the listserv.  :-)
> 
> Consider me a newbie and start wherever your time permits.  Any feedback is
> appreciated.

Ok, Shell Scripts are actually pretty simple.  They are a text file
where each line* is a command you could normally run on the command
line.  

You start the file off with this:

#!/bin/bash

Which has to be the *first* line in the script, Linux -- and all other
*nixen use this to identify what program will interpret the file.  After
that, '#' starts a comment which lasts until the end of the line.  I
don't really have time to get into the if/then stuff, but hopefully,
someone else will pick up the slack (time might avail itself a little
later for me to continue).


* Well, technically there are multiple line commands... but the
  definition above is good enough for now...
-- 
Jeff
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS/M/>P d-(pu) s+:- a17>? C++() L+++ UL@>$ P+ E--- W++@ N+ o? K++ w--- O? M 
V- PS+ PE(--)@ Y+@ PGP++ t+ 5 X++@ R++@ !tv@ b++ DI D- G e- h! r% y?
--END GEEK CODE BLOCK--

My Public Key -- http://24.5.73.229/pubkey.txt 

 PGP signature


[techtalk] telnet connections refused randomly?

2000-03-24 Thread Michelle Leonard

I'm trying to work on a clients machines.  All are basic RH6.1 gnome
workstation installs (ftp and nfs added) I'n telneting into the main
machine without any problems.  But when I try to get to the second
machine, sometimes it allows, sometimes I get the "connection refused"
errors.  Sometimes I'll be logged in and it will randomly close.

No one else is logged inis there some security setting thats being
flakey somewhere?  Where do I start to look?  The third machine is not
giving me any problems, and as far as I recall, they are set up
identically (I did it a couple months ago)

-- 
Michelle Leonard
Inovision Corporation
email: [EMAIL PROTECTED]
http://www.inovis.com

6321 Angus Drive
Raleigh, NC 27613
(919)  788-9998
FAX (919) 788-9989


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



RE: [techtalk] telnet connections refused randomly?

2000-03-24 Thread Michelle Pariset

Hi,
I would look at your physical transport layer...cables, nic, hub...
Good Luck.
Michelle

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Michelle Leonard
Sent: Friday, March 24, 2000 12:35 PM
To: [EMAIL PROTECTED]
Subject: [techtalk] telnet connections refused randomly?


I'm trying to work on a clients machines.  All are basic RH6.1 gnome
workstation installs (ftp and nfs added) I'n telneting into the main
machine without any problems.  But when I try to get to the second
machine, sometimes it allows, sometimes I get the "connection refused"
errors.  Sometimes I'll be logged in and it will randomly close.

No one else is logged inis there some security setting thats being
flakey somewhere?  Where do I start to look?  The third machine is not
giving me any problems, and as far as I recall, they are set up
identically (I did it a couple months ago)

-- 
Michelle Leonard
Inovision Corporation
email: [EMAIL PROTECTED]
http://www.inovis.com

6321 Angus Drive
Raleigh, NC 27613
(919)  788-9998
FAX (919) 788-9989


___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] Shell Scripts

2000-03-24 Thread Phil Savoie

Hi Lisa,

May I  recommend an excellent "take you by the hand and walk you down the 
garden path" book.  It is called UNIX Shells by Example by Ellie 
Quigley.  This book does C, bourne, korn, awk, sed, and grep.  There are a 
multitude of "example" snippits with line by line explanation  of each and 
comes with a CD-Rom.

Hope this helps,

Phil

At 20:16 22/03/2000 -0400, Lisa Dickson wrote:
>Trying to learn more about shell scripts.  Examples would be of great
>benefit as would site recommendations.  Any tips are appreciated.
>
>Lisa
>
>
>
>
>___
>techtalk mailing list
>[EMAIL PROTECTED]
>http://www.linux.org.uk/mailman/listinfo/techtalk



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



[techtalk] help for a newbie

2000-03-24 Thread mc

Hi all.  I have been reading this list for about a month, and finally got
the nerve to try to install RedHat 6.1.  So far so good, except, I can't get
my NIC card to work.  It is a Lynksys LNE100tx.  I found the tulip module,
it seems to be in the right place (per what I have read on the net).  I did
the alias line in /etc/conf.modules.  Now it sees the card on boot, but
fails to initialize it.  Looking at dmesg I get the following:

Unknown Tulip-style PCI ethernet chip type 11ad c115 detected: not
configured.

I figure I am missing something very easy here, but can't see the forest for
the trees.  Any help or pointers in the right direction would be
appreciated!!  And if you tell me the card is crap, to go buy one natively
supported, I will understand, that is what I had when I built the box, but
one friend has already told me to do just that.

mc
"A child of five would understand this.
Send someone to fetch a child of five."
Groucho Marx (1890-1977)






___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] X/windowmaker

2000-03-24 Thread Steve Howes

Nicole Zimmerman wrote:

[SNIP]

> I installed both xfs and xfstt. In /etc/X11/xfs/config, I changed
 ^^^
> default-point-size to = 75 (it was something like 120 before) and my
> default-resolutions to 60,60,75,75 (they were 75,75,100,100), but nothing
> changed when I restarted X (and I did relogin just to be safe).
> 

If this is similar to my /etc/X11/fs/config then what order are your
font directories listed?  Is the 100dpi directory listed before the
75dpi directory ?  If so try swapping them around.

-- 
Steve - Cheltenham, UK
-
In love and light we are
In darkness we are no less



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk



Re: [techtalk] X/windowmaker

2000-03-24 Thread Nicole Zimmerman

> If this is similar to my /etc/X11/fs/config then what order are your
> font directories listed?  Is the 100dpi directory listed before the
> 75dpi directory ?  If so try swapping them around.

I'll try that, thanks :o) On my home machine (where the fonts are smaller)
it's that way (100dpi before 75dpi) but I'm willing to give it a shot :o)

thanks,
nicole



___
techtalk mailing list
[EMAIL PROTECTED]
http://www.linux.org.uk/mailman/listinfo/techtalk