Linux-Misc Digest #954, Volume #19               Mon, 26 Apr 99 08:13:12 EDT

Contents:
  Re: Problem with pppd (Rob Fisher)
  Kernel-2.2.6 ERROR ("Jaring User")
  Kernel 2.2.6 ERROR ("Jaring User")
  Re: I want an OS written ("Davide Inglima, limaCAT")
  Re: HELP!  Having Trouble Installing "tar" and "gz" Files ([EMAIL PROTECTED])
  Re: *.doc viewer (Christopher Mahmood)
  Re: swapping contents of partitions (Christopher Mahmood)
  Re: GNU reeks of Communism (Matt Templeton)
  kernel-2.2.6 ERROR (Michael)
  Re: Turtle Beach Fiji setup (Eric Wurbel)
  Re: Linux is dead (Harry)
  Re: A file manager that I've always wanted (Sitaram Chamarty)
  Re: mastering CDROM's from a Novell volume ([EMAIL PROTECTED])
  Re: Idiot Seeks Help 1: Linux and Modems (Stuart Miles)
  Re: Installing red hat over slackware ? ("Cj.Spaans")
  Re: Q: XEmacs & LaTeX ("Oliver D. Bedford")
  Re: A file manager that I've always wanted (Tom Ford)
  Re: system(3) and exec(3) question (F.R.M.Barnes)
  Re: How to log a telnet session ? (Paul Miles)
  Re: A file manager that I've always wanted (Tom Ford)
  Re: R U The Finest & Brightest Linux Guru?? read on.... (Shimon)
  Re: Opinions on KDE? ("Cj.Spaans")
  Re: Comparison of Distribution Packages (**Nick Brown)
  Re: Question Regarding Libraries ("David Z. Maze")
  Re: smaller font in xemacs ("David Z. Maze")
  H.323 under Linux ("David Seaman")
  voice over internet anyone? (Neil Zanella)

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

From: Rob Fisher <[EMAIL PROTECTED]>
Subject: Re: Problem with pppd
Date: Mon, 26 Apr 1999 11:10:09 +0100
Reply-To: [EMAIL PROTECTED]

> I have this problem with pppd.  See, my modem is attached to com 2
> /dev/cua2  (or /dev/ttyS2) 

We're Unix people remember, we count from zero. So com 2 = /dev/ttyS1


Rob

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

From: "Jaring User" <[EMAIL PROTECTED]>
Subject: Kernel-2.2.6 ERROR
Date: Mon, 26 Apr 1999 18:07:44 +0800

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



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

From: "Jaring User" <[EMAIL PROTECTED]>
Subject: Kernel 2.2.6 ERROR
Date: Mon, 26 Apr 1999 18:09:09 +0800

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



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

From: "Davide Inglima, limaCAT" <[EMAIL PROTECTED]>
Crossposted-To: comp.unix.misc,comp.lang.java.advocacy,comp.os.misc
Subject: Re: I want an OS written
Date: Mon, 26 Apr 1999 12:13:49 +0200

>> I seem to recall a competition on the Internet to write a complete OS
>> with support for a dial-up Internet connection, web browsing and email
>> facilities that would fit on a 1.44Mb floppy disk. As far as I can
>> remember, somebody DID actually meet these requirements. I can't
>> remember the URL, though. I'll

> I have a Linux OS disk at home that does just this. It's made by some
> Italian. Don't remember the name , sorry! Actually, there are quite a few
> Micro-Linux around.
 
In think that is mu-linux (or mulinux...) ...

Enjoy!

Gatto Feroce
"The Legend Will Never Die!"


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

From: [EMAIL PROTECTED]
Subject: Re: HELP!  Having Trouble Installing "tar" and "gz" Files
Date: Mon, 26 Apr 1999 11:24:36 GMT
Reply-To: [EMAIL PROTECTED]

On Mon, 26 Apr 1999 09:50:01 GMT, [EMAIL PROTECTED] (Roy A. McCoy) wrote:

>I guess I'm a bit confused about installing programs that come in the "tar" or
>"gz" format.  I tried tonight and it was a disaster.  Tried two programs and the
>uncompressing went OK.  Saw tons of files names scrolling by on the screen but
>when I finished and typed "ls", there were only two files in the directory, the
>original file with the "gz" extension and another file without the extension.

the other on is probably the expanded directory.

>What happened to all the other files?  I spent quite a while looking for them
>but without success.  Does the program create its own directory?  If so, how do
>I find it? 

It' there !

>
>Whenever I try to compile a program and type "./configure", I always get an
>error message that says "No such file or directory."  How do I ever install
>programs?
>
>Please help.  I'm just about ready to give up on Linux.

Don't give up too soon. Installation is not as easy as in Windows, but it works.
A typical archive is named  "Name-version.tar.gz" or "Name-version.tgz". Copy it
to your /usr/src directory. Enter the following command:

gzip -cd Name-version.tar.gz | tar xfv -

Enter the command exactly in this format, including the trailing dash -.
Substitute the name of your actual archive, of course. You will get a
subdirectory called Name-version. Change to that directory using cd. Most
packages will have a README or INSTALL file there. Read it carefully and follow
the instructions. Not all packages have a ./configure script, sometimes you have
to do a make config. A typical installation sequence looks like:
./configure (or make config, or nothing at all)
make
make install

but this just a typical case. Look into the docs to find the instructions for
your very package.

After successful installation, you may move the tar.gz archive to subdirectory
packages/SOURCES. You can even delete the archive and the complete source tree,
if you don't want to reinstall or look into the sources.

Good luck ! 
Eggert

=====================================================
Answers please in this newsgroup!
[EMAIL PROTECTED]

=====================================================

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

From: Christopher Mahmood <[EMAIL PROTECTED]>
Subject: Re: *.doc viewer
Date: 25 Apr 1999 09:39:38 -0700

there's a package called 'xdoc' or something like that. 
 personally, i just do a 'strings < bloat.doc > text.txt'.  
you'll notice that the entire document is repeated twice 
in the .doc file.
-ckm

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

From: Christopher Mahmood <[EMAIL PROTECTED]>
Subject: Re: swapping contents of partitions
Date: 25 Apr 1999 09:44:28 -0700

yes, as long as you update fstab.  there's a howto about this 
sort of thing.
-ckm

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

From: Matt Templeton <[EMAIL PROTECTED]>
Crossposted-To: 
comp.os.ms-windows.misc,comp.os.ms-windows.advocacy,comp.os.linux.advocacy
Subject: Re: GNU reeks of Communism
Date: Mon, 26 Apr 1999 05:37:10 +0000

Thank you Senator McCarthy!

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

From: Michael <[EMAIL PROTECTED]>
Subject: kernel-2.2.6 ERROR
Date: Mon, 26 Apr 1999 10:18:16 GMT

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: Eric Wurbel <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware,comp.os.linux.setup
Subject: Re: Turtle Beach Fiji setup
Date: Mon, 26 Apr 1999 12:45:49 +0200

Well, until now I was struggling in order to get my Roland SCC1 working
with
linux. 
I own a Turtlebeach Multisound (classic). I'll have a try an tell you !

Eric

[EMAIL PROTECTED] wrote:
> 
> I'm running the 2.2.6 kernel, on a  PII@350 MHz, with 128 MB SDRAM.
> 
> I'm trying to put the Turtle Beach Fiji Card to work, I
> followed the instructions on the modular sound driver docs
> and on the README file at the top of the shar Multisound.
> 
> After loading the modules with:
> 
> modprobe soundcore
> insmod msnd
> insmod msnd_pinnacle cfg=0x260 io=0x290 irq=10 mem=0xd0000
> 
> The kernel log message is:
> 
> msnd_pinnacle: Turtle Beach MultiSound (Pinnacle/Fiji) Linux Driver Version
> 0.8.3.1, Copyright (C) 1998 Andrew Veliath
> msnd_pinnacle: Non-PnP mode: configuring at port 0x260
> msnd_pinnacle: 131072 byte audio FIFOs (x2)
> msnd_pinnacle: Fiji revision C, Xilinx version 1.4, I/O 0x290-0x297, IRQ 10,
> memory mapped to 0xc00d0000-0xc00d7fff
> msnd_pinnacle: DSP reset
> msnd_pinnacle: DSP firmware uploaded
> 
> There is no /proc/sound. The cat /dev/sndtat is not supported.
> From what I can make of the docs, there is only support for /dev/dsp,
> not for /dev/audio. Now with the lastest version of the driver
> there is also midi support.
> 
> Trying:
> 
> cat endoftheworld > /dev/dsp
> 
> it hangs and when interrupted gives the following kernel log
> message:
> 
> msnd_pinnacle: Starting write for c50734a0
> msnd: Enabling IRQ
> msnd: Disabling IRQ
> msnd_pinnacle: Stopping write for c50734a0
> 
> No sound is produced whatsoever.
> 
> I would appreciate if someone could give me a few pointers on
> what is really happening, and suggest a possible solution.
> 
> Thank you,
> 
> Antonio Almeida
> 
> "Do not complain of the mean and the petty, for regardless of what you
>  have been told the mean and the petty are everywhere in control." - Goethe
> 
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own

-- 
le dernier hébergeur gratuit (sans pub obligatoire...) frappé ==> 
http://altern.org
Eric Wurbel
Laboratoire d'Informatique de Marseille CMI - Universite de Provence
39 rue Joliot Curie, 13453 - MARSEILLE Cedex 13 - FRANCE
phone : +33 (0)4 91 11 36 19 fax :   +33 (0)4 91 11 36 02

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

From: Harry <[EMAIL PROTECTED]>
Subject: Re: Linux is dead
Date: Mon, 26 Apr 1999 10:42:50 +0100
Reply-To: [EMAIL PROTECTED]

Oh no - someone took it seriously despite all the warnings!

Never mind - I've got myself a set of blinkers now, so I'm ready to be
taken seriously in the Linux world.

(Yes - this is another *flippant* reply - it doesn't express my opinion
of Linux, it just pokes fun at a certain type of Linux user.)

Harry


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

From: [EMAIL PROTECTED] (Sitaram Chamarty)
Subject: Re: A file manager that I've always wanted
Date: Mon, 26 Apr 1999 10:38:36 GMT

On 23 Apr 1999 17:30:25 +0100, Tom Ford <[EMAIL PROTECTED]> wrote:
>Hmmm, bit of an `does it exist', this...
>
>Think the text based versions of mc, with the right panel working as a file
>viewer. So when I click down, the right panel automatically shows the
>text (if it's a text file) or the picture if it's a picture, or some
>info on the file if it's an executable or whatever.

I dont know about the details - no time to test - but "mc" does
have such a mode.  Hit F9, R, then look at the second or third
menu item - it's called "quick view".

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

From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.answers;
Subject: Re: mastering CDROM's from a Novell volume
Date: Mon, 26 Apr 1999 09:44:10 GMT

In article <[EMAIL PROTECTED]>,
  [EMAIL PROTECTED] (John Ridley) wrote:
> OK, I've convinced my company to give Linux a go for one more task
> (I'm slowly working Linux into all the corners of our operation) -
> I've told them that I can set up a single machine that can master 2 or
> 3 discs at once.  I've got it set up and that part of it is working OK
> (yes, I've applied the sg malloc patch).
>
> The problem I'm having is with mkisofs - our CD staging area is on a
> Novell server, and mkisofs doesn't like it.  I type something like:
>
> mkisofs -o something.iso /novell/server/cdimage/
>
> and it just dumps immediately and tells me:
> Directory loop - fatal goof (./dirname 5 24134164)
>
> I've looked at the source and determined that it's using the INODE of
> the directory to create a hash; I guess it's trying to build a quick
> way to detect loops without having to unroll all the symlinks, etc.
> The problem is that I don't think that a Novell server has Inodes, at
> least not that are visible to the Linux box.  Maybe it just reports
> one INODE for everything?  I don't know.
>
> For now, I'm copying the entire directory over to a local area, then
> doing mkisofs on that.  It works, but I don't like it.
>
> This is a great opportunity for me to demonstrate something really
> cool and important to the company, that NT just can't do (that I know
> of) and Linux doesn't have any trouble with.
>
> Any suggestions, anyone?  I'll try to check here in the newsgroup for
> answers, but I'd appreciate an email copy.  Thanks.

One solution is to use the -f option - this "follows symbolic links" - which
you are unlikely to have on your Novell server - but it also skips the
"Directory loop - fatal goof" code.

I've previously reported this as a "bug" - I believe the "Directory loop" is
not a serious problem and should not stop the processing. I would suggest you
edit tree.c and remove the "if(find_directory_hash(..." code block.

James Pearson

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

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

From: Stuart Miles <[EMAIL PROTECTED]>
Subject: Re: Idiot Seeks Help 1: Linux and Modems
Date: Mon, 26 Apr 1999 11:40:04 +0100



This is a plug n pray modem, are you using isapnp first?

-- 
Stuart Miles                         Email: [EMAIL PROTECTED]
Alenia Marconi Systems               Phone: +44 1276 63311

Views expressed are mine and not those of Alenia Marconi Systems

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

From: "Cj.Spaans" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: Re: Installing red hat over slackware ?
Date: Mon, 26 Apr 1999 12:46:47 +0200

Why do you want to change to red hat? 
I just wondering about this action.

Hans 

=======
NexOS Development Team http://www.nexos.org/
NexOS is sponserd by NexIT http://www.nexit.net/ 

On Sun, 25 Apr 1999, Venkata Ramana wrote:

> Hai,
>     I have slackware linux ver 3.x running along with windows 95. Now I
> wanted to switch
> over to redhat 5.2. How should I go about? Whether I have delete existing
> linux completely
> and do installation all over again or I can upgrade my existing slackware to
> red hat ?
> can anyone help?
> bye
> 
> 
> 
> 
> 
> 
> 
> 

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

From: "Oliver D. Bedford" <[EMAIL PROTECTED]>
Subject: Re: Q: XEmacs & LaTeX
Date: Mon, 26 Apr 1999 12:47:43 +0200

David M. Cook wrote:
> > I´m having a problem with latex-mode: xemacs 20.4 does not display the
> > menus usually associated with latex-mode. What´s wrong?
> 
> Did you put
> (require 'tex-site)
> in your .emacs?

  Thanks. Now it´s working.

  Oliver

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

From: Tom Ford <[EMAIL PROTECTED]>
Subject: Re: A file manager that I've always wanted
Date: 26 Apr 1999 11:51:06 +0100

burk <[EMAIL PROTECTED]> writes:

> What's it called? I've obviously missed it.
> -burk

hai. Thanks to the aol guy for his reply, but perhaps he could have
been a little more verbose.

> My Linux File Manager Page: http://www.pobox.com/~burk/LinuxFile.html

Ah. It looks like you _might know_ then :p

Flend

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

From: [EMAIL PROTECTED] (F.R.M.Barnes)
Crossposted-To: comp.unix.programmer
Subject: Re: system(3) and exec(3) question
Date: Mon, 26 Apr 99 10:50:39 GMT

Stefano Ghirlanda ([EMAIL PROTECTED]) wrote:
: Hi,
: I'm new to system calls. My program needs to launch another one and then
: either quit or wait for more input based on some option. I would also like
: to check that the commands do succeed. With system(3) this seems (to me)
: unfeasible: if I system() a valid command or a bogus one (e.g.
: sdfgsdfgsdfg) I alwyas get a return value of 0 and errno unmodified (I
: suppose because the _shell_ execution succeds). If I use execvp(3) I can
: detect the error but not get control back to the program if that's needed.
: Should I use fork()/exec()? Any suggestion appreciated.

The exec() pile of functions replace the current process with the one
specified.  If exec() ever returns, it failed.  Using fork()/exec() is
the right way.

pid_t ch_pid;
switch( (ch_pid = fork()) ) {
case -1:
        perror( "fork()" );
        exit( 1 );
        break;
case 0:
        /* Child */
        exec..( whatever );
        perror( "exec()" );
        exit( 1 );
        break;
default:
        /* Parent */
        printf( "Child process %d started.\n", ch_pid );
        break;
}

You might also want to handle the SIGCHLD signal, which gets sent to
the parent when the child's status changes (usually on exit or stop).

There must be piles of information on how to do this, just poke around
the net.  Alternatively get Stevens "Advanced Programming in the UNIX
Environment".

Hope that helps,
  Fred.
--
+----------------------------------------------------------------------+
| Fred Barnes, CS Student, UKC                http://teddy.xylene.com/ |
| [EMAIL PROTECTED]                            http://stuE253.ukc.ac.uk/ |
+----------------------------------------------------------------------+

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

From: [EMAIL PROTECTED] (Paul Miles)
Crossposted-To: 
comp.os.linux,comp.os.linux.admin,comp.os.linux.help,comp.os.linux.networking
Subject: Re: How to log a telnet session ?
Date: 26 Apr 1999 10:58:06 GMT


I've never looked at this, but have a look on your system for ttysnoop

Aparently its some kind of wrapper for telnet that logs everything.

Paul
Francois-Xavier LEBLOND ([EMAIL PROTECTED]) wrote:
: Hello,

: I want to log automatically in a file all my telnet sessions. Somebody has
: told me to look in /etc/syslog.conf, but for the moment I've just manage to
: log authentification messsages, and not the complete work I've done in my
: sessions ...

: Thanks

: FX



--
Paul
        Final Year CompSci          o__
        University of Kent          _.>/)_    "A fish with a mission"
        http://stue1ae.ukc.ac.uk   (_) \(_)

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

From: Tom Ford <[EMAIL PROTECTED]>
Subject: Re: A file manager that I've always wanted
Date: 26 Apr 1999 11:55:57 +0100

[EMAIL PROTECTED] (Sitaram Chamarty) writes:

> I dont know about the details - no time to test - but "mc" does
> have such a mode.  Hit F9, R, then look at the second or third
> menu item - it's called "quick view".

Ah yes, thanks. Now a version which can do pictures under X is all I need!

I wonder if the GNOME MC will be able to do this, perhaps I should go
suggest it to them!

Flend

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

From: Shimon <[EMAIL PROTECTED]>
Subject: Re: R U The Finest & Brightest Linux Guru?? read on....
Date: Mon, 26 Apr 1999 13:41:42 +0300

Mark Tranchant wrote:
> 
> You are way off track, I'm afraid. The chmod to make the file executable
> is all that is needed, so long as the file itself is something that is
> capable of execution. The asterisk in the ls output is generated by
> reading the permissions.
> 

thank you for the correction, Mark :-)
Shimon

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

From: "Cj.Spaans" <[EMAIL PROTECTED]>
Subject: Re: Opinions on KDE?
Date: Mon, 26 Apr 1999 13:13:52 +0200

I have KDE 1.1 running on a PPro 150, with 64MB RAM and 4 MB WRAM (on 
resolution 1280x1024x24), and it works fast and memory use is not much. 

I work now daily with and I think its a good and fast desktop, only there 
some minor bugs and/or strange features :)

Give it a try and if you don't like it dump it.

Hans

=======
NexOS Development Team http://www.nexos.org/
NexOS is sponserd by NexIT http://www.nexit.net/ 


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

From: **Nick Brown <[EMAIL PROTECTED]>
Subject: Re: Comparison of Distribution Packages
Date: Mon, 26 Apr 1999 13:12:02 +0200
Reply-To: [EMAIL PROTECTED]

For Debian, if you go to
http://www.debian.org/Packages/stable/allpackages.html and hack around
with a reasonable editor, you should be able to get something usable.

Rod Roark wrote:
> 
> Does anyone know if there's a package-by-package comparison somewhere of
> the major distributions?  I.e., for each package a 1-liner indicating
> which version of it, if any, is contained in each distribution.

-- 
===============================================================
Nick Brown, Strasbourg, France (Nick(dot)Brown(at)coe(dot)fr)

Protect yourself against Word 95/97 viruses, free - check out
 http://www.geocities.com/NapaValley/Vineyard/1446/atlas-t.html
===============================================================

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

From: "David Z. Maze" <[EMAIL PROTECTED]>
Subject: Re: Question Regarding Libraries
Date: 26 Apr 1999 07:51:20 -0400

Jason Bond <[EMAIL PROTECTED]> writes:
JB> This may seem like a stupid question but when you install a
JB> library, gtk, or glib, for example as root, does it matter where
JB> you compile the code....that is do I need to compile it in a place
JB> where I'm going to leave it?  In other words, is the compiler
JB> installing it to the directory in which I am working (/root) or is
JB> it installing it in some other standard place?  Thanks much,

It doesn't matter where you build it; the installation installs to
somewhere different.  You can check this with 'make -n install', to
see what the installation will actually do.  As jik points out, you
don't need to do the actual compilation as root.  I like to keep
source trees somewhere contained (e.g. under /usr/local/src).  With
autoconfified packages (that have a 'configure' script), you can
change where the package will install with the correct argument to
configure; try './configure --help'.

-- 
David Maze             [EMAIL PROTECTED]          http://donut.mit.edu/dmaze/
"Hey, Doug, do you mind if I push the Emergency Booth Self-Destruct Button?"
"Oh, sure, Dave, whatever...you _do_ know what that does, right?"

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

From: "David Z. Maze" <[EMAIL PROTECTED]>
Subject: Re: smaller font in xemacs
Date: 26 Apr 1999 07:53:43 -0400

Ekkard Gerlach <[EMAIL PROTECTED]> writes:
EG> how can I get smaller font in xemacs ?  I can't find the
EG> configuration parameter.

The Options/Size menu is the most convenient way to do this.  You may
need to do some magic to save this option; see the XEmacs FAQ for more 
information.

-- 
David Maze             [EMAIL PROTECTED]          http://donut.mit.edu/dmaze/
"Hey, Doug, do you mind if I push the Emergency Booth Self-Destruct Button?"
"Oh, sure, Dave, whatever...you _do_ know what that does, right?"

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

From: "David Seaman" <[EMAIL PROTECTED]>
Subject: H.323 under Linux
Date: Mon, 26 Apr 1999 12:27:29 +0100

Does anyone know where I can go to download/get a copy of the h.323 server under 
Linux.  I've gone
to www.h323.org and it is still being constructed.  I've also been going round and 
round with the
linux site's redhat, S.U.S.E., Debian, and Linux.co.uk.

--
Regards

David
==========
David Seaman
Technical Support
==============  Business Online (UK) plc  ==============
Business Online                |  Public Online
http://www.bizonline.net  |  http://www.publiconline.net
=============  Britain's Premier Free ISP ==============
Opinions expressed in this email are those of the author
and are not binding upon Business Online (UK) plc.



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

From: Neil Zanella <[EMAIL PROTECTED]>
Subject: voice over internet anyone?
Date: Mon, 26 Apr 1999 05:15:28 -0230


Hello,

I am still looking for a half decent program that will allow

you to people to talk for free over the internet and works with

modems.

If anyone knows of such a Linux application and has tried it out

and worked then please let me know so I don't have to reboot into

windows just for this.

Thanks,

Neil Zanella
[EMAIL PROTECTED]

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


** 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