Linux-Misc Digest #968, Volume #19               Tue, 27 Apr 99 22:13:08 EDT

Contents:
  Re: Linux Sucks as a Java Server, comments??? (Glenn Butcher)
  [ANN] WebMacro Servlet Framework 0.85.2 (Justin Wells)
  How to start ppp dialup automatically (terry tashiro)
  Re: Backspace...delete.. (Beverley Eyre)
  Re: Burning playable music CD's (Alan Burns)
  Re: Burning playable music CD's (Alan Burns)
  Out of memory untar'ing onto vfat fs (Jim Howes)
  Re: How to start ppp dialup automatically (Ben Short)
  New Kernel-2.2.6 errors (Michael)
  Re: GNU reeks of Communism (Charlie Stross)
  Re: HELP!  Problems re-building kernel (Jason Rothfuss)
  printer HP870cxi setting for _quick_ printing (Yoram Benchetrit)
  Re: Win 98 Killed lilo - can't start Linux ([EMAIL PROTECTED])
  Re: cron problems ("Brian J. Corcoran")
  minicom & cron ("Brian J. Corcoran")
  Re: SiS 6326 AGP configuration. (Thomas Roell)
  Linux Reading SCO/Solaris partitions? (Michael O'Malley)
  Re: minicom & cron (Frank da Cruz)
  Re: Kernel 2.2.6 ERROR (Michael)
  Port 12345 connection attempt? Que? (Peter Caffin)
  Re: GNU reeks of Communism (Donal K. Fellows)

----------------------------------------------------------------------------

From: Glenn Butcher <[EMAIL PROTECTED]>
Subject: Re: Linux Sucks as a Java Server, comments???
Date: Mon, 26 Apr 1999 21:13:36 -0600

Kinda reminds me of the Ada wars in the late eighties.  Compilers
weren't efficient, and that was held against the language.  Now, Ada
compilers use the same back ends as the other languages and generate
code just as tight.  Java will have to go through the same sort of
maturation...

I use a language for leverage (problem-solving power) and coverage (how
"distributable" are my apps?).  Perl covers the first in spades.  Perl
is Indiana Jones' gun to the turban-guy's C++ "sword" - _easy_ write
quite complex apps.  Getting ready to learn Java because it does the
second quite well.  Anybody seen the Java VNC client?  You run your
browser, point it at a machine (UNIX or NT) running a VNC server, and
voila -  your'e running that computer from your browser!!  I'm building
a sort of "game server" for folks who want to broadcast their model
railroad operating sessions over the Internet (definitely a niche app),
and a Java client is the clear solution.

Java has had a slow start, but it's potential utility is too
compelling.  Like Linux, 'cept Linux didn't start slow...

Glenn Butcher

------------------------------

From: Justin Wells <[EMAIL PROTECTED]>
Crossposted-To: comp.lang.java.software
Subject: [ANN] WebMacro Servlet Framework 0.85.2
Date: Tue, 27 Apr 1999 03:53:56 GMT
Reply-To: [EMAIL PROTECTED]

WebMacro Servlet Framework
==========================


 Announcing WebMacro 0.85.2:

     http://www.webmacro.org/

 WebMacro is a Java servlet development framework, including a
 template engine plus extensible component model. It uses Java
 introspection to make ordinary objects in your servlet accessible
 as variables in a simple, concise template script.

 WebMacro is free under the GPL, with alternate licensing available
 for proprietary commercial use. See the website for details.


Is WebMacro Useful?
===================

 Here's what people on the WebMacro list ([EMAIL PROTECTED])
 have to say about it:

     "FYI Justin, I'm now running over 10 web applications (in
     production) using WebMacro. It runs like a scalded dog, and
     makes it easy for the designers to produce layout, so I can
     concentrate on code.  Keep up the good work."
         -Jason Hill

     "BTW, I really like your philosophy, and the code looks nicely
     done. I was looking at the latest JSP incarnation and my
     stomach was churning. The simple $x.y.z and # syntax you use
     is perfect."
         -Ari Halberstadt

     "so much of webmacro is what I had planned to write on my own, only
     better laid out"
         -Robert Hentosh

     "Finally, thanks for a great product that saves you from the
     problem with writing html-code in your Java sourcefiles!"
         -Jonsson Fredrik

     "I found Webmacro last Friday just as I was completing a suite
     of servlets.  Fetched the mailing list archives (and actually
     read them <g>) and totally loved the concept and the direction
     that webmacro is heading.  I've been rewriting my set of
     servlets and gleefully tearing every shred of HTML code out
     of my java <*very* big grin>."
         -William Featherston

     "Ease of use plus power makes killer apps."
         -Simon Arthur

What's WebMacro for?
====================

 The WebMacro philosophy is:

     "Things that you don't care about should get out of your face."

 Programmers should not have their code cluttered up with HTML and
 stylesheet junk. Web page designers should not have to put up with
 complex and scary looking program code.

 WebMacro lets programmers get back to programming--in an ordinary,
 powerful programming language (Java); while letting page designers
 work with plain old HTML and a simple script language.

 Or, to put it another way, WebMacro brings a Model/View/Controller
 design to servlet programming: Your servlet (controller) processes
 input and interacts with back-end business objects (model), handing
 data to the template (view)--which turns it into HTML.

 WebMacro does the hard work of analyzing your objects to determine
 how they can be accessed in the template; WebMacro also provides a
 simple, concise script language for use in HTML templates; plus
 WebMacro provides an extensible, customizable component model to
 manage your back-end beans and other business objects.


What Changed?
============

   - 0.85.2 fixed several bugs: macros in lists weren't evaluated,
     #foreach would not use list initializer syntax; #if evaluated
     its condition twice, $Broker variable in templates was failing.
   - 0.85.1 fixed minor bugs: extraneous errors in log cleaned up,
     introspector now uses iterator() methods properly, docs updated.
   - 0.85 added reloadable templates, cleaned up the WMServlet API,
     added template paths, made it easier to compile under Java 2,
     and fixed several nasty bugs.
   - 0.80 added method calls, generic templates, template parameters,
     list initializer syntax, comments, bug fixes, and a few other things;
     0.80.1 fixes a minor bug in 0.80 (name of error template).
   - 0.75 added the component model, full fledged introspection
     0.75.3 fixes all bugs reported as of January 22 1998
   - 0.70 more back end services, better design, and fewer bugs
   - 0.60 script language mostly in place, minimal introspection, many bugs
   - 0.30 WebMacro said "Hello, World!" in a secret experiment

 WebMacro pre-1.0 is beta software. Despite that, recent versions are
 increasingly stable. A few features remain to be implemented in
 order to get to 1.0.


What are the Advantages?
========================

   * Clean. Write crisp, clear code free of HTML and presentation issues.

   * Simple. Put intuitive template scripts inside ordinary HTML.

   * Powerful. Script variables analyze and access ordinary Java objects.

   * Independent. Change templates without touching your servlet.

   * Extensible. Component model lets you to extend WebMacro itself.

   * Fast. WebMacro caches parsed templates for high-performance use.

   * Free. WebMacro is available under the GPL.


I Need an Example!
==================

 The WebMacro introspector analyzes your objects, and figures out how
 to extract sub-objects as variables in the template script. All you
 do as a programmer is provide ordinary Java objects using ordinary
 Java code. Notice how clean the code is without all the HTML.

 This Java servlet code:

     // subclass WMServlet and implement handle:

     Template handle(WebContext context) {

        // populate the context with ordinary objects
        Store curStore = ...;
        context.put("Store", curStore);

        // pick a template
        String tmplName = ...;
        Template tmpl = getTemplate(tmplName);
        return tmpl;
     }

 supplies the data for this template:

     <h1>Products for $Store.Name as of $Store.Date</h1>

     <table><tr><td>What We Have</td> <td>How Many Left</td></tr>

     #foreach $product in $Store.Products {
       <tr><td>$product.Name costs \$$product.Price</td>

       #if ($product.isAvailable()) {
         <td>There are $product.Count in stock</td>
       } #else {
         <td>Sorry, out of stock.</td>
       }

       </tr>
     }
     </table>

 From the programmers point of view, Store, Product, etc., are
 just regular objects. No work is required to open them up to the
 introspector--just toss them in a WebMacro context and it will
 work out what properties and sub-objects are available.

 See the website to learn more.


Where is It?
============

  website: http://www.webmacro.org/

  list:    [EMAIL PROTECTED]

  me:      [EMAIL PROTECTED]


 Everyone is encouraged to join the mailing list. Without the
 valuable contributions of Tom, Cristi, Frank, Simon, Klaasjan,
 Kyallee, Graydon, Michael, Dirk, and everyone else on the list
 who contributed ideas, code, and bugs, we wouldn't be where we
 are--Thanks!

Justin Wells / [EMAIL PROTECTED]


============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

------------------------------

From: terry tashiro <[EMAIL PROTECTED]>
Subject: How to start ppp dialup automatically
Date: Tue, 27 Apr 1999 09:48:55 +0100

Dear all,

I'm wondering how to start ppp dialup automatically.
Of course, I can start ppp dialup using GUI, but don't know how without
using GUI.
Kernel: 2.2.6, Redhat 5.2

Any help will be appreciated.

Best regards

Terry

My address is the header is anti-spam.
Please use [EMAIL PROTECTED]

------------------------------

From: Beverley Eyre <[EMAIL PROTECTED]>
Subject: Re: Backspace...delete..
Date: Tue, 27 Apr 1999 00:27:33 -0700

If you use csh:

stty erase ^H   

in your .cshrc file. This will set your backspace key for erase.

I'm not sure if it's the same for bash.

Bev


Jerome PAYS wrote:
> 
> Hi,
> 
> I have a problem with my keyboard. All works fine under X, but when I am on
> a terminal without X running, my delete key doesn't work (it types something
> like [W ) and I can only use the backspace key.. how can I fix it ??
> Another question : how can I force the 'Num lock' key to be enabled on
> startup ?? I always have to enable it each time I begin a new session,
> whether it be X or tty ..
> 
> Regards,
> 
>     Spacce

-- 
======================================================================
Beverley Eyre                 I grew tired of meekness
[EMAIL PROTECTED]                 when I saw it without effect.
http://www.ee.ucla.edu/~eyre  Of late therefore I have been saucy...
                              -- Ben Franklin

------------------------------

From: Alan Burns <[EMAIL PROTECTED]>
Subject: Re: Burning playable music CD's
Date: Tue, 27 Apr 1999 03:06:28 -0500

On Mon, 26 Apr 1999, Robear wrote:

>When you record the Audio CD, 99% of the time it should be recorded at 1X. I
>haven't had a problem with recording at 2X, but it is not advisable.

Not to put too fine a point on it, but........ hogwash. :-)  That's just an
old Internet myth.  The bits are exactly the same no matter whether they're
written at 1x or 2x.  I've been burning at least a disc one day for the last 2
years, and not a single one has ever demonstrated any problems from being
recorded at more than 1x.

The vast majority of those problems are caused by something besides the
recording speed.

------------------------------

From: Alan Burns <[EMAIL PROTECTED]>
Subject: Re: Burning playable music CD's
Date: Tue, 27 Apr 1999 03:15:53 -0500

On Tue, 27 Apr 1999, jik- wrote:

>Imation disks seem to function ok, but I think that maybe being able to
>chip off the data in your CD-R is a bad thing.....a simple scratch to an
>Imation CD and all your data will simply flake right off the disk.

That's true of ANY disc.  The data on a CD-R is stored on the underside of the
top coating, and if you scratch the top, you're destroying the data.

------------------------------

From: Jim Howes <[EMAIL PROTECTED]>
Subject: Out of memory untar'ing onto vfat fs
Date: Tue, 27 Apr 1999 09:31:16 +0100

I've created a boot disk with sufficient stuff on it to back up
a DOS or windows system to a remote tape drive, and restore it
again.  While not perfect, it's ideal for security backups of
user hard disks.

However, when I mount a fat32 volume, and untar anything much onto
it, I keep running out of memory.  This seems to happen regardless
of whether or not I create a swapfile of any size on the target
disk before I start.  It doesn't happen if it's ext2, or msdos.

I suspect some sort of memory leak in kernel space (kernel 2.0.35
in this case)

Ideas?

------------------------------

From: [EMAIL PROTECTED] (Ben Short)
Subject: Re: How to start ppp dialup automatically
Date: Tue, 27 Apr 1999 22:38:52 +1000

In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
> Dear all,
> 
> I'm wondering how to start ppp dialup automatically.
> Of course, I can start ppp dialup using GUI, but don't know how without
> using GUI.
> Kernel: 2.2.6, Redhat 5.2
> 
> Any help will be appreciated.
> 
> Best regards
> 
> Terry
> 
> My address is the header is anti-spam.
> Please use [EMAIL PROTECTED]
> 
I just use a crontab to launch a script that checks to see if pppd is 
running every 15 mins, and then if not, runs it..

#!/bin/sh
#
# Cron Entry : 0,15,30,45 * * * * /root/chkpppd

if (`ps cx | awk '$5 == "pppd" {exit 1}'`); then
        pppd
fi

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Ben Short                http://shortboy.ddns.org
Shortboy Productions     mailto:[EMAIL PROTECTED]
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

------------------------------

From: Michael <[EMAIL PROTECTED]>
Subject: New Kernel-2.2.6 errors
Date: Tue, 27 Apr 1999 11:56:34 GMT

This part is from the CD-ROM:
hdc: command error: status=0x51 {DriveReady SeekComplete Error}
hdc: command error: error=0x50
end_request: I/O error, dev 16:00 (hdc), sector 725120
ATAPI device hdc:
        Error: No sense data -- (Sense key=0x00)
        No additional sense information -- (asc=0x00, ascq=0x00)

This part is from the linux native:
EXT2-fs warning (device ide0(3, 65): ext2_free_block:
bit already cleared for block 2818091

I have recently compiled and build my new kernel-2.2.6 from my old kernel
2.0.32 I managed to make it and it boots fine with LILO but things really
when wrong when I mount my CD-ROM drive and start copying large/huge files
from it. Above is the error.

Hope you guys know what it is and know how to solve it.
For more details please state it down and I will reveal more.

From,

Michael

============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

------------------------------

From: [EMAIL PROTECTED] (Charlie Stross)
Crossposted-To: 
comp.os.ms-windows.misc,comp.os.ms-windows.advocacy,comp.os.linux.advocacy
Subject: Re: GNU reeks of Communism
Date: Tue, 27 Apr 1999 14:15:46 GMT
Reply-To: charlie @ nospam . antipope . org

Stoned koala bears drooled eucalyptus spittle in awe
as <[EMAIL PROTECTED]> declared:

>Filargiropoulos Stavros wrote:
>
>> Well, despite what you think, communism is a great ideology.
>
>Yea, but we are HUMANS, not ants. We have feelings, and <gasp,
>sputter> AMBITION. This is why communism will never work.

Ahem. I take it you're not familiar with the theory of alienated labour?

What you came out with above is, in point of fact, the Marxist critique
of capitalism in a nutshell.


-- Charlie

------------------------------

From: Jason Rothfuss <[EMAIL PROTECTED]>
Subject: Re: HELP!  Problems re-building kernel
Date: Mon, 26 Apr 1999 17:39:10 -0500

I have found the problem.  I wasn't compiling with ELF...

Jason


------------------------------

From: yoramb@PROBLEM_WITH_INEWS_GATEWAY_FILE (Yoram Benchetrit)
Subject: printer HP870cxi setting for _quick_ printing
Date: 27 Apr 1999 14:33:10 GMT


Hi,

I am posting this for people who are using HP-870cxi printer
(actually cdj850 driver), and that found that the printing is very slow.

The driver is set to print in high quality (called PRESENTATION) by default, 
We can either change the printing quality in the driver, or in the filter,
to print in low (called DRAFT) quality.


Yoram

--

Solution 1 : modify the filter file (gs option)
===============================================

we add -sQUALITY=DRAFT with DRAFT=-1 to gs option,
so that they are passed to the driver.

[root]# diff -c aps-cdj850-a4-auto-color.ORG \
                aps-cdj850-a4-auto-color

*** aps-cdj850-a4-auto-color.ORG
--- aps-cdj850-a4-auto-color
***************
*** 331,336 ****
--- 331,340 ----
                PRINT_PS="cat -" ;;

        *)      # we have a nice non ps printer
+
+               # set -sQUALITY to DRAFT (==-1) for draft quality on HP870cxi
+               DRAFT=-1
+
                if [ -z "$GS_RESOL" ]
                then
                        # default is _not_ to fiddle around with
***************
*** 338,343 ****
--- 342,348 ----
                        PRINT_PS="      gs                              \
                                        -q                              \
                                        -sDEVICE=${PRINTER}             \
+                                       -sQUALITY=DRAFT                 \
                                        -sPAPERSIZE=${PAPERSIZE}        \
                                        -dNOPAUSE                       \
                                        -dSAFER                         \

Solution 2 : modify the driver setting
======================================

driver : gdevcd8.c is in hp8xxs13.zip 
         from http://www.erdw.ethz.ch/~bonk/bonk.html

we set quality to DRAFT (==-1) during initialization phase

[root]# diff -c gdevcd8.c.ORG gdevcd8.c
*** gdevcd8.c.ORG
--- gdevcd8.c
***************
*** 683,689 ****

  gx_device_cdj850 far_data gs_cdj850_device =
  cdj_850_device(cdj850_procs, "cdj850", 600, 600, 32, cdj850_print_page, 0,
!              PRESENTATION, PLAIN_PAPER, 4, DJ850C, 9,
               1.0, 0.0, 0.0, 0.0, 0.0, 1.0,
               cdj850_start_raster_mode, cdj850_print_non_blank_lines,
               cdj850_terminate_page);
--- 683,689 ----

  gx_device_cdj850 far_data gs_cdj850_device =
  cdj_850_device(cdj850_procs, "cdj850", 600, 600, 32, cdj850_print_page, 0,
!              DRAFT, PLAIN_PAPER, 4, DJ850C, 9,
               1.0, 0.0, 0.0, 0.0, 0.0, 1.0,
               cdj850_start_raster_mode, cdj850_print_non_blank_lines,
               cdj850_terminate_page);


------------------------------

From: [EMAIL PROTECTED]
Subject: Re: Win 98 Killed lilo - can't start Linux
Date: Tue, 27 Apr 1999 14:25:32 GMT

I copied with dd /boot/boot.0300 (446 bytes only!) to the mbr of /dev/hda
and /boot/boot.0301 (512 bytes) to the boot record of /dev/hda1 (drive C:
in DOS) and it was fine again. But be _CAREFUL_!!!

This works with SuSE Linux.

Andreas

============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

------------------------------

From: "Brian J. Corcoran" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.questions
Subject: Re: cron problems
Date: Tue, 27 Apr 1999 14:51:06 +0000

I've found that cron won't run the last item in the crontab unless there
is an empty line below it.

If this works for you, email me -- I think it's important enough to get
reported as a bug if it's verifiable.

-Brian

"William Coleman (SU account)" wrote:
> 
> Have you tried installing the jobs under crontab
> set the environment variable EDITOR to the editor you like
> then type
> crontab -e
> now add the crontab lines in here.
> This is also how other users add cron jobs to view these similarly use
> crontab -u <user> -e
> the -l flag will display the crontab and -r will delete it
> cron can be controlled with the /etc/cron.allow and /etc/cron.deny files
> 
> This information is taken from the crontab man page.
> 
> On Fri, 9 Apr 1999, Justin wrote:
> 
> > Anthony Ewell wrote:
> >
> > > Hi,
> > >
> > > I am stumped.  I upgraded from rh 5.1 to rh 5.2 and my nightly
> > > backup from my /etc/crontab stopped working.
> > >
> > >     ps ax | grep -i cron | grep -v grep
> > >     returns
> > >     265 ? S  0:00 crond
> > >
> > > So crond is running.   I can also run my backup manually (/root/backup).
> > >
> > > As I stated: I am totally stumped.  Anyone have any ideas?
> > >
> > > Many thanks,
> > > --Tony
> > > [EMAIL PROTECTED]
> > >
> > > My /etc/crontab:
> > >
> > > > SHELL=/bin/bash
> > > > PATH=/sbin:/bin:/usr/sbin:/usr/bin
> > > > MAILTO=root
> > > >
> > > > # run-parts
> > > > 01 * * * * root run-parts /etc/cron.hourly
> > > > 02 4 * * * root run-parts /etc/cron.daily
> > > > 22 4 * * 0 root run-parts /etc/cron.weekly
> > > > 42 4 1 * * root run-parts /etc/cron.monthly
> > > >
> > > >
> > > > # Tape backup command
> > > > 0 23 * * 1-5 root /root/backup
> > > >
> >
> > I dont know for you, but my crond does not work after a reboot if I don't
> > kill it and restart it. I don't know why but I find it quite frustrating.
> >
> > If the problem is the same for you and you find an answer, please let me
> > know !
> >
> > --
> > Justin Castilloux
> > [EMAIL PROTECTED]
> > ICQ: 1678285
> >
> >
> >
> >

-- 
/----------------------------------------------\
| Brian J. Corcoran     | ASA Real Estate Svcs |
| Systems Developer     | 860.666.4198 fax     |
| [EMAIL PROTECTED]   | 860.665.1000 x132    |
*----------------------------------------------*
|    Quark! Quark! Beware the quantum duck!    |
\----------------------------------------------/

------------------------------

From: "Brian J. Corcoran" <[EMAIL PROTECTED]>
Subject: minicom & cron
Date: Tue, 27 Apr 1999 14:55:30 +0000

Has anyone had any luck running a minicom script from at or cron? I'm
absolutely stumped. It first complains about the term setting, which I
changed to "linux" via a minicom switch, but now it just barfs garbage
all over the place, messing up all the settings whenever I run it.

-brian

-- 
/----------------------------------------------\
| Brian J. Corcoran     | ASA Real Estate Svcs |
| Systems Developer     | 860.666.4198 fax     |
| [EMAIL PROTECTED]   | 860.665.1000 x132    |
*----------------------------------------------*
|    Quark! Quark! Beware the quantum duck!    |
\----------------------------------------------/

------------------------------

From: Thomas Roell <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.x
Subject: Re: SiS 6326 AGP configuration.
Date: 27 Apr 1999 08:19:46 -0600

David Cougle <[EMAIL PROTECTED]> writes:

> Are you using  Option "no_bitblt"
> ?  I am, and it makes it scroll REAL slow.
> how to get around it?

Use a real X-Server. I'm following this Sis6326 discussion now for
almost half a year. What worth is an X-Server that cannot get a half
way trivial chip to work at all (and still claiming support for
it). And if you want to get anything on the screen, then you have to
disable all the acceleration the chip would offer. 

- Thomas

PS: Yes, Accelerated-X does support the SiS6326 now for more than that
    long, and yes it works with full acceleration, but that's really
    not the point.
-- 
             Thomas Roell   /\         An imperfect plan executed violently
             Xi Graphics   /  \/\ _     is far superior to a perfect plan. 
         [EMAIL PROTECTED]   /   /  \ \     
                         / Oelch! \ \             George Patton

------------------------------

From: Michael O'Malley <[EMAIL PROTECTED]>
Subject: Linux Reading SCO/Solaris partitions?
Date: Tue, 27 Apr 1999 10:57:52 -0400

Hi.  Running Linux next to SCO, Solaris, BeOS, 95, NT, and Netware (I
know, a little extreme -- but I actually use linux while I am just
fooling around with Solaris/SCO/BeOS).

Solaris's main partitions are the same id as Linux swap; SCO's are a
different id (HURD/Unix accoriding to Partition Magic).  My question is
there a way to read and write to these partitions?  Also curious about
NTFS and BeOS partitions (Note:  Be can read ext2).  Any thoughts out
there?

Thanks


------------------------------

From: [EMAIL PROTECTED] (Frank da Cruz)
Subject: Re: minicom & cron
Date: 27 Apr 1999 15:15:47 GMT

In article <[EMAIL PROTECTED]>,
Brian J. Corcoran <[EMAIL PROTECTED]> wrote:
: Has anyone had any luck running a minicom script from at or cron? I'm
: absolutely stumped. It first complains about the term setting, which I
: changed to "linux" via a minicom switch, but now it just barfs garbage
: all over the place, messing up all the settings whenever I run it.
: 
You might have better luck with C-Kermit:

  http://www.columbia.edu/kermit/ckermit.html

which is designed to be run scripted and unattended (as well as
interactively).

An entire session, including dialing, logging in, transferring and managing
files, etc, logging out, and hanging up can all be automated.

- Frank

------------------------------

From: Michael <[EMAIL PROTECTED]>
Subject: Re: Kernel 2.2.6 ERROR
Date: Tue, 27 Apr 1999 15:30:57 GMT



Well, I disabled it and this time, more problems exist.
This time I get Kernel panic.

Please help.

From,

Michael

In article <[EMAIL PROTECTED]>,
  [EMAIL PROTECTED] wrote:
> Disable the Frame buffer in the video section
> Bye Sasa
>
> Jaring User wrote:
>
> > Hi,
> >
> > When I type make xconfig in my WindowMaker
> > I get this error below:
> >
> > ERROR - Attempting to write value for unconfigured variable
> > (CONFIG_FB_ATY)
> >
> > What does that mean? I am able to save the settings and build the
> > 2.2.6
> > kernel and boot it ONLY from the diskette I have made using bzdisk
> >
> > I can't boot from my LILO as it display this error message:
> >
> > Uncompressing linux....................
> >
> > CRC Error
> >
> > - System halted
> >
> > The only way I can reboot it is to press on the reset button and no
> > way I
> > can boot into linux RedHat 5.2 from LILO. Yes, I did /sbin/lilo after
> > make
> > bzlilo, and yes, I did make a backup copy of my previous kernel
> > (kernel-2.0.32) but still the same.
> >
> > Please help. I guess I am the FIRST one to encounter this kind of
> > problem
> > bcuz I have not seen one before.
> >
> > Hope Linus is reading this as well :)
> >
> > Your help is very much appreciated. Many thanks in advance
> >
> > From,
> >
> > Michael
>
>

============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

------------------------------

From: Peter Caffin <[EMAIL PROTECTED]>
Subject: Port 12345 connection attempt? Que?
Date: Tue, 27 Apr 1999 22:56:46 +0800

I was just checking through my logs and came across this:

daemon.log:Feb 28 01:20:37 monster tcplogd: port 12345 connection attempt
from ppp185.dyn112.pacific.net.sg [210.24.112.185]
daemon.log:Mar 30 19:43:49 monster tcplogd: port 12345 connection attempt
from Jedi-120.nw.com.au [203.29.88.170]
daemon.log:Mar 30 19:45:00 monster tcplogd: port 12345 connection attempt
from Jedi-120.nw.com.au [203.29.88.170]

The only thing that looks remotely like this is /etc/inittab's entry for
shutdown, but, given that there's nothing remotely like that number in
/etc/services, trying to connect there would seem silly..

What bug were these dweebs trying to exploit?

--:     _           _    _ _
 _oo__ |_|_ |__  _ |  _ |_|_o _  peter at ptcc dot it dot net dot au |
//`'\_ | (/_|(/_|  |_(_|| | || |                http://it.net.au/~pc |
/                            PO Box 869, Hillarys WA 6923, AUSTRALIA |

------------------------------

From: [EMAIL PROTECTED] (Donal K. Fellows)
Crossposted-To: 
comp.os.ms-windows.misc,comp.os.ms-windows.advocacy,comp.os.linux.advocacy
Subject: Re: GNU reeks of Communism
Date: 27 Apr 1999 15:45:15 GMT

In article <7g3irh$vhr$[EMAIL PROTECTED]>,  <[EMAIL PROTECTED]> wrote:
[...]
> Mostly, the people who write copy-left software are people whose primary
> function is to help their employer run a profitable business.  Sendmail was
> written by a group of UNIX administrators who needed technical support and
> saw that electronic mail was the most cost-effective way to get it.  The Web
> server was developed by News publishers who saw that sending out full copies
> of their publications to millions of users on huge sites like compuserve was
> not going to go over with whoever was paying for the storage.  The early
> Mosaic browser and NCSA server were used because it was the best way to keep
> control of both the content and the advertizing.
> 
> X11 was developed by administrators who needed the ability to monitor and
> manage hundreds of computers distributed all over the world, from a single
> console connected via TCP/IP.
[...]

That's revisionist rot (at least in part.)  There are more forces at
work in the OSS world than purely those that you discuss in the above
two paragraphs.

But there no time to discuss this properly.  I've a train to catch,
and a long wait if I miss it...

Donal.
-- 
Donal K. Fellows    http://www.cs.man.ac.uk/~fellowsd/    [EMAIL PROTECTED]
-- The small advantage of not having California being part of my country would
   be overweighed by having California as a heavily-armed rabid weasel on our
   borders.  -- David Parsons  <o r c @ p e l l . p o r t l a n d . o r . u s>

------------------------------


** FOR YOUR REFERENCE **

The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:

    Internet: [EMAIL PROTECTED]

You can send mail to the entire list (and comp.os.linux.misc) via:

    Internet: [EMAIL PROTECTED]

Linux may be obtained via one of these FTP sites:
    ftp.funet.fi                                pub/Linux
    tsx-11.mit.edu                              pub/linux
    sunsite.unc.edu                             pub/Linux

End of Linux-Misc Digest
******************************

Reply via email to