Linux-Misc Digest #67, Volume #25                 Fri, 7 Jul 00 15:13:02 EDT

Contents:
  Re: Is Brainbench Legitimate?? (The Darkener)
  Re: linux mandrake 6.1 (The Darkener)
  Re: Compiling individual kernel modules from the kernel source tree (Dances With 
Crows)
  Re: Module and daemon startup (David Efflandt)
  Re: kudzu,pcmcia and sound (Patrice Belleville)
  Re: Nothing is running, then what's it doing? (David Efflandt)
  Using all of memory (yes I RTFM) (Myke Morgan)
  Re: bttv compile and other video questions
  Re: Using all of memory (yes I RTFM)
  Re: Module and daemon startup (Dances With Crows)
  Re: NTP trouble... (David Efflandt)
  Corel Linux (Pablo Cardozo)
  Re: Partition Magic & Boot Manager (Jerry Lapham)
  Simple Syslog question (Jim McIntyre)
  Re: why make clean before making kernel? (Krzys Majewski)
  Re: Using all of memory (yes I RTFM) (J Bland)
  Problems with modules on 2.2.13 [SMP] (Chris J/#6)
  Re: Module and daemon startup (John Hedges)

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

From: The Darkener <[EMAIL PROTECTED]>
Subject: Re: Is Brainbench Legitimate??
Date: Fri, 07 Jul 2000 18:10:56 GMT

I took the Unix system administration exam and passed with 100%.  Took the
TCP/IP exam and failed with 37%. =p~ Only thing that's weird to me as there was
only 7 questions.  It's far from a nationally known exam center (such as A+,
MCSE, CISCO, etc) but it's got lots of neat features such as a free
certification paper when you pass, your name on the list, etc.

Hey, for free, why not?

mmm007 wrote:

> I just took a free Brainbench Linux Administrator certification exam and
> barely passed. That exam was tough.  I thought it would be a joke sinces its
> free.  I
> talked to a couple of friends and they took the exams and were surprised.
> Have any of you taken these exams?

--
- The Darkener



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

From: The Darkener <[EMAIL PROTECTED]>
Subject: Re: linux mandrake 6.1
Date: Fri, 07 Jul 2000 18:12:05 GMT

CTRL+ALT+PLUSKEY/MINUSKEY to cycle between resolutions in X.

Mariusz wrote:

> How to change setting of display from 1024x768 to 800x600.
>
> --
> Posted via CNET Help.com
> http://www.help.com/

--
- The Darkener



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

From: [EMAIL PROTECTED] (Dances With Crows)
Subject: Re: Compiling individual kernel modules from the kernel source tree
Date: 07 Jul 2000 14:12:06 EDT
Reply-To: [EMAIL PROTECTED]

On 7 Jul 2000 11:49:13 -0500, Dave Brown 
>But I thought you still had to re-compile the kernel, so it would have 
>the proper hooks for the module you're about to provide.  I really 
>don't understand much about symbol-tables, etc.
>For that matter, wouldn't you have to redo a "make dep" if you pick 
>a section of code (i.e., choose a module) which hadn't been selected 
>in the previous configuration.

This is true in certain instances.  If your previous kernel didn't have
any sound support, and you did a "make menuconfig" and set up sound
support to be compiled directly and SB16 support to be a module, you'd
have to recompile chunks of the kernel.  However, modules are just
that--modular!  Generally, the kernel obtains the hooks it needs from the
module itself, or from other modules.

For instance, if you try to modprobe the SCSI Generic module and there's
no SCSI support compiled in, the /lib/modules/X.Y.Z/modules.dep file will
be consulted.  Then the kernel will know to load the SCSI host adapter
module, then the SCSI module, then the SCSI generic module.  Similar
arguments apply for most other things.

>It's been a long time since I read the kernel HOWTO, but I don't think 
>things like this are delved into.  (Sorry about ending with a preposition.)

Not really, but there was a time when I was compiling and tweaking kernels
every other day (motherboard was badly br0ken and I didn't know it--tried
to fix a hardware problem in software), and I ran through many compiles
without doing "make dep" or "make clean" and things worked, sort of.  (No,
they didn't work any better with "make dep clean" included.  Flaky
hardware will do that.)

-- 
Matt G / Dances With Crows      /\    "Man could not stare too long at the face
\----[this space for rent]-----/  \   of the Computer or her children and still
 \There is no Darkness in Eternity \  remain as Man." --David Zindell "So did
But only Light too dim for us to see\ they become Gods, or Usenetters?" --/me

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

From: [EMAIL PROTECTED] (David Efflandt)
Subject: Re: Module and daemon startup
Date: 7 Jul 2000 18:12:35 GMT
Reply-To: [EMAIL PROTECTED]

On Fri, 07 Jul 2000 15:55:58 GMT, John Hedges <[EMAIL PROTECTED]> wrote:
>1. What is the best way to get a kernel module loaded at startup? Ive
>already set the module up to work with modprobe. Should I use init.d
>or is there another mechanism for kernel modules?

Not sure, but if all else fails, you could always load it in
/etc/rc.d/rc.local.

>2. I want to run a normal program as a daemon in init.d. Is there a
>way, perhaps using the init.d daemon function (in init.d/functions),
>to make this work as the program needs to be backgrounded somehow?
>Maybe there is a simple wrapper program to fork / exec to do it for
>me. Maybe I should just write one :-)

Just write a script to do what ever you want to do, make sure it is 755
permission and symlink it to /etc/rc.d/rc#.d/99scriptname where # =
runlevel.  For example rc3.d runlevel 3 and rc5.d is runlevel 5.

For example here is a script that runs vncserver as user efflandt (the cd
and PATH is because I have not figured out how to su a program as a user
with the users environment like su -).  You don't need '&' ending
commandline if your daemon automatically forks to the background like
vncserver does:

#!/bin/bash
cd /home/efflandt
PATH=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games:/home/efflandt/bin
/bin/su -c /usr/bin/vncserver efflandt


-- 
David Efflandt  [EMAIL PROTECTED]  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://hammer.prohosting.com/~cgi-wiz/  http://cgi-help.virtualave.net/


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

From: Patrice Belleville <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.portable,comp.os.linux.hardware
Subject: Re: kudzu,pcmcia and sound
Date: 07 Jul 2000 11:14:42 -0700

[EMAIL PROTECTED] (David Efflandt) writes:

> On Fri, 7 Jul 2000, Darren Christie <[EMAIL PROTECTED]> wrote:
> >I have Redhat 6.1 installed on a Toshiba Tecra 8100, however when
> >booting kudzu has decided not to detect new hardware.
> 
> What kind of hardware are you adding inside of a laptop?

In my case it insisted on detecting the (external) modem. I disabled kudzu
because I got tired  of  having it interrupt the  boot  process to ask  me
questions when the modem was on(off) whereas it had  been off(on) the last
time I'd turned the machine on :-)


-- 
**------------------------------------------------------------------------
** Patrice Belleville ([EMAIL PROTECTED])                   (604) 822-9870
** Instructor and Departmental advisor,     Department of Computer Science
**------------------------------------------------------------------------

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

From: [EMAIL PROTECTED] (David Efflandt)
Subject: Re: Nothing is running, then what's it doing?
Date: 7 Jul 2000 18:18:01 GMT
Reply-To: [EMAIL PROTECTED]

On Thu, 06 Jul 2000 10:20:45 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>I have Red Hat 6.2 installed and have been using it for a month or so.
>One thing I noticed is that after shutting down all my running programs
>(according to Gnome's tasklist) the hard drive still access every few
>seconds for hours and hours. I thought I shut everything down, but
>something is still accessing the hard drive.
>
>How can I find out what program is doing this? The system should just be
>totally idle when not in use, right?

No.  However, there will be less disk access when in the console instead
of gnome.

For one thing if you have gnome set to automatically mount CD's it
regularly polls the CD drive to see if a CD has been inserted.  Linux also
does not write to the disk immediately, so kflushd flushes the buffers to
disk occasionally.  There are also system logs, atd, crond, etc. that sort
of make it almost impossible to spin down your primary drive.

-- 
David Efflandt  [EMAIL PROTECTED]  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://hammer.prohosting.com/~cgi-wiz/  http://cgi-help.virtualave.net/


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

From: [EMAIL PROTECTED] (Myke Morgan)
Crossposted-To: alt.os.linux,comp.os.linux.setup
Subject: Using all of memory (yes I RTFM)
Date: 7 Jul 2000 18:19:13 GMT

I'm having trouble getting Linux to access all of my memory. I have 512mb 
and it  only see's 64mb.

Before you start yelling, yes I have the append = "mem-512m" line in my 
lilo.conf file. But the only way I can get Linux to see all the memory is 
if I enter mem=512m from the boot line. I am booting to a SCSI root disk, 
and have four IDE drives. 

Here's my lilo.conf:

boot=/dev/sda
map=/boot/map
install=/boot/boot.b
prompt
timeout = 50
linear
disk=/dev/sda
  bios=0x81
default = linux
  vga = normal
  append = "mem=512m"
image = /boot/vmlinuz-2.2.14-5.0smp
  label = linux
  initrd = /boot/initrd-2.2.14-5.0smp.img
  read-only
  root = /dev/sda1
image = /boot/vmlinuz-2.2.14-5.0
  label = linux-up
  initrd = /boot/initrd-2.2.14-5.0.img
  read-only
  root = /dev/sda1



--
I proclaim you, FOUR!


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

From: [EMAIL PROTECTED] ()
Subject: Re: bttv compile and other video questions
Date: Fri, 07 Jul 2000 18:19:47 GMT

On Fri, 07 Jul 2000 01:02:27 -0800, mike <[EMAIL PROTECTED]> wrote:
>Hi,
> All day today I've been playing with getting my WinTV card(Hauppage,
>bt878 based) working with RedHat 6.0. I'm at the point that I can view
>broadcast TV via antenna(I need a longer coax to reach my cable), I can
>view videos played on my vcr, and I can capture avi video with xawtv. 
>
>So what's the problem you ask? Well when I tried to compile bttv it
>wouldn't even get going complaining that my kernel didn't support loadable
>modules. This is not true, this is how I got it working, manually

        Make sure that the kernel source been configured at least once. If you 
        are using the source straight from the installation for either 
        Redhat or Mandrake, you can just run the configuration once and save 
        it. 

[deletia]

-- 

        It only takes a little bit of bad luck to negate the whole benefit
        of "runs everything" for a particualar end user.  
                                                                |||
                                                               / | \

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

From: [EMAIL PROTECTED] ()
Crossposted-To: alt.os.linux,comp.os.linux.setup
Subject: Re: Using all of memory (yes I RTFM)
Reply-To: [EMAIL PROTECTED]
Date: Fri, 07 Jul 2000 18:21:15 GMT

On 7 Jul 2000 18:19:13 GMT, Myke Morgan <[EMAIL PROTECTED]> wrote:
>I'm having trouble getting Linux to access all of my memory. I have 512mb 
>and it  only see's 64mb.
>
>Before you start yelling, yes I have the append = "mem-512m" line in my 
>lilo.conf file. But the only way I can get Linux to see all the memory is 
>if I enter mem=512m from the boot line. I am booting to a SCSI root disk, 
>and have four IDE drives. 
>
>Here's my lilo.conf:

remove the "append=";  (change it to just "mem=512m")
try putting it in the images sections, like "mem=512m" just after the "root="
line.



>
>boot=/dev/sda
>map=/boot/map
>install=/boot/boot.b
>prompt
>timeout = 50
>linear
>disk=/dev/sda
>  bios=0x81
>default = linux
>  vga = normal
>  append = "mem=512m"
>image = /boot/vmlinuz-2.2.14-5.0smp
>  label = linux
>  initrd = /boot/initrd-2.2.14-5.0smp.img
>  read-only
>  root = /dev/sda1
>image = /boot/vmlinuz-2.2.14-5.0
>  label = linux-up
>  initrd = /boot/initrd-2.2.14-5.0.img
>  read-only
>  root = /dev/sda1
>
>
>
>--
>I proclaim you, FOUR!
>


-- 

I didn't do it!  Nobody saw anything!  You can't prove anything! -- bart

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

From: [EMAIL PROTECTED] (Dances With Crows)
Subject: Re: Module and daemon startup
Date: 07 Jul 2000 14:22:19 EDT
Reply-To: [EMAIL PROTECTED]

On Fri, 07 Jul 2000 15:55:58 GMT, John Hedges 
<<[EMAIL PROTECTED]>> shouted forth into the ether:
>1. What is the best way to get a kernel module loaded at startup? Ive
>already set the module up to work with modprobe. Should I use init.d
>or is there another mechanism for kernel modules?

The thing to do is to put the appropriate options in /etc/conf.modules
.  That way the module can be loaded on demand.  If the module is for a
sound device, you'd insert something like the following lines:
alias char-major-14 foosound
options foosound irq=5 io=0x240 dma=2 dma2=5

Or you can just tack the modprobe command on to the end of
/sbin/init.d/boot.local (SuSE) or /etc/rc.d/rc.local (RedHat).

>2. I want to run a normal program as a daemon in init.d. Is there a
>way, perhaps using the init.d daemon function (in init.d/functions),
>to make this work as the program needs to be backgrounded somehow?

What do you mean by "in init.d"?  As before, you can put the command
directly into boot.local ("/path/to/mydaemon &") or you can create a start
script in /sbin/init.d/ (/etc/rc.d/init.d/) like the other scripts there,
then put in both S and K links to that script in the runlevel directories
/sbin/init.d/rcN.d/ or /etc/rc.d/rcN.d/ .  Consult the scripts in those
locations and/or the README residing there for more info....

-- 
Matt G / Dances With Crows      /\    "Man could not stare too long at the face
\----[this space for rent]-----/  \   of the Computer or her children and still
 \There is no Darkness in Eternity \  remain as Man." --David Zindell "So did
But only Light too dim for us to see\ they become Gods, or Usenetters?" --/me

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

From: [EMAIL PROTECTED] (David Efflandt)
Crossposted-To: comp.os.linux.networking,comp.os.linux.redhat
Subject: Re: NTP trouble...
Date: 7 Jul 2000 18:26:38 GMT
Reply-To: [EMAIL PROTECTED]

On Fri, 07 Jul 2000 04:30:05 GMT, Stuart Rauh <[EMAIL PROTECTED]> wrote:
>Using Redhat 6.2 and Xntp-5.93-14 to keep the server clock on time.
>
>Xntpd doesn't complain but doesn't update the clock either.  When trying 
>to update manually with "ntpdate clock.psu.edu" it responds with "No 
>server suitable for synchronization found".

You cannot run ntpdate while xntpd is running.  But I have only used
ntpdate (and not xntpd) so I am not sure how to set up xntpd.  Do you have
multiple stratum 2 time servers listed in /etc/ntp.conf so xntpd will
still work in case one is down or busy?

>I can ping clock.psu.edu from the Linux box.  An NTP client on a Win98 
>machine connected through IP masq on the Linux box updates fine.  I just 
>can't get the Linux box to sync up!
>
>Any suggestions???
>-- 
>
>
>Stuart Rauh
>[EMAIL PROTECTED]


-- 
David Efflandt  [EMAIL PROTECTED]  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://hammer.prohosting.com/~cgi-wiz/  http://cgi-help.virtualave.net/


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

From: Pablo Cardozo <[EMAIL PROTECTED]>
Subject: Corel Linux
Date: Fri, 07 Jul 2000 18:30:08 GMT

Era para realizarles una consulta sobre la instalaci�n de Corel Linux, el 
mismo lo consegu� en una pcmagazine argentina, que tra�a la versi�n 
completa en ingl�s.
Resulta que cuando voy a instalarlo, creo el diskette de booteo, y la 
reinicio, luego empieza a leer el diskette y aparece la pantalla de 
comienzo, empieza a cargar el corel linux, y luego dice buscando hardware, 
inmediatamente despu�s aparece una pantalla tipo DOS donde me dice que 
est� instalando algo as� como una configuraci�n gr�fica y la pantalla 
parpadea dos veces y a la tercera expulsa el cd y me dice:"disabling 
simetric IO mode.....".
Me han dicho que puede ser por la tarjeta de video, la que tengo es una 
sis5596.
Tengo que comprarme una tarjeta nueva??????
Tambi�n me dijeron que si ten�a algo onboard o la mother es generica 748 
con todo integrado, no me serv�a nada de eso.
Como hago para saber la mother que tengo????
QUE HAGOOOOOO??????????

--
Posted via CNET Help.com
http://www.help.com/

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

From: [EMAIL PROTECTED] (Jerry Lapham)
Date: Fri, 07 Jul 2000 11:58:10 -0400
Subject: Re: Partition Magic & Boot Manager

In <[EMAIL PROTECTED]>, on 07/06/00 
   at 09:30 PM, P.T.Gowadia <[EMAIL PROTECTED]> said:

> BTW,do you know what error 117 is?

According to the version 2.x manual:

#117 Partition's drive letter cannot be identified

Under OS/2, PartitionMagic must know the drive letter for each partition
before modifications can be made.  A driver on your system may change the
drive letters from their defaults; or your partitions may not have serial
numbers.

    -Jerry
-- 
============================================================
Jerry Lapham, Monroe, OH
E-Mail: [EMAIL PROTECTED]
Written Friday, July 07, 2000 - 11:58 AM (EDT)
============================================================
MR/2 Ice tag:  Help OJ find the real killer.  Send him a mirror.


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

From: Jim McIntyre <[EMAIL PROTECTED]>
Subject: Simple Syslog question
Date: Fri, 07 Jul 2000 18:40:21 GMT

What does the local# entry mean in  syslog.conf.  I can't find a list
anywhere. I assume these entries refer to protocols. Is there anywhere I
can find an explanation of this.

TIA


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

From: Krzys Majewski <[EMAIL PROTECTED]>
Subject: Re: why make clean before making kernel?
Date: 07 Jul 2000 11:56:00 -0700

Shouldn't the makefiles have the object files depend on the
compile-time variables modified by 'make xconfig'? 
I mean something of the form

kernel.o : config.h #assuming config.h is modified by 'make xconfig'
        gcc -c kernel.c

-chris

"Quiney, Philip [HAL02:HH00:EXCH]" <[EMAIL PROTECTED]> writes:

> You need to do the 'make clean' so that object files which may be
> present are removed. Don't forget you could have configured different
> values of compile time variables in the 'make xconfig' stage which
> wouldn't then be in the object files. The normal action of make would be
> to not rebuild the object file as it is newer than the source file. Thus
> your changes to the config file would not get included.

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

From: [EMAIL PROTECTED] (J Bland)
Crossposted-To: alt.os.linux,comp.os.linux.setup
Subject: Re: Using all of memory (yes I RTFM)
Date: 7 Jul 2000 19:02:18 GMT

>>Before you start yelling, yes I have the append = "mem-512m" line in my 
>>lilo.conf file. But the only way I can get Linux to see all the memory is 
>>if I enter mem=512m from the boot line. I am booting to a SCSI root disk, 
>>and have four IDE drives. 
>>
>>Here's my lilo.conf:
>
>remove the "append=";  (change it to just "mem=512m")
>try putting it in the images sections, like "mem=512m" just after the "root="
>line.

Alternitavely, leave it exactly where it is and make that m upper case ;).

ie

append="mem=512M"

otherwise it won't work.

Frinky

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

From: [EMAIL PROTECTED] (Chris J/#6)
Crossposted-To: comp.os.linux.development.system
Subject: Problems with modules on 2.2.13 [SMP]
Reply-To: [EMAIL PROTECTED]
Date: 7 Jul 2000 20:02:14 +0100

[excuse crosspost -- dunno if its technical enough for development.system.
        apols if off-topic].

Hiya,

I have a problem - one that I've been unable to find an answer for in
several hours of on-and-off experimentation and numerous kernel builds.

There is, at work, a Dell Poweredge, Dual PIII 450, Megaraid RAID, bags
of memory and disk etc etc. But I've been unable to get modules to insert
into the kernel, with messages from insmod "unresolved symbol". The system
is a RedHat 6.1 Deluxe installation...and its the supplied Redhat kernel.
Personally, I'd like to blow it away and stick a stock non-vendor-modified
2.2.14 on it, but I've been told not to do that... *sigh*.

Here is, for example, the output of "insmod loop":

/lib/modules/2.2.13-0.13/block/loop.o: unresolved symbol best_memcpy
/lib/modules/2.2.13-0.13/block/loop.o: unresolved symbol best_memset
/lib/modules/2.2.13-0.13/block/loop.o: unresolved symbol best_copy_to_user
/lib/modules/2.2.13-0.13/block/loop.o: unresolved symbol best_copy_from_user

Now, from what I can tell, these are standard kernel functions, and whats
more, "grep best_mem /boot/System.map" reveals ...

c0220384 T best_memcpy
c022040f t best_memcpy_final
c0220437 T best_memset
c02204bf t best_memset_final
c0265fe0 ? __kstrtab_best_memcpy
c0266000 ? __kstrtab_best_memset
c026d7b0 ? __ksymtab_best_memcpy
c026d7b8 ? __ksymtab_best_memset

So its in the kernel...however,  I'm wondering if there is some obfuscation
going on somewhere, as doing ksysms -a and feeding that through grep reveals

c0220384  best_memcpy_R__ver_best_memcpy  
c0220437  best_memset_R__ver_best_memset  

Both at the same offset as the output from System.map ... is this causing
the problem -- same symbol but different name ?

Basically, module loading is broken and I can't figure out whats gone wrong.
Yes, I've done from clean, zapped the modules tree before a make
modules_install.

depmod -a fails everytime (unresolved symbols in every module), so its well
and truely fubar'd.

Suggestions on a postcard?

Thanks,

Chris...


-- 
@}-,'--------------------------------------------------  Chris Johnson --'-{@
    / "(it is) crucial that we learn the difference / [EMAIL PROTECTED]  \
   / between Sex and Gender. Therein lies the key  /                       \ 
  / to our freedom" -- LB                         / www.nccnet.co.uk/~sixie \ 

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

From: [EMAIL PROTECTED] (John Hedges)
Subject: Re: Module and daemon startup
Date: Fri, 07 Jul 2000 19:01:43 GMT

On 07 Jul 2000 14:22:19 EDT, [EMAIL PROTECTED] (Dances With Crows)
wrote:

>On Fri, 07 Jul 2000 15:55:58 GMT, John Hedges 
><<[EMAIL PROTECTED]>> shouted forth into the ether:
>>1. What is the best way to get a kernel module loaded at startup? Ive
>>already set the module up to work with modprobe. Should I use init.d
>>or is there another mechanism for kernel modules?
>
>The thing to do is to put the appropriate options in /etc/conf.modules
>.  That way the module can be loaded on demand.  If the module is for a
>sound device, you'd insert something like the following lines:
>alias char-major-14 foosound
>options foosound irq=5 io=0x240 dma=2 dma2=5

I like the look of this, but what is demand? Is it when something
tries to access /dev/thingy ?

>Or you can just tack the modprobe command on to the end of
>/sbin/init.d/boot.local (SuSE) or /etc/rc.d/rc.local (RedHat).
>
>>2. I want to run a normal program as a daemon in init.d. Is there a
>>way, perhaps using the init.d daemon function (in init.d/functions),
>>to make this work as the program needs to be backgrounded somehow?
>
>What do you mean by "in init.d"?  As before, you can put the command
>directly into boot.local ("/path/to/mydaemon &") or you can create a start
>script in /sbin/init.d/ (/etc/rc.d/init.d/) like the other scripts there,
>then put in both S and K links to that script in the runlevel directories
>/sbin/init.d/rcN.d/ or /etc/rc.d/rcN.d/ .  Consult the scripts in those
>locations and/or the README residing there for more info....
>

I tried to hack httpd from apache which is a script in
/etc/rc.d/init.d/. In rc{1,2,...}.d are symlinkks to this script.
Because my program is not a background task I have to use & in the
line: 
        start)
                daemon myprog &;

and this doesnt seem to work. :-(

Thanks for the advice

John




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


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