Linux-Misc Digest #699, Volume #25 Fri, 8 Sep 00 11:13:04 EDT
Contents:
Re: Problem with fopen under RedHat 6.2 ("Nikita V. Youshchenko")
End-User Alternative to Windows ("Lina")
Re: Gnome - Viewer (Fabrice Colin)
Re: buffer_dirty - what's the @#$%? ([EMAIL PROTECTED])
Re: buffer_dirty - what's the @#$%? (Bob Hauck)
Re: End-User Alternative to Windows ("Ingemar Lundin")
Linux dedicated UT server vs. Win32 dedicated server ? ("Frank Hofmann")
Cant login do to changes to X and XFS?? ([EMAIL PROTECTED])
sndconfig ([EMAIL PROTECTED])
Re: IP address stealing on Intranet (M. Buchenrieder)
Re: End-User Alternative to Windows (Andreas Kahari)
java wont install correctly (Guy-Armand Kamendje)
Performance problems ([EMAIL PROTECTED])
Samba Mount Failure ([EMAIL PROTECTED])
Re: Acroread - pdf reader (Grant Edwards)
Re: new mail from "Cron" ([EMAIL PROTECTED])
Re: ASCII File transfer over Ethernet to Mulitport Serial on Linux box? (Grant
Edwards)
Re: Red Hat Linux - Apache included? in Standard Edition? (Grant Edwards)
What does `utmp' stand for? (3lixyqueue)
fs block size > 4KB ([EMAIL PROTECTED])
Re: My project. (Tyler Hall)
upgrade to redhat 7.0 beta ? (Jinghua Tang)
Audio on Dell Latitude XPi CD 133ST (Joseph R Berens)
Re: Where is setenv in Red Hat 6.2? (Fausto Arinos de A. Barbuto)
Re: buffer_dirty - what's the @#$%? ("Ian Dichkovsky")
Re: The Government's Decision to Use Microsoft ("Peter T. Breuer")
----------------------------------------------------------------------------
From: "Nikita V. Youshchenko" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Re: Problem with fopen under RedHat 6.2
Date: Fri, 08 Sep 2000 17:15:26 +0400
Looks like your program contails some dynamic memory error. E.g.
double-free()-ing some code, free()-ing something that is not
malloc()-ed, or accessing larger memory parts that were malloc()-ed.
These errors are known to be hard-to-find.
Try some malloc-debugging tool, e.g. electric-fence.
Nikita
> Hi,
>
> We are trying to port some code over to a Linux PC running RedHat 6.2.
> Compilation of the code is fine, however when we run, we get a
> segmentation fault on one of our fopen calls. We seem to be able to
> pass through the code once, but on the second iteration, we get the
> fault. This code is being ported from a Solaris machine where it ran
> fine. Here is the output of "gdb sfg core". We are just wondering if
> this is a known bug or if anyone has seen behavior like this before.
> Thanks for any help:
>
> GNU gdb 19991004
> Copyright 1998 Free Software Foundation, Inc.
> GDB is free software, covered by the GNU General Public License, and you
> are
> welcome to change it and/or distribute copies of it under certain
> conditions.
> Type "show copying" to see the conditions.
> There is absolutely no warranty for GDB. Type "show warranty" for
> details.
> This GDB was configured as "i386-redhat-linux"...
> Core was generated by `sfg x w0000001.txt w0000002.txt w0000003.txt
> w0000004.txt w0000005.txt w0001000'.
> Program terminated with signal 11, Segmentation fault.
> Reading symbols from /lib/libc.so.6...done.
> Reading symbols from /lib/ld-linux.so.2...done.
> #0 0x40074709 in chunk_alloc (ar_ptr=0x40109d60, nb=184) at
> malloc.c:2763
> 2763 malloc.c: No such file or directory.
> (gdb) where
> #0 0x40074709 in chunk_alloc (ar_ptr=0x40109d60, nb=184) at
> malloc.c:2763
> #1 0x400745ce in __libc_malloc (bytes=176) at malloc.c:2696
> #2 0x4006d83b in _IO_new_fopen (filename=0xbfff9cdc "w0000002.txt",
> mode=0x8054708 "r") at iofopen.c:42
> #3 0x804c8f0 in oratag ()
> #4 0x8049e60 in main ()
> #5 0x400339cb in __libc_start_main (main=0x8048b0c <main>, argc=992,
> argv=0xbfffb954, init=0x80487d8 <_init>, fini=0x8053a5c <_fini>,
> rtld_fini=0x4000ae60 <_dl_fini>, stack_end=0xbfffb94c)
> at ../sysdeps/generic/libc-start.c:92
>
> - Doug -
------------------------------
From: "Lina" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.advocacy
Subject: End-User Alternative to Windows
Date: Fri, 08 Sep 2000 13:16:30 GMT
Hi,
I'm a Linux newbie. What is the percentage of computers and servers running
Linux now. Will an end-user alternative similar to Linux appear anytime
soon?
Thanks,
Lina
------------------------------
From: Fabrice Colin <[EMAIL PROTECTED]>
Subject: Re: Gnome - Viewer
Date: Fri, 08 Sep 2000 14:15:38 +0100
[EMAIL PROTECTED] wrote:
>
> Within the Gnome's file manager, if I RMB on a
> filename a pop-up menu appears which
> provides (among others) a choice to "View"
> the file. I would like to change the
> configuration so that "gless" is invoked by this
> selection but the documentation &
> configuration panels make no mention (that I
> can find) of how to do this. I can envoke gless
> explicitly (with a few more mouse clicks and
> some scrolling) but I'd rather have it be the
> _default_.
Have a look at "MIME Types" in your configuration
panel. It enables to define what programs you want
to associate with what file types.
I hope it helps.
Fabrice
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: buffer_dirty - what's the @#$%?
Crossposted-To:
comp.os.linux.development.system,comp.os.linux.hardware,comp.os.linux.questions
Date: 8 Sep 2000 09:21:52 -0400
In comp.os.linux.misc Ian Dichkovsky <[EMAIL PROTECTED]> wrote:
> 1. insert floppy
> 2. mount floppy
> 3. copy from floppy
> 4. umount floppy
> 5. remove floppy
Linux caches its writes. The copy from floppy may not be complete unless
you wait after step 3. Also, the programme may try to write to the floppy
to update the time stamp (indicating the last time the file on the floppy
was accessed) (if you interrupt it while it is writing to the fat
sector(s) on the floppy, it will probably not just be a bad time stamp)
and if you interrupt while it is writing to the floppy the record on the
floppy may be faulty.
After step 3 you can wait.
After step 3 you can force a buffer write using "sync"
Mounting the floppy as read only (which was another suggestion) should
prevent the system from trying to update the floppy record (if you are
copying from the floppy instead of to it and as long as the file is
completely read into memory it can later write to the hard disk).
On a system which caches writes you cannot just give a write command and
remove the media (and copying from a read/write floppy may involve a write
command to update the last access time). You have to ensure that the
command is finished.
A dirty buffer message indicates an incomplete result.
------------------------------
From: [EMAIL PROTECTED] (Bob Hauck)
Crossposted-To:
comp.os.linux.development.system,comp.os.linux.hardware,comp.os.linux.questions
Subject: Re: buffer_dirty - what's the @#$%?
Reply-To: bobh{at}haucks{dot}org
Date: Fri, 08 Sep 2000 13:43:43 GMT
On Fri, 8 Sep 2000 13:02:27 +0300, Ian Dichkovsky <[EMAIL PROTECTED]> wrote:
>1. insert floppy
>2. mount floppy
>3. copy from floppy
>4. umount floppy
>5. remove floppy
If floppy is FAT or VFAT (DOS or Windows) formatted, you should look at
the man page for mtools.
mcopy a:some-file /some/place
No mount/unmount needed.
mcopy
mdel
mdir
...etc...
--
-| Bob Hauck
-| To Whom You Are Speaking
-| http://www.haucks.org/
------------------------------
From: "Ingemar Lundin" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.advocacy
Subject: Re: End-User Alternative to Windows
Date: Fri, 08 Sep 2000 13:49:13 GMT
0.0001% and No!
/IL
"Lina" <[EMAIL PROTECTED]> skrev i meddelandet
news:OE5u5.20452$[EMAIL PROTECTED]...
> Hi,
> I'm a Linux newbie. What is the percentage of computers and servers
running
> Linux now. Will an end-user alternative similar to Linux appear anytime
> soon?
>
> Thanks,
> Lina
>
>
>
>
------------------------------
From: "Frank Hofmann" <[EMAIL PROTECTED]>
Subject: Linux dedicated UT server vs. Win32 dedicated server ?
Date: Fri, 8 Sep 2000 15:21:35 +0200
Reply-To: "Frank Hofmann" <[EMAIL PROTECTED]>
Hello
I have a UT dedicated linuxserver at home. The hardware is not the fastest,
but it works good for me and my friends. We can play with 2 human players
and 4 bots. The server is a P133, 64 MB EDO Ram on an Iwill P54TS Board with
an 3c900B XT 10/100 Networking Card. Do not laugh about the fast CPU :-)
Ok, I would known if a NT Server configured on the same machine with a Win32
UT dedicated server is as fast as the linux server who is installed at the
moment. Who needs more system memory. The NT or the Linuxserver ? Who has
the better networkingperformance ( low pings, little lag ..)
is it advisable to change from linux to NT or is it better to leave the
system as it is ?
Thanks in advance
Frank
------------------------------
From: [EMAIL PROTECTED]
Subject: Cant login do to changes to X and XFS??
Date: Fri, 08 Sep 2000 13:41:06 GMT
Cant login do to changes to X and XFS??
I was making changes to true type fonts and I did somethig wroung and
not after rebooting the screen just blinks. How can I get my system to
login without using xdm if I can login???
pleas email me asap at [EMAIL PROTECTED]
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.x,comp.os.linux,comp.os.linux.help
Subject: sndconfig
Date: Fri, 08 Sep 2000 13:51:21 GMT
hi all,
My pc runs Redhat6.0 and Win98. It has no plug and play sound card, but
a Sound Max Integrated Digital Audio contraller by Anolog Devices Inc,
which is built onto the mother board. The sound is brilliant on win98.
However, under Redhat6.0, the controller can not be detected by
`sndconfig', and also it's not on the card list; so I have to edit the
file /etc/conf.modules myself. I am not sure how to change the file.
Suggestions?
Specs For Sound Max Integrated Digital Audio contraller :
Interrupt Request: 11
Input/Output Range: D400 - D4FF
Input/Output Range: D000 - D03F
Diver files:
C:\windows\options\CABS\smwdm.sys
C:\windows\system\vmm32.vxd(ntkern.vxd)
C:\windows\system\mmdevldr.vxd
C:\windows\system32\drivers\smwdm.sys
contents of sconfig.modules:
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
options io=0x220 irq=5 dma=0 mpu_io=0x330
options ad1816 io=0x530 irq=5 dma=0 dma2=0
options adlib_card io=0x388
alias sound ad1848
pre-install sound insmod sound dmabuf=1
alias midi opl3
options opl3 io=0x388
options ad1848 io=0x530 irq=7 dma=0 dma2=0
alias parport_lowlevel parport_pc
pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: [EMAIL PROTECTED] (M. Buchenrieder)
Subject: Re: IP address stealing on Intranet
Date: Fri, 8 Sep 2000 12:32:16 GMT
"Andrew N. McGuire " <[EMAIL PROTECTED]> writes:
>On Wed, 6 Sep 2000, D G quoth:
[...]
>~~ Tell that to Al Gore and his "internet access tax".
>Hey, he created it, so he can tax people for its use if he
>wants to, dammit.
Rrrright.
Besides that, Al Gore's ideas are pretty much meaningless outside
of the US. Since the poster was from hungary, I doubt that the
internals of the US presidential hogwash are of much interest to
him.
Sidenote: No, I don't see any need for a right to Internet access
for everyone. This is a highly expensive toy. The fact that _we_
(==Usenet readers and Internet users) are able to access it
doesn't mean that it's universally available. "We" do just cover
the "elite" few, compared with the rest of the world (remember that
the world's population is est. 6 000 000 000 000 people. Only those
of us lucky enough to be born in a country with appropriate resources
and money can make use of this.
Michael
--
Michael Buchenrieder * [EMAIL PROTECTED] * http://www.muc.de/~mibu
Lumber Cartel Unit #456 (TINLC) & Official Netscum
Note: If you want me to send you email, don't munge your address.
------------------------------
Crossposted-To: alt.os.linux,comp.os.linux.advocacy
Subject: Re: End-User Alternative to Windows
From: [EMAIL PROTECTED] (Andreas Kahari)
Date: 8 Sep 2000 16:01:56 +0100
In article <OE5u5.20452$[EMAIL PROTECTED]>,
Lina <[EMAIL PROTECTED]> wrote:
>Hi,
>I'm a Linux newbie. What is the percentage of computers and servers running
>Linux now. Will an end-user alternative similar to Linux appear anytime
>soon?
>
>Thanks,
>Lina
>
>
>
>
Refer to the Linux Counter for answers to your first quiz:
<URL:http://counter.li.org/>
Concerning you second quiz: Come again?
/A
--
Andreas Kähäri, <URL:http://hello.to/andkaha/>.
All junk e-mail will be reported to the appropriate authorities.
========================================================================
The important thing is not to stop questioning.
------------------------------
From: Guy-Armand Kamendje <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat,linux.redhat.install,comp.os.linux.setup
Subject: java wont install correctly
Date: Fri, 08 Sep 2000 13:56:18 +0000
Reply-To: [EMAIL PROTECTED]
I'm running Redhat 6.2 on my machine. I have downloaded and installed
jdk-117_v1a-2.i386.rpm
from the redhat ftp server. But when I try to compile a java file, I
get the following message
[gkamendje@hermes NTRUJAVA]$ javac NTRU.java
/usr/local/jdk117_v1a/bin/java: error in loading shared libraries:
/usr/local/jdk117_v1a/lib/i686/green_threads/libjava.so: undefined
symbol: _dl_symbol_value
It seems that libjava.so is not the correct one.
Do anyone have an idea what the problem is?
thanks Guy-A
--
G.A. Kamendje || Tel +43 316 873 55 51
T-U Graz || www.sbox.tu-graz.ac.at/home/g/gaillard/
I.A.I.K ||www.iaik.at/people/gkamendje/gkamendje.html
------------------------------
From: [EMAIL PROTECTED]
Subject: Performance problems
Date: Fri, 08 Sep 2000 14:01:47 GMT
Hi
Anyone know some tool which can collect statistic on linux server
and and find out bottle necks on this server (slow hdd, slow proc, low
mem...) ?
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: [EMAIL PROTECTED]
Subject: Samba Mount Failure
Date: Fri, 08 Sep 2000 14:04:28 GMT
Hi,
I am using a samba mount to access a directory
on the Win NT box to my Linux Box.The Win NT
directory is shared first and then mounted on the
Linux Box using the command :
mount -t smbfs -o
username=<ntusername>,password=<pwd for the nt
user>,netbiosname=<dns name of the linux
m/c>,uid=<linux user>,gid=<linux group>,sync
//<nt m/c dns name>/<dir> /<dir on linux on which
share is mounted>
Now this share is used for both read and
write,This setup works fine for about 1 or two
days and then all of a sudden the mount crashes,
the message i get in the /var/log/messages when
the mount fails is :
kernal:smb_trans2_request:result=-32,setting
invalid
kernal:smb_retry:new pid=1167, generation=1
The above two messages are repeated several times
and when i try to "ls" the mounted directory i
get "input/output error"
This problem is persisting and everytime i need
to remount it back.Can some please help and tell
me what is happening here,and how do i solve this.
Regards,
Aejaz
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: Acroread - pdf reader
Date: Fri, 08 Sep 2000 14:11:07 GMT
In article <yXTt5.6204$[EMAIL PROTECTED]>, Julian Midgley wrote:
>>>Has anyone got a working version of Adobe's Acroread?
>>
>>The ones that I've downloaded from Adobe have always worked.
>
>I've had the same problems with Acroread on certain machines. So far
>as I can tell, they are caused by acroread not liking screen modes
>with fewer than 32bpp (or, at the very least, not liking 24bpp
>modes).
I don't remember acroread specifically having that problem, but
it's not uncommon for X apps to fail at 24bpp. WP8 and
Netscape both had problems at 24. They all seem to work fine
at 8, 16, and 23 bpp.
--
Grant Edwards grante Yow! .. the HIGHWAY is
at made out of LIME JELLO and
visi.com my HONDA is a barbequed
OYSTER! Yum!
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.networking,comp.os.linux.setup
Subject: Re: new mail from "Cron"
Date: Fri, 08 Sep 2000 14:11:53 GMT
On Thu, 7 Sep 2000 22:42:43 -0400, "Devon Harding"
<[EMAIL PROTECTED]> wrote:
>Why do I keep getting this mail from the cron daemon:
Cron is running some program for you (every day by the looks of
things). If any cron process generates output, the output is mailed
to the owner of the process (in this case root). Most programs
designed to be run by cron, only generate output if something is wrong
(file in the wrong place, file msissing, wrong permissions, ...).
Your particular problem, I don't know. It might help if you told
people what distribution you were running, or posted the program which
was generating the error. Certainly my Debian distribution isn't the
same as what you are running (by first inspection).
Gord
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: ASCII File transfer over Ethernet to Mulitport Serial on Linux box?
Date: Fri, 08 Sep 2000 14:20:32 GMT
In article <[EMAIL PROTECTED]>, John Doe wrote:
>Surely someone has tackled this type of task before but I'm unable to
>find any docs to get me going.
>
>I work in a machine shop and the machinery uses ASCII files to control
>the machine movements. Currently we have the switch box setup to
>select which Win98 computer sends/recieves to which machine. We'd like
>to switch to multiport serial devices on a Linux server (where the
>files will be stored for re-use) to eliminate the problems we are
>having with the boxes (not a pleasant enviroment).
>
>My problem is I'm a newbie to Linux (it took me a week to get the
>ports to work) and I can't quite see all the pieces to this task.
>
>Any advice or links would be appreciated
[Disclaimer: I work for Comtrol.]
Comtrol sells Ethernet attached, multi-port serial boxes that
can be shared by multiple hosts. They come in 2, 4 and 8 port
models with software-selectable RS-232/485/422 interfaces.
Drivers are available for Linux and the usual selection of
Windows "OSes".
The linux driver supports up to four boxes (though you could
make it support more if you wanted -- it's Linux: you get
source.)
The marketing droids tell me these boxes are quite popular in
machine shops for the exact application you are describing.
http://www.comtrol.com/sales/specs/rpshsi.htm
--
Grant Edwards grante Yow! Now KEN and BARBIE
at are PERMANENTLY ADDICTED to
visi.com MIND-ALTERING DRUGS...
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: Red Hat Linux - Apache included? in Standard Edition?
Date: Fri, 08 Sep 2000 14:22:56 GMT
In article <[EMAIL PROTECTED]>, msprague wrote:
>I have an unopened box on my desk that is Red Hat Linux 6.1 Standard
>Edition.
>
>Are Apache, wu-ftp, and Sendmail are included in this package?
Yes.
If I were you, I'd go for 6.2 (or at least install all the 6.1
updates).
--
Grant Edwards grante Yow! Did I say I was a
at sardine? Or a bus???
visi.com
------------------------------
From: 3lixyqueue <[EMAIL PROTECTED]>
Subject: What does `utmp' stand for?
Date: 8 Sep 2000 08:28:53 -0600
What does utmp stand for?
utmp(5) and wtmp(5) just say ``login records.''
Is there any historical significance for why
it's named utmp?
Thanks,
--
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED]
Subject: fs block size > 4KB
Date: Fri, 08 Sep 2000 14:32:54 GMT
I'm using Linux RedHat 6.2 and i want to create a file system (ext2)
with block size greater than 4 Kbytes. Is it impossible ?
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: Tyler Hall <[EMAIL PROTECTED]>
Crossposted-To:
alt.comp.hardware,comp.hardware,comp.os.linux.hardware,comp.os.linux.questions
Subject: Re: My project.
Date: Fri, 08 Sep 2000 09:23:56 -0500
d3v wrote:
> Hi all,
> I recently decided to get into writing Device drivers for Linux I found
> a very old 8-bit midi or game card that I'd like to write a driver for I
> think the learning experience would be great. The problem is it's a no name
> card the chip is a Tamarack (TD3088A3) anyone know anything about this chip
> or maybe a good place to start my search. If I'm posting off topic please
> accept my apologies.And sorry for the cross-post I'm lazy :)
> Thanks,
> Kevin
You could throw it into windows to see if it recognizes it, then take the name
it came up with and start your search from there. Linux might already support
it, too. If it doesn't auto detect and you have a day to waste you could try
all the modules and all of their settings. I know it doesn't help you write
the driver but you said you want the experience, and this would at least
identify the card for you so you'd have a place to start looking for specs.
What's more, is if you find that a linux module supports the card, you can
always look to its source code for help when you in a jam!
------------------------------
From: [EMAIL PROTECTED] (Jinghua Tang)
Subject: upgrade to redhat 7.0 beta ?
Date: 8 Sep 2000 14:33:05 GMT
I downloaded the redhat 7.0 beta (6.9) to upgrade my
linux 6.2. But after the upgrade, the X window can not
run any more. I also notice the problem with rpm, the
package.rpm in /var/lib/rpm is gone. I cann't query a
package any more.
I am very grateful for people pointing out the right
way to upgrade to 7.0, or backing off to restore the 6.2!
Jinghua
------------------------------
From: [EMAIL PROTECTED] (Joseph R Berens)
Subject: Audio on Dell Latitude XPi CD 133ST
Date: 8 Sep 2000 14:50:04 GMT
Has any body gotten sound to work on their Dell Latitude XPi CD 133ST?
Please help if you have any information on setting this up.
Thank you,
Joe
------------------------------
From: Fausto Arinos de A. Barbuto <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux
Subject: Re: Where is setenv in Red Hat 6.2?
Date: Fri, 08 Sep 2000 14:44:50 GMT
In article [EMAIL PROTECTED] (Bill Unruh) wrote:
> In <8p95jt$prb$[EMAIL PROTECTED]> Fausto Arinos de A. Barbuto
<[EMAIL PROTECTED]> writes:
> ]I have Red Hat 6.2 installed on my home computer.
> ]A couple of days ago I tried to run the "setenv"
> ]command and, for my surprise, I got a warning
> ]message saying that there was no such command.
> ]Besides that, there is no entry for "setenv" in
> ]the "man" manuals. However, as I recall, I did
> ]make use of "setenv" in the past with a different
> ]Linux distribuition.
>
> ]What the heck is going on?
> setenv is an internal command of the csh or tcsh shells. It is not
> used by bash or sh.
> You are probably using bash now and used to use csh.
Precisely. I found that out yesterday night.
Bourne Again Shell has no setenv, C Shell
does.
Sorry for taking your time, and thanks.
---Fausto
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: "Ian Dichkovsky" <[EMAIL PROTECTED]>
Crossposted-To:
comp.os.linux.development.system,comp.os.linux.hardware,comp.os.linux.questions
Subject: Re: buffer_dirty - what's the @#$%?
Date: Fri, 8 Sep 2000 18:04:23 +0300
Thanks, guys !
------------------------------
From: "Peter T. Breuer" <[EMAIL PROTECTED]>
Subject: Re: The Government's Decision to Use Microsoft
Date: 8 Sep 2000 14:50:35 GMT
Raymond Doetjes <[EMAIL PROTECTED]> wrote:
: unlike NT which will always be a extra security thread when it comes to Buffer
: Overflow exploits. (Which have happend to much in Linux! specially RedHats
If you want to disable all buffer overflow exploits, run on a machine
where the program stack increases upwards!
Peter
------------------------------
** 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
******************************