Linux-Misc Digest #160, Volume #27               Mon, 19 Feb 01 11:13:02 EST

Contents:
  Re: compiled 2.4.1 and PPP doesn't work (Nick Pitfield)
  Multi-threads (pthreads) & Socket. ("Rick Goh")
  Re: usb mass storage support (Armond Perretta)
  Re: Telnet Server (Frank da Cruz)
  Re: Configuring NFS ("Andreas Moroder")
  Re: using rm to delete thru the tree (Frank da Cruz)
  help with configuring ssh server (Hung Ngoc Lai)
  Re: Linux, Perl, CommPort - 28800 baud (Neil Cherry)
  Re: help with configuring ssh server (Michael Heiming)
  host kernel: Broken multicast host using 0.0.0.0 heard on eth0 (Jeremy Mackeldey)
  Re: windowsclients beim booten installieren ?? (Dennis Grevenstein)
  Re: Sawfish won't start (Peter Eddy)
  Re: Fax server software (Dustin Puryear)
  Re: tar archive error ("Nils O. Sel�sdal")
  Re: Samba Problems ("Nils O. Sel�sdal")
  Re: Telnet Server (Peter Eddy)
  Re: using rm to delete thru the tree ("Nils O. Sel�sdal")
  Re: Problem building 2.4.1 with "modules", no vfat no usb  no tulip ("Lev Babiev")
  Re: NFS : Linux with AIX... (Andreas Schweitzer)
  Re: Pass through printing in telnet session (Steven Conway)
  Re: Reformating / ("Nils O. Sel�sdal")
  Re: batch files in linux ("Nils O. Sel�sdal")
  downloaing suse 7.1  - where ? (Yinon Ashkenazy)
  DAMN! my printer isn't printing :((( (Reiner Griess)
  Re: MS to Enforce Registration - or Else ("Joseph T. Adams")
  help with rp3 dialer  ("richard fell")

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

From: [EMAIL PROTECTED] (Nick Pitfield)
Crossposted-To: comp.os.linux
Subject: Re: compiled 2.4.1 and PPP doesn't work
Date: 19 Feb 2001 12:41:03 GMT
Reply-To: [EMAIL PROTECTED]

In article <[EMAIL PROTECTED]>,
Robert  <[EMAIL PROTECTED], [EMAIL PROTECTED]> wrote:
>-=-=-=-=-=-
>
>Hey !
>
>after compiling 2.4.1, when i run wvdial 1.41 to connect to my ISP i get
>disconnected
>after the modem CONNECT signal.
>
>wvdial says it's a pppd error code = 1
>
>and i can find in /var/log/messages the following error:
>
>Feb 17 21:57:16 darkstar pppd[503]: ioctl(PPPIOCGFLAGS): Invalid
>argument
>
>i don't know at all what does this mean.

I had the same problem - you need to install the newer version of ppp as
stated in the 2.4.1 Docs/Changes file.

However, having done this I now have problems with /usr/lib/passwordfd.so - 
which I had previously cured in the 2.2.16 kernel by deleting a ppp package
as stated in SuSEs support database.

I was told to compile ppp support into the kernel rather than a a loadable
modules, but still no joy :-(

Regards.


    Nick Pitfield (IPConnect Product Support, Maidenhead).

/============================================================================\
| MAIL:  Nortel Networks plc, 3 Roxborough Way, Foundation Park,             |
|        Maidenhead, Berkshire SL6 3UD, UK.                                  |
| EMAIL: [EMAIL PROTECTED]                                    |
| PHONE: +44-1628-434795 (Nortel ESN 590-4795)                               |
\============================================================================/


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

From: "Rick Goh" <[EMAIL PROTECTED]>
Crossposted-To: 
comp.unix.programmer,alt.os.linux,comp.programming.threads,comp.protocols.tcp-ip,comp.os.linux.networking,comp.infosystems.www.servers.unix
Subject: Multi-threads (pthreads) & Socket.
Date: Mon, 19 Feb 2001 22:30:14 +0800

Hello,
I'm working on socket programming.

There's a need to process SEND & RECEIVE
from the same socket at the same time.

This is required as I need to calculate the delay
when i send and receive from an echo server elsewhere.

Does anyone have any knowledge in this? Or can anyone post me some
documentation for reference?

Below is a code obtained from LJ34. However, after running the compiled code
(cc helloworld.c -o helloworld -lpthread), the output is still SYNCHRONOUS,
i.e. the output doesn't interleave...

Any clues or other working examples of ASYNC pthreading??


Thanks & regards.


/******************
**
** Multi-threaded "Hello World" program
**
*/
#define _REENTRANT
#include <pthread.h>
#include <stdio.h>
/* function prototypes */
void* outputMsg( void* );
/* mutex variables */
pthread_mutex_t printfLock = \
  PTHREAD_MUTEX_INITIALIZER;
int main( void )
{
  pthread_t thr1, thr2;
  const char* msg1 = "Hello ";
  const char* msg2 = "world ";

  pthread_create( &thr1, NULL, outputMsg, \
    (void*)msg1 );
  pthread_create( &thr2, NULL, outputMsg, \
    (void*)msg2 );
  pthread_join( thr1, NULL );
  pthread_join( thr2, NULL );
  printf( "\n" );
  return 0;
}
void* outputMsg( void* msg )
{
  int i;
  for( i = 0; i < 10; ++i ) {
    pthread_mutex_lock( &printfLock );
    printf( (char*)msg );
    pthread_mutex_unlock( &printfLock );
  }
  return NULL;
}




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

From: Armond Perretta <[EMAIL PROTECTED]>
Subject: Re: usb mass storage support
Date: Mon, 19 Feb 2001 09:19:57 -0500

Eric Wertman wrote:

> It's one of the first options, something like "prompt for
> incomplete/development drivers".  Set this to yes.
> 
> "Vandenheede Bjorn" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]...
> >
> > I would like to compile support for usb mass storage in a 2.2.18 kernel,
> > but I'm not able to select the option.  What other option do I have to
> > select before I can select the usb mass storage option.
> >
 
I am not 100% sure you need the development drivers, but I am _pretty_ 
surre you need scsi support.  *nix will see your usb removable media drives 
as scsi.
-- 
Good luck and good sailing.
s/v Kerry Deare of Barnegat
http://kerrydeare.tripod.com

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

From: [EMAIL PROTECTED] (Frank da Cruz)
Crossposted-To: comp.protocols.kermit.misc
Subject: Re: Telnet Server
Date: 19 Feb 2001 14:27:51 GMT

In article <[EMAIL PROTECTED]>,
Jean-David Beyer  <[EMAIL PROTECTED]> wrote:
: [EMAIL PROTECTED] wrote:
: > 
: > I have seen telnet servers that allow people to log onto linux systems
: > via telnet. How can this be done using Caldera openlinux 2.4?
: > 
: I strongly suggest not allowing people to telnet into your machine
: using telnet because it is too easy for people to sniff everything
: going through the link, including passwords, especially the root
: password if someone outside knows it (such you when you are
: elsewhere than at the console). I recommend using some version of
: ssh instead (I use openSSH).
: 
Sending passwords in the clear is obviously unsafe.  From this it does
not follow that Telnet is bad and SSH is good.  SSH is not without its
pitfalls, risks, and drawbacks, and Telnet is available in secure
versions.  See:

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

- Frank

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

From: "Andreas Moroder" <amoroder@se-nord.[nospam]provinz.bz.it>
Subject: Re: Configuring NFS
Date: Mon, 19 Feb 2001 14:15:08 +0100

OK, the question was a little bit unprecise.

I know 'vi' but I wanted a tool to set all the parameters in /etc/exports.

I installed the latested version of webmin and now all works.

Bye

Andreas

Jean-David Beyer <[EMAIL PROTECTED]> schrieb in im Newsbeitrag:
[EMAIL PROTECTED]
> Andreas Moroder wrote:
> >
> > Hello,
> >
> > I have a Suse Linux system. What is the best configuration tool to
configure
> > the NFS server ?
> >
> vi (man vi), or emacs (man emacs).
>
> What do you need to configure? Just make the needed entries in
> /etc/exports
>
> For the client, just make the needed entries in /etc/fstab
>
> You might do a man exports, man nfs, and man fstab for more
> information, but it is pretty easy.
>
> --
>  .~.  Jean-David Beyer           Registered Linux User 85642.
>  /V\                             Registered Machine    73926.
> /( )\ Shrewsbury, New Jersey
> ^^-^^ 7:45am up 21 days, 16:12, 4 users, load average: 2.34, 2.14,
> 2.07



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

From: [EMAIL PROTECTED] (Frank da Cruz)
Crossposted-To: comp.protocols.kermit.misc
Subject: Re: using rm to delete thru the tree
Date: 19 Feb 2001 09:32:36 -0500

In article <96psu8$2dj$[EMAIL PROTECTED]>,
Adrian Mariano <[EMAIL PROTECTED]> wrote:
: >"Sudhakar R." <[EMAIL PROTECTED]> wrote in message
: >> could someone please tell me how to go about deleting all files that match
: >> the pattern *.*~ in every directory including sub-directories, sub-sub
: >> directories and so on in one single sweep.
: >
: "Benjamin Good" <[EMAIL PROTECTED]> writes:
: 
: > rm -r is recursive delete.  Be careful using it.  See man rm.
: 
: It's true that 'rm -r' is recursive delete but it will not do what was
: asked.  It will recursively delete entire directories (and all their
: subdirectories).  There is no way to get it to delete only certain
: files from the subdirectories.  
: 
A way to do this would be with the increasingly-all-purpose utility,
C-Kermit:

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

If you want to delete all *.*~ files in the directory tree, the command is:

  delete /recursive *.*~

Some people might find this a bit more intuitive than

  find . -name \*.\*~ -exec rm -f {} \;

The C-Kermit 7.1 DELETE command has lots of flexibility as you can see
from its list of options:

C-Kermit>delete ? File specification;
 or switch, one of the following:
 /after:         /except:        /nodotfiles     /recursive      /type:
 /ask            /heading        /noheading      /simulate
 /before:        /larger-than:   /nolist         /smaller-than:
 /directories    /list           /not-after:     /summary
 /dotfiles       /noask          /not-before:    /tree
C-Kermit>

So if you wanted to delete recursively files whose names matched a certain
pattern that were older than a certain date and were bigger than X but
smaller than Y, except for a certain list of files, it's all there.
"delete /tree" is like "rm -Rf" or "deltree".  "/simulate" lets you see
what would happen without actually doing it.

By the way, when you say *.*~, if you really mean EMACS-style backup files,
like foo.c.~3~, Kermit has a built-in command for that too: PURGE:

C-Kermit>purge ? Filename or switch, one of the following:
 /after:         /except:        /list           /nolist       /page
 /ask            /heading        /noask          /nopage       /recursive
 /before:        /keep:          /nodotfiles     /not-after:   /simulate
 /dotfiles       /larger-than:   /noheading      /not-before:  /smaller-than:
C-Kermit>

As you can see, this one can also be applied recursively, plus you can
tell it to keep a certain number of backup generations if you want.  In your
case the command would be simply:

  purge /recursive *.*

- Frank

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

From: Hung Ngoc Lai <[EMAIL PROTECTED]>
Subject: help with configuring ssh server
Date: 19 Feb 2001 14:40:24 GMT

I am running RH version 6.2 and kernel 2.4.1.  I am also running
SSH version 2.4.  Everything I start ssh server, I get a fatal error
telling me that port 22 is already in use and the service refuses
to start.  At the moment, for ssh server to work, I have to go into
the sshd2_config and change the port number from 22 to 24 
which is something Iprefer not to.  I check my box to see which
service is using port 22 (netstat -a) and find none.  Can anyone
help?  Thanks.

David

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

From: [EMAIL PROTECTED] (Neil Cherry)
Crossposted-To: comp.lang.perl.misc
Subject: Re: Linux, Perl, CommPort - 28800 baud
Reply-To: [EMAIL PROTECTED]
Date: Mon, 19 Feb 2001 14:50:45 GMT

On Mon, 19 Feb 2001 14:59:42 +0100, Jacek Chmielewski wrote:
>Witam Mam problem, jak pod Linuxem w Perlu ustawic szybkosc portu na 
>28800 bodow? setserial czy stty pozwalaja na ustawienie tylko 
>standardowych predkosci i 28800 nie przyjmuja... Poza tym potrzebowalbym 
>konstukcji pozwalajacej na stworzenie waktu oczekujacego i odbierajacego 
>przychodzace na port dane.
>
>Hi
>
>How to set comm port (serial, RS) speed to 28800 baud.
>'setserial' & 'stty' allow only to choose standard speeds, but no 28800.
>
>I'm using RedHat 7.0

You don't need to use 28800, you can use a high rate such as 38400 or
56000 or 11500. The 28800 is the rate at which your modem sends the
compressed data. I hope that helps.

-- 
Linux Home Automation           Neil Cherry             [EMAIL PROTECTED]
http://members.home.net/ncherry                         (Text only)
http://meltingpot.fortunecity.com/lightsey/52           (Graphics)
http://linuxha.sourceforge.net/                         (SourceForge)

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

From: Michael Heiming <[EMAIL PROTECTED]>
Subject: Re: help with configuring ssh server
Date: Mon, 19 Feb 2001 16:00:42 +0100

Hung Ngoc Lai wrote:

> I am running RH version 6.2 and kernel 2.4.1.  I am also running
> SSH version 2.4.  Everything I start ssh server, I get a fatal error
> telling me that port 22 is already in use and the service refuses
> to start.  At the moment, for ssh server to work, I have to go into
> the sshd2_config and change the port number from 22 to 24
> which is something Iprefer not to.  I check my box to see which
> service is using port 22 (netstat -a) and find none.  Can anyone
> help?  Thanks.
>
> David

Sounds as your sshd is running, try

netstat -tuplan

Shut it down with it's init script

/etc/rc.d/sshd stop
or
/sbin/init.d/sshd stop

(where ever it is on RH)

Michael Heiming

P.S. If you think you should crosspost, do it, but please don't post the
same question to different ng on their own,
makes no sense if different people answer to the same question.



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

From: Jeremy Mackeldey <[EMAIL PROTECTED]>
Subject: host kernel: Broken multicast host using 0.0.0.0 heard on eth0
Date: 19 Feb 2001 15:55:47 +0200

Hello folks,
i always get this message in my logs every five minutes:

host kernel: Broken multicast host using 0.0.0.0 heard on eth0

Where does ist come from? Which application is trying to do so?

I also get every 5 minutes the lines:

Feb 12 14:00:02 host kernel: Swansea University Computer Society IPX
0.34 for NET3.035
Feb 12 14:00:02 host kernel: IPX Portions Copyright (c) 1995 Caldera,
Inc.
Feb 12 14:00:02 host kernel: Appletalk 0.17 for Linux NET3.035

i am not aware of running atalk and cannot find it in the process list,
so i am not knowing where it comes from?

does anybody know where this is being started? I searched in init.d but do
not find a hint where appletalk is being loaded :-( My Linux-knowledge is stll
 very basic.

thanks in advance

( and i hope i am not OT)

jeremy


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

From: Dennis Grevenstein <[EMAIL PROTECTED]>
Crossposted-To: 
comp.os.linux.networking,de.comp.os.unix.linux.misc,de.comp.os.unix.networking.misc
Subject: Re: windowsclients beim booten installieren ??
Date: Mon, 19 Feb 2001 15:55:42 +0100

Hallo,

blackman wrote:
> 
> Ich m�chte meine clients (win98) beim booten automatisch mit einem Image
> best�cken, so das die clients automatisch bei jedem booten mit einem neuen
> image installiert werden.

Bist Du sicher, dass Du das willst? Wenn Du nicht gerade Gigabit
Ethernet hast w�rde ich da nochmal dr�ber nachdenken.
Oder wie oft rebootest _Du_ deine Windosen t�glich?

> Als server wird eine suse7.1 eingesetzt.  Ich habe das ganze schon einmal
> gesehen, wobei  dort auf den clients eine linuxpartition vorhanden sein
> muste. z.Z. macht der server: dhcp; dns; proxy und sambaserver (ohne weitere
> Dom�nanmeldung). Ich m�chte gerne zwei bis drei unterschiedliche Images
> verteilen, wo bei feststeht welche macadresse welches Images erhalten soll.
> hat damit schon mal jemand erfahrungen gemacht ??

Ich sch�tze das geht auch mit einer Linux bootdiskette.

mfg
Dennis

BTW.  Warum postest Du in einer internationalen Gruppe und schreibst
doch in deutsch? Da lohnt sich das �ble crossposting doch gar nicht.

-- 
> Haette eine gut erhaltene graue Tonne mit 120 Liter Inhalt abzugeben.

Was genau ist denn da drin?
                                         Jochen Ringle(ka.misc)

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

From: Peter Eddy <[EMAIL PROTECTED]>
Subject: Re: Sawfish won't start
Date: Mon, 19 Feb 2001 10:03:31 -0500


I don't know for sure, but you could try deleting or removing your
~/.sawfish directory.  You might also want to try doing the same for
your various .gnome* directories.  That's fixed problems for me in the
past.

Peter

Doug Poulin wrote:
> 
> Don't know what I did!
> Sawfish doesn't start automatically anymore.  I get about 20 gmc errors
> (little itty bitty boxes sitting on the taskbar).  I have to click on
> the Gnome foot, and go to run, and then type in SAWFISH, and then I'm
> OK.
> Xmms is also flaking out, so I'm wnodering if I didn't do something
> that's hosing everything!  Any guesses?
> 
> Thanks!
> 
> Doug

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

From: [EMAIL PROTECTED] (Dustin Puryear)
Subject: Re: Fax server software
Date: 19 Feb 2001 14:56:54 GMT
Reply-To: [EMAIL PROTECTED]

On Sat, 17 Feb 2001 10:11:48 GMT, Roy B <[EMAIL PROTECTED]> wrote:
>Hylafax seems to work very well and does, I believe, all the things you
>require.
>It is a little bit tedious to set up, but once configured it's solid as a
>rock.

Hylafax is very cool indeed. I just worked with someone to setup Hylafax
to automatically submit a fax into a database, which could then be viewed
by one of several customer reps. As you can see, it is very versatile.

Regards, Dustin

>
>Roy
>
>"Stearns28" <[EMAIL PROTECTED]> wrote in message
>news:[EMAIL PROTECTED]...
>> Hi all,
>>
>> We plan on setting up a fax server on RH 6.2 for our lab?  Is mgetty still
>the
>> fax server software of choice on Linux?  Does anyone know of any such
>software
>> (prefereably free, under GPL) with accounting features (such as keeping
>track
>> of how many pages and/or bytes an user has sent/received) ?
>>
>> Thanks for your info.
>>
>> -stearns
>>
>
>


-- 
Dustin Puryear <[EMAIL PROTECTED]>
Integrate Linux Solutions into Your Windows Network
- http://www.prima-tech.com/integrate-linux


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

Reply-To: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
From: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
Subject: Re: tar archive error
Date: Mon, 19 Feb 2001 16:14:48 +0100


"Wolfgang Batrla" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> reading a tar archive i encountered the error message:
> "unexpected end of file in archive
> error is not recoverable: exiting now"
> is it possible to recover the data from that tape, despite
> the error message?
Probably not, usually you get this file when you havnt got the entire tar
archieve..
eg. you only downloaded 4 out of the actually 6 Mb's




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

Reply-To: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
From: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
Subject: Re: Samba Problems
Date: Mon, 19 Feb 2001 16:15:55 +0100


"Mark Penkower" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I am having a weird Problem.
>
> I made some changes to my smb.conf file.  I then restarted samba.  I had
> problem logging in, so I ran the testparm program. Changes that I made
> to the smb.conf  -such as changing security from user to domain and
> encrypt passwords from no to yes.
security = domain requiers you to have an M$ pdc controller...




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

From: Peter Eddy <[EMAIL PROTECTED]>
Subject: Re: Telnet Server
Date: Mon, 19 Feb 2001 10:17:17 -0500

Jean-David Beyer wrote:
> 
> [EMAIL PROTECTED] wrote:
> >
> > I have seen telnet servers that allow people to log onto linux systems via
> > telnet. How can this be done using Caldera openlinux 2.4?
> >
> I strongly suggest not allowing people to telnet into your machine
> using telnet because it is too easy for people to sniff everything

Under some circomstances it's not a bad idea to use telnet.  If the
original poster wanted to allow telnet access to the rest of his office,
for example, and the machine was firewalled from the internet, then this
can be a very reasonable thing to do.  The original poster should try,
"man telnetd" or "man in.telnetd".  I don't know the particular
distribution in question, but telnetd might already be installed and
just need starting.

Even if the machine is on the internet, there are certain connection
types that are more susceptible to sniffing than others.  For example,
DSL connections are very difficult if not impossible to snif.

That said, if this machine is to be available on the internet, I'd
suggest SSH also.

Peter

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

Reply-To: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
From: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
Subject: Re: using rm to delete thru the tree
Date: Mon, 19 Feb 2001 16:19:39 +0100


"Sudhakar R." <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> hi,
>
> could someone please tell me how to go about deleting all files that match
> the pattern *.*~ in every directory including sub-directories, sub-sub
> directories and so on in one single sweep.
find /dir/to/erase -name "*~" -exec rm -f {}\;




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

From: "Lev Babiev" <[EMAIL PROTECTED]>
Subject: Re: Problem building 2.4.1 with "modules", no vfat no usb  no tulip
Date: Mon, 19 Feb 2001 10:56:41 +0500

2.4.x and late 2.3.x kernels have a different dir structure for modules.
Do you have any subdirs in /lib/modules/2.4.1? modules themselves can be
burried deep in subdir strucutre, i.e.
/lib/modules/2.4.1/kernel/drivers/block/floppy.o 

if they are not there, I'd say do make modules_install and look through
the output to see if there were problems installing modules.

Lev

In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED]  wrote:

> I'm having all sorts of problems with the 2.4.1 kernel ( essentially I
> skipped 2.4.0, at least on this machine, I downloaded 2.4.1 this weekend
> ). I specified a bunch of stuff be built into the kernel for example
> vfat support, usb support ( and lots of other stuff ). A lot of stuff
> fails when I boot. When  I try to mount a vfat partition mount tells me
> the kernel doesn't support vfat. When I try to mount a usbdevfs same
> thing.
> 
> I've upgraded modutils, so that shouldn't be a problem ( allthough I
> though that because I built them into the kernel, I would not need the
> modules ). lsmod tells me that there is nothing loaded, and when I look
> in /lib/modules/2.4.1/ these is just the scrap lying around , no
> modules.
> 
> I've done all the steps: make xconfig make dep make clean make bzImage
> make install make modules make modules_install.
> 
> At this point I'm not sure what is causing the proble. System  Dual
> P-II366. Mobo SuperMicro DGU. M 128M Distro Manfrake 2.4

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

From: [EMAIL PROTECTED] (Andreas Schweitzer)
Crossposted-To: 
comp.os.linux,comp.os.linux.admin,comp.os.linux.setup,comp.os.linux.questions
Subject: Re: NFS : Linux with AIX...
Date: 19 Feb 2001 15:28:42 GMT
Reply-To: [EMAIL PROTECTED]

In article <[EMAIL PROTECTED]>, jeffrey wrote:
>I have setup Linux NFS  Server  and one of my clients is a box running AIX .The

AIX and Linux don't like each other in secure mode.
Add 'insecure' to the options in the exports file on your Linux
box and try again.

Andreas

-- 
                       Andreas Schweitzer
             http://dilbert.physast.uga.edu/~andy/
        This post is brought to you by VIM, slrn and FreeBSD

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

From: Steven Conway <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.help,comp.protocols.kermit.misc
Subject: Re: Pass through printing in telnet session
Date: Mon, 19 Feb 2001 10:31:14 -0500

On 17 Feb 2001 19:26:51 GMT, [EMAIL PROTECTED] (Frank da
Cruz) wrote:

Thanks Frank will check it out.  I take it pass through printing is
not supported in the standard telnet session ?

Steven

>Use C-Kermit 7.1 as your Telnet client:
>
>  http://www.columbia.edu/kermit/ck71.html
>
>Pass-through printing is explained here:
>
>  http://www.columbia.edu/kermit/ckermit2.html#x3.3
>
>Note: this feature was added in C-Kermit 7.0 but it had a bug, which is fixed
>in C-Kermit 7.1.
>
>- Frank


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

Reply-To: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
From: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
Subject: Re: Reformating /
Date: Mon, 19 Feb 2001 16:40:24 +0100


"Thaddeus L Olczyk" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I am ( at present ) compiling the 2.4.1 kernel with jfs support built
> in. After I build the kernel I would like to reformat all my
> filesystems into jfs (except /boot )
> The problem is with a couple of filesystems ( in particular / ) which
> I cannot unmount. Can anyone suggest a way of modifying the /
> partition?
There are several jfs, i suppose you mean reiserfs.
Any way, and the hard way..
make a new partition, copy / over to it, format your old / in reiserfs
(using makereiserfs)
and copy the files back again...
You probably have to boot into the new partition you copied / over to..




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

Reply-To: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
From: "Nils O. Sel�sdal" <[EMAIL PROTECTED]>
Subject: Re: batch files in linux
Date: Mon, 19 Feb 2001 16:43:03 +0100


<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I have a batch file that needs to be converted in a linux shell script.
>
> The .bat file looks like:
>
> PATH \WINNT\system32\;\WINNT\;\java\bin\;\java\libSET
>
CLASSPATH=\java\lib\classes.zip;.;\java\lib\comm.jar;\java\lib\Audio.jar;\j
> ava\lib\Ftp.jar
#!/bin/sh
export PATH=$PATH:\WINNT\system32\:\WINNT\:\java\bin\:\java\libSET
export
CLASSPATH=$CLASSPATH:\java\lib\classes.zip:.:\java\lib\comm.jar:\java\lib\Au
dio.jar:\java\lib\Ftp.jar


notice colon : instead of semicolon ;
and read bash documentation
man bash




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

From: Yinon Ashkenazy <[EMAIL PROTECTED]>
Subject: downloaing suse 7.1  - where ?
Date: Mon, 19 Feb 2001 09:45:32 -0600

Hi,
Does anybody know where I can download suse 7.1 from ? or when it is
supposed to be available on the suse ftp site?


thanks

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

From: [EMAIL PROTECTED] (Reiner Griess)
Crossposted-To: linux.debian.user
Subject: DAMN! my printer isn't printing :(((
Date: Mon, 19 Feb 2001 16:09:14 +0100
Reply-To: [EMAIL PROTECTED]

Hi together,

i have never had such problems with installing
a printer in RedHat. /etc/printcap is configured,
lpd is runnning (restarting does not help).

The problem seems to be there with the parallel
port?! 'lpstat > /dev/lp0' should print
some ASCII chars to the printer - but nothing
happens! No errors in /var/log/messages... 
The ASCIIs are sent to nirvana....

Any ideas??
Thank you

Reiner

-- 

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

From: "Joseph T. Adams" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.advocacy
Subject: Re: MS to Enforce Registration - or Else
Date: 19 Feb 2001 16:06:00 GMT

In comp.os.linux.advocacy The Ghost In The Machine 
<[EMAIL PROTECTED]> wrote:
: In comp.os.linux.advocacy, Aaron Kulkis
: <[EMAIL PROTECTED]>
:  wrote
: on Mon, 19 Feb 2001 00:00:17 -0500
: <[EMAIL PROTECTED]>:
:>
:>
:>The Ghost In The Machine wrote:

: [snip]

:>> Mind you, this is somewhat reminiscent of 1986 tax "simplification".
:>> We now have the alternative minimum tax, which means we get to do
:>> everything more or less twice.
:>
:>
:>Graduated income taxes are Marxist.

: In which case we've been Marxist for a long time.  :-)
: At least in that particular area.


In most areas actually.

Read the _Communist Manifesto_ sometime.

Socialism has infected virtually every society on earth to at least
some extent.

(Most attempted flames on this subject will be interpreted by me as
compliments, so flame away.)


Joe


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

From: "richard fell" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.networking
Subject: help with rp3 dialer 
Date: Mon, 19 Feb 2001 11:07:59 -0600

I am using redhat 7.0 and use the rp3 dialer program to connect to the
internet. Yesterday, I tried to edit my connection (change the phone number)
and got a segmentation fault.
Since then, when I start rp3 and try to connect, I get an error message
"Failed to activate interface". Now, I can, through the rp3 config tool and
using debug, establish a ppp connection. So, that works. However, all this
does, I think, is allow one to determine whether a connection can be
established or not. It does not maintain the connection.


In any case, it appears that the dialer is broken and I am at a loss how to
fix it. Perhaps it is best to find the appropriate rpm on the redhat cd and
reinstall? If so, what is the correct rpm or does anyone have any other idea
how to get the dialer working.

Thanks to all in advance,
Dick Fell



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


** 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 by posting to comp.os.linux.misc.

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