Linux-Misc Digest #840, Volume #26               Wed, 17 Jan 01 10:13:01 EST

Contents:
  Re: IMAP server (Mike Dowling)
  Re: APIC error on CPU0:00(08) (leander)
  Linux not free anymore? (Rafael - LumesITSupport)
  Re: Is Netscape 6 on Linux more stable than previous versions? (Lee Allen)
  Re: How to install LILO? (Dances With Crows)
  Re: finding text within files query (Phil Hodgson)
  Re: make and load a module to kernel ("Jan Vandesompele")
  Re: free long distance on linux? (-ljl-)
  Re: Q: Altering wav file speed ([EMAIL PROTECTED])
  Re: finding text within files query (Paul Kimoto)
  Need to reinstall windowsME ([EMAIL PROTECTED])
  Re: backup for NT and linux over the network (-ljl-)
  Re: rpm database in db3 format? (-ljl-)
  ufs mount? ("Martin Collins")
  Re: How to install LILO? (Harold Stevens ** PLEASE SEE SIG **)
  Re: How to install LILO? ("Jan Vandesompele")
  Re: Debian Linux vs "regular" Linux ? (Kent Perrier)
  Re: Backing up to a remote machine using ssh (Michael Heiming)
  Re: Debian Linux vs "regular" Linux ? (John Hasler)
  Re: APIC error on CPU0:00(08) (Marcel Loesberg)
  Re: another lilo problem ("Tauno Voipio")
  Re: Linux not free anymore? (Marcel Loesberg)

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

From: [EMAIL PROTECTED] (Mike Dowling)
Crossposted-To: comp.os.linux.networking,comp.os.linux.setup
Subject: Re: IMAP server
Date: 17 Jan 2001 13:11:19 GMT

On Wed, 17 Jan 2001 09:15:29 +0100, NDQ <[EMAIL PROTECTED]> wrote:
>Hi,
>Could you tell me HOW TO  install an IMAP server on RH Linux please.

Find the imap daemon of your choice (we use the Washington University
imap daemon), down load the sources, follow the INSTALL instructions,
edit /etc/inetd accodingly if imapd is not to run all the time, and
Bob's your uncle.

Well, not quite depending on what you want.  It is advisable to have an
sasl authentification, and sendmail will have to understand that.  We
use the cyrus sasl libraries.   Obtain sources, compile and install.
Then download sendmail-8.11.2 sources, look at the README files in the
various directories, especially in the sendmail subdirectory, and follow
the instructions there to compile sendmail with sasl.

Cheers,
Mike

-- 
My email address [EMAIL PROTECTED] above is a valid email
address.  It is a mail alias.  Once spammed, the alias is deleted, and
the integer 'N' incremented.  Currently, mike[42,43] are valid.  If
email to mikeN bounces, try mikeN+1.

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

From: leander <[EMAIL PROTECTED]>
Subject: Re: APIC error on CPU0:00(08)
Date: Wed, 17 Jan 2001 14:11:26 +0000

I'm getting them as well, on a BP6 with 2* Celeron366@506
Actually just posted it in comp.os.linux.hardware....
I'm curious to know if anyone knows what this is. It doesn't seem to be
a major problem, 
because the system is otherwise stable.

Leander

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

From: Rafael - LumesITSupport <[EMAIL PROTECTED]>
Subject: Linux not free anymore?
Date: Wed, 17 Jan 2001 14:31:16 +0100
Reply-To: [EMAIL PROTECTED]

First when I get info about it I did not believed. But it seems to be
true in Poland.
Tax offices trying to find money or paid by Microsoft :) started to put
tax from Linux.  Thus if you have company you have to pay tax if you
have Linux, the level of the tax is the same like from Windows NT
Server. It is against low and our Worldwide Linux community have to do
something with it. Please do something to not spread it to more
countries.

Rafael


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

From: [EMAIL PROTECTED] (Lee Allen)
Subject: Re: Is Netscape 6 on Linux more stable than previous versions?
Reply-To: [EMAIL PROTECTED]
Date: Wed, 17 Jan 2001 13:25:41 GMT

On Tue, 16 Jan 2001 20:22:14 GMT, "Matt O'Toole" <[EMAIL PROTECTED]>
wrote:

>
>"Steve" <[EMAIL PROTECTED]> wrote in message
>news:[EMAIL PROTECTED]...
>
>> Use Mozilla it's now at .07 and very stable without any of the
>> commerical junk that's in Netscape v6.
>>
>> <www.mozilla.org>
>
>Mozilla is indeed better than Netscape (even though it's officially
>unfinished), but I still don't like it as much as the others.  The screen
>design and interface isn't as good.
>
>Unfortunately, there's a lot of mindless boosterism going on in the Linux
>community, with little rigor applied to how good the products really are.

Agreed.  But if I use Mozilla (and I am going to try it) at least I
will be investing my effort in something that should improve over
time.  There is no evidence that Netscape cares about their Linux
problem.

-Lee Allen

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

From: [EMAIL PROTECTED] (Dances With Crows)
Subject: Re: How to install LILO?
Date: 17 Jan 2001 13:27:45 GMT
Reply-To: [EMAIL PROTECTED]

On Wed, 17 Jan 2001 11:21:57 +0100, Jan Vandesompele staggered into the
Black Sun and said:
>the MBR of my harddisk has been overwritten. I had a dual boot Win/linux
>setup. I don't have any bootdisk for my linux system. Is there a way I can
>reinstall Lilo so that I can use both my OS'es again? Now I can only use my
>Windows system. I have access to another linux box, maybe I can create a
>bootdisk with this machine?

http://www.toms.net/rb/

Keep a copy around.  Heck, keep several around--that particular disk has
rescued me from bad situations many times.

-- 
Matt G|There is no Darkness in Eternity/But only Light too dim for us to see
Brainbench MVP for Linux Admin /  Workin' in a code mine, hittin' Ctrl-Alt
http://www.brainbench.com     /   Workin' in a code mine, whoops!
=============================/    I hit a seg fault....

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

From: Phil Hodgson <[EMAIL PROTECTED]>
Subject: Re: finding text within files query
Date: Wed, 17 Jan 2001 13:27:28 +0000
Reply-To: [EMAIL PROTECTED]

Thanks Jan
    Phil

Jan Vandesompele wrote:

> Maybe you can write a little script?
> Try to dump the filenames of type .xyz in a textfile. One filename per line.
>
> filename1
> filename2
> filename3
>
> (make sure the last filename has carriage return and linefeed behind it)
> Call the text file: filelist.txt
> then make a little script:
>
> #!/bin/bash
> while read filename
> do
>     cat $filename | grep abc123 > null
>     if [ $? == 0 ]
>     then
>         echo $filename
>     fi
> done < filelist.txt
>
> Store this script in a file (script.scr or something), make it executable
> and run it.
> The files that match .xyz and contain the string abc123 will be displayes on
> the screen.
>
> Phil Hodgson <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]...
> > I would like a command line to search through all files of type .xyz
> > looking for text 'abc123' within those files. ( to get the file names
> > back)
> >
> > I know find will do the first part but how to pipe each file to
> > something like grep I don't know.
> >
> > Cheers
> >


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

From: "Jan Vandesompele" <[EMAIL PROTECTED]>
Subject: Re: make and load a module to kernel
Date: Wed, 17 Jan 2001 14:28:50 +0100

Go into /usr/src/linux-xxxxxx   (the x'es represent the kernel build you
want to use) and under X-windows run: make xconfig
or under a terminal: make menuconfig
There you can select if you want to load something as a module or compile it
into the kernel. Save your config, then run :
make dep
make clean
make modules
make modules_install
make bzImage

Copy the compile image which you can find in
/usr/src/linux-xxxx/arch/i386/boot/bzImage

copy it for example to your /boot directory, you can give it any name you
want.
Then edit your /etc/lilo.conf file, and add this entry:

image=/boot/bzImage
    label= linux2.4
    read-only
    root=/dev/hda5

You may want to change /dev/hda5 to the apropriate partition.
Save the file and don't forget to run, /etc/lilo to apply the changes.
Reboot the computer and you should be able to choose linux2.4 when 'LILO:'
appears at boottime. If your computer doesn't boot correctly, you can still
use your old linuxkernel by choosing 'linux' at boottime instead of
'linux2.4'







David <[EMAIL PROTECTED]> wrote in message
news:0Kg96.33392$[EMAIL PROTECTED]...
> Hi all
>
> I have a Linux machine (P III with 124 ram) with Linux RH 6.2 with kernel
> 2.2.14. I have downloaded the new kernel 2.4.0, instead of making a big
> kernel i want to make a module and load it to my kernel. I dont know how
> could i make a module and load it to the kernel.I know i should do make
> modules and modules instalation. But how could i select the tools or
module
> i want to make and how could i load it to kernel.
>
> For example in 2.4.0 i want to make IPtables as a module. How could i do
> that. Please help !
>
> Thanks in advance David
>
>
>
>
>
>
>
>



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

From: -ljl- <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux
Subject: Re: free long distance on linux?
Date: Wed, 17 Jan 2001 13:27:37 GMT

In article
<[EMAIL PROTECTED]>,
  "Sudhakar R." <[EMAIL PROTECTED]> wrote:
>
> With the increasing number of sites offering free long distance PC to
> phone calls...I was wondering whether anyone has come across any such
site
> which supports Linux.
>
> Then, I don't have to reboot to Windows just to make a call!

Well, there is a Linux version of John Walker's Speak Freely.
  http://www.fourmilab.ch/speakfree/unix/

Also, you can run Windows 95/98 in a virtual machine under Linux,
i.e. no reboot; but it's not free.  Check out:
  http://www.vmware.com/news/releases/express_web.html

--
Louis-ljl-{ Louis J. LaBash, Jr. }


Sent via Deja.com
http://www.deja.com/

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

From: [EMAIL PROTECTED]
Subject: Re: Q: Altering wav file speed
Date: Wed, 17 Jan 2001 13:34:24 GMT

Russell:

> sox -r 35280 input.wav -r 44100 output.wav
>
> The idea here is to pretend the input is slower than it is, and then
> resample that to the true rate to *actually* make it slower (35280
> being 80% of 44100).

This is PERFECT!  Exactly what I was looking for.
Thanks very much.

Robert


Sent via Deja.com
http://www.deja.com/

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

From: [EMAIL PROTECTED] (Paul Kimoto)
Subject: Re: finding text within files query
Date: 17 Jan 2001 08:44:45 -0500
Reply-To: [EMAIL PROTECTED]

In article <[EMAIL PROTECTED]>, Phil Hodgson wrote:
> I would like a command line to search through all files of type .xyz
> looking for text 'abc123' within those files. ( to get the file names
> back)
>
> I know find will do the first part but how to pipe each file to
> something like grep I don't know.

$ find / -name '*.xyz' -type f -print | xargs grep -L abc123

See the info pages for grep and find (the latter also discusses xargs).

-- 
Paul Kimoto
This message was originally posted on Usenet in plain text.  Any images, 
hyperlinks, or the like shown here have been added without my consent,
and may be a violation of international copyright law.

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

From: [EMAIL PROTECTED]
Subject: Need to reinstall windowsME
Date: Wed, 17 Jan 2001 13:39:32 GMT

Need to reinstall windowsME

I have Redhat 7.0 and WindowsME running on one computer. I has told that
I have to reinstall windowsME tonight. Can someone please tell me all
the steps I have to take to save my redhat 7.0??

Also what steps am I going to have to do after installed WindowsME
again?

Please email me at [EMAIL PROTECTED]

Thanks


Sent via Deja.com
http://www.deja.com/

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

From: -ljl- <[EMAIL PROTECTED]>
Subject: Re: backup for NT and linux over the network
Date: Wed, 17 Jan 2001 13:38:29 GMT

In article <93uutq$nrh$[EMAIL PROTECTED]>,
  Christoph Kukulies <[EMAIL PROTECTED]> wrote:
> I'm seeking for a network backup system allowing to
> backup NT, Win2k and Linux systems to a DLT tape.

Have you looked at Cygwin; they provide Gnu's tools (tar and friends)
that run under Windows 9x/ME/NT/2000.
  http://www.cygwin.com/faq/faq_1.html

For network backing up you might check out  Amanda:
  http://www.amanda.org/

Both of these are _free_.

--
Louis-ljl-{ Louis J. LaBash, Jr. }


Sent via Deja.com
http://www.deja.com/

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

From: -ljl- <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: Re: rpm database in db3 format?
Date: Wed, 17 Jan 2001 13:45:57 GMT

In article <93niv0$nb8$[EMAIL PROTECTED]>,
  [EMAIL PROTECTED] (Peter Bismuti) wrote:
> I'm getting this message:
>
> cannot open Packages index using db3 - Permission denied (13)
>
> --> The rpm database cannot be opened in db3 format.
>     If you have just upgraded the rpm package you need to convert
>     your database to db3 format by running "rpm --rebuilddb" as root.
>
> error: cannot open Packages database in /var/lib/rpm
>
> I have run "rpm --rebuilddb" and it does not solve the problem.  Can
anyone
> explain what is going on and how to fix it??

Well, rpm version 4 is out and it's not compatable with rpm 3 because
it uses dbm3.  Unfortunately people are creating RPMs with version 4
and not telling anyone.  Best of all the source for RPM 4 is packaged
with RPM 4, which can _not_ be installed on a system using RPM 3.
Go figure.

--
Louis-ljl-{ Louis J. LaBash, Jr. }


Sent via Deja.com
http://www.deja.com/

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

From: "Martin Collins" <[EMAIL PROTECTED]>
Subject: ufs mount?
Date: Wed, 17 Jan 2001 14:56:45 +0100

Hi,

I have Caldera linux installed along with FreeBSD. The FreeBSD partition
is mounted in Linux, but I can't see anything there. As far as I can see the
mount
configuration is correct - filesystem type ufs, correct device file.

Has anyone done this already?

Thanks,
Martin.





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

From: [EMAIL PROTECTED] (Harold Stevens ** PLEASE SEE SIG **)
Subject: Re: How to install LILO?
Date: Wed, 17 Jan 2001 14:07:33 GMT

In <[EMAIL PROTECTED]>, Dances With Crows:

[Snip...]
 
|> http://www.toms.net/rb/
|> 
|> Keep a copy around.  Heck, keep several around--that particular disk has
|> rescued me from bad situations many times.

[Snip...]

Agreed, even outside Linux rescues. Like finding a vital file my dad and/or
Win95 managed to hide in some obscure directory and then forget.   :)

Seriously, tomsrtbt is an *exceptionally* useful tool for a 1.722 MB floppy
that takes only 5 minutes or so to download and create.

-- 

Regards, Weird (Harold Stevens) * IMPORTANT EMAIL INFO FOLLOWS *
Pardon the bogus email domain (dseg etc.) in place for spambots.
Really it's (wyrd) at raytheon, dotted with com. DO NOT SPAM IT.
Standard Disclaimer: These are my opinions not Raytheon Company.


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

From: "Jan Vandesompele" <[EMAIL PROTECTED]>
Subject: Re: How to install LILO?
Date: Wed, 17 Jan 2001 15:28:29 +0100

Thanks for the info by the way!
Anyone know how I can setup my linuxbox and lilo so that the native linux
partition is at the back of my drive instead of within the first 1024
cylinders of my harddrive?

Harold Stevens ** PLEASE SEE SIG ** <[EMAIL PROTECTED]> wrote in
message news:FGh96.11$[EMAIL PROTECTED]...
> In <[EMAIL PROTECTED]>, Dances With Crows:
>
> [Snip...]
>
> |> http://www.toms.net/rb/
> |>
> |> Keep a copy around.  Heck, keep several around--that particular disk
has
> |> rescued me from bad situations many times.
>
> [Snip...]
>
> Agreed, even outside Linux rescues. Like finding a vital file my dad
and/or
> Win95 managed to hide in some obscure directory and then forget.   :)
>
> Seriously, tomsrtbt is an *exceptionally* useful tool for a 1.722 MB
floppy
> that takes only 5 minutes or so to download and create.
>
> --
>
> Regards, Weird (Harold Stevens) * IMPORTANT EMAIL INFO FOLLOWS *
> Pardon the bogus email domain (dseg etc.) in place for spambots.
> Really it's (wyrd) at raytheon, dotted with com. DO NOT SPAM IT.
> Standard Disclaimer: These are my opinions not Raytheon Company.
>



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

From: Kent Perrier <[EMAIL PROTECTED]>
Subject: Re: Debian Linux vs "regular" Linux ?
Date: 17 Jan 2001 08:36:49 -0600

Arctic Storm <[EMAIL PROTECTED]> writes:

> What's the difference between Debian Linux and "regular" Linux that
> we're familiar with,...

Since there is not a "regular" linux out there, there is nothing to 
compair Debian's distribution to.  Now, if you wanted to compair 
Debian to RedHat's or Mandrake's distribution, then you can.  But
you will be starting a Holy War......

Kent
-- 
When you think of Red Hat, think of Perrier (bottled water).  Water is
essentially free, or at least very low cost to produce.  Red Hat is
selling the name, and some service.
                                                     -- Robert Young

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

From: Michael Heiming <[EMAIL PROTECTED]>
Crossposted-To: osu.sys.linux
Subject: Re: Backing up to a remote machine using ssh
Date: Wed, 17 Jan 2001 15:40:31 +0100

Hello,

doug reeder wrote:

> I'm using cpio to back up to an On-Stream DI-30 tape drive.  (tar
> works on our machines, but lacks per-file CRCs.  Dump and Amanda don't
> work with our system, perhaps because of flaws in ide-tape.  BRU
> requires one copy per machine, which would be rather expensive.)  The
> DI-30 requires that the blocksize be 32k.  (We're running Red Hat 6.1
> on a half-dozen HP Kayaks and Visualizes.)
>
> Backing up locally (the machine which has the tape drive) works fine.
> Backing up remotely using rsh (implicitly) works fine:
>
> find . -path '*/.netscape/cache' -prune -o \
>        -print | cpio -ov -H crc --block-size=64 -O backup@tactus:/dev/nht0
>
> I would really like to use a more secure way to do remote backups,
> given the security holes of rsh.  Ssh is the obvious replacement.  I
> have ssh working fine for remote logging in and remote command
> execution (and passwords don't need to be entered, because I have
> ssh-agent running).  However, weird things happen when I try to do
> backups using cpio, ssh, and dd:
>
> find   ...   cpio -ov -H crc --block-size=64 -O /usr2/website4.cpio
>
> produces a good archive locally.
>
> cat /usr2/website4.cpio | ssh tactus dd bs=32k of=/usr2/website4.cpio
>
> properly copies the archive file to tactus (the machine with the tape drive).
>
> On tactus,
>
> dd bs=32k if=/usr2/website4.cpio of=/dev/nht0
>
> properly copies the achive file to tape.  So, all the steps can be
> individually done (for an archive small enough to store in a file).
> An archive of an entire machine is too big to manipulate this way.
> Obviously, I'd like to do the backup straight to tape.
>
> On the first machine
>
> cat /usr2/website4.cpio | ssh tactus dd bs=32k of=/dev/nht0
>
> produces the errors:
> dd: /dev/nht0: Invalid argument
> error: Broken Pipe
>
> cat /usr2/website4.cpio | ssh tactus dd bs=32k of=/dev/tape
>
> produces the errors:
> error: Broken Pipe
>
> which is odd because /dev/tape is a hard link to /dev/nht0:
> [root@tactus /root]# ls -l /dev/*ht* /dev/tape
> crw-rw----   1 root     disk      37,   0 May  5  1998 /dev/ht0
> crw-rw----   2 root     disk      37, 128 May  5  1998 /dev/nht0
> crw-rw----   2 root     disk      37, 128 May  5  1998 /dev/tape
>
> Any suggestions for making cpio, ssh, and dd all play together?
> --
> P. Douglas Reeder      Lecturer, Computer. Science. Dept., Ohio State Univ..
> [EMAIL PROTECTED]  http://www.cis.ohio-state.edu/~reeder/reeder.html
> GE/S d+ s+:- a C+@$ UH+ P+ L E W++ N+ o? K? w !O M+ V PS+() PE Y+ PGP- t 5+ !X
> R>+ tv+ b+++>$ DI+ D- G e+++ h r+>+++ y+>++

I use this for tar backups over ssh direct on tapes (scripted)

tar --create --verbose -b 128 --block-number --exclude-from=.exclude-data \
        --label "Level-${LEVEL} Backup ${NOW}" \
        ${BACKUPFILES} | ssh ${DEST} "cat - > /dev/tape"

You should be able to adopt it for your needs.

Good luck

Michael Heiming
Sysadmin
--
       __   __   __     Virtueller Bau-Markt AG
 \  / [__) [__] [ __    Meerbuscher Strasse 64
  \/  [__) |  | [_./    40670 Meerbusch
     www.vbag.de        Michael Heiming ([EMAIL PROTECTED])




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

From: John Hasler <[EMAIL PROTECTED]>
Subject: Re: Debian Linux vs "regular" Linux ?
Date: Wed, 17 Jan 2001 13:51:03 GMT

Arctic Storm writes:
> What's the difference between Debian Linux and "regular" Linux...

"Regular" Linux?  Insofar as there is any such thing, Debian is as much
"regular" Linux as Red Hat.  Maybe more so: Debian follows standards.

Look at www.debian.org.
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI

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

From: Marcel Loesberg <[EMAIL PROTECTED]>
Subject: Re: APIC error on CPU0:00(08)
Date: Wed, 17 Jan 2001 14:54:36 GMT

leander wrote:

> I'm getting them as well, on a BP6 with 2* Celeron366@506
> Actually just posted it in comp.os.linux.hardware....
> I'm curious to know if anyone knows what this is. It doesn't seem to be
> a major problem,
> because the system is otherwise stable.

Sounds like the famous broken voltage regulator problem.
Is your board a Rev. 1.1? (Look at the side of the 2nd ISA slot).
All Rev. 1.1 boards have a broken voltage regulator resulting in
a (more or less) fluctuating CPU core voltage.
In my case it fluctuated so much that the board was unstable.
Therefore I requested a RMA and got a new board.

Regards,

Marcel

--
It sports 64K of L1 data cache, 64K of L1 instruction cache, three
independent integer pipelines, three address calculation pipelines,
and a fully pipelined, out-of-order, three-way floating-point engine.




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

From: "Tauno Voipio" <[EMAIL PROTECTED]>
Subject: Re: another lilo problem
Date: Wed, 17 Jan 2001 14:55:45 GMT


"Jan Vandesompele" <[EMAIL PROTECTED]> wrote in message
news:944138$8vn$[EMAIL PROTECTED]...
> Hello,
>
> I have a pc system with a 12Gb harddrive in it. I installed my Redhat
distro
> (7) at the end of my harddrive. I create a boot disk so I can boot my
linux.
> However I want to install lilo so that i don't need that annoying bootdisk
> anymore. When I tried to install lilo (by executing /etc/lilo) I get the
> error:
> Added linux
> Warning: device 0x0307 exceeds 1024 cylinder limit
> Fatal: sector 17045028 too large for linear mode (try 'lba32' instead)
>
> Lilo is not installed however. What do they mean with lba32? Is this the
> harddisk mode you can set in most bios'es?
> I can set it in mine however (it's a crappy Dell computer).
> Someone suggested to create a small partition at the beginning of my
> harddisk so that linux can boot from that. But how do I do that?
> I create a linux native partition of let's say 100mb and then?
>

You need a partition below the 1024 cylinder limit. The Windows partition
probably starts at the very beginning of the disk. The safest way is to back
up the Windows partition, delete it, create the small (8 - 16 MB will do)
ext2 partition, create the Windows partition and restore it.

The small partition is for the /boot directory. The current Linux
distributions seet all files needed below cylinder 1024 to /boot. You just
need to set an entry into /etc/fstab for mounting /boot (most configuration
tools will do it).

The partition managers (Partition Magic etc) may be able to resize/move the
Windows partition without killing and rebuilding it - I have never tried.

Tauno Voipio
tauno voipio @ iki fi




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

From: Marcel Loesberg <[EMAIL PROTECTED]>
Subject: Re: Linux not free anymore?
Date: Wed, 17 Jan 2001 14:59:08 GMT

Rafael - LumesITSupport wrote:

> First when I get info about it I did not believed. But it seems to be
> true in Poland.
> Tax offices trying to find money or paid by Microsoft :) started to put
> tax from Linux.

I read about the "Poland-Linux-tax thingy" in a Dutch magazine but I
didn't take it very serious, until now.
Scary. But I doubt this can happen in much other countries.
In the Netherlands you don't pay taxes over something that has no
commercial value, yet....

Regards,

Marcel

--
It sports 64K of L1 data cache, 64K of L1 instruction cache, three
independent integer pipelines, three address calculation pipelines,
and a fully pipelined, out-of-order, three-way floating-point engine.




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


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