Received: from PACIFIC-CARRIER-ANNEX.MIT.EDU by po7.MIT.EDU (5.61/4.7) id AA15086; Sun, 17 Dec 95 13:24:25 EST
Received: from SENATOR-BEDFELLOW.MIT.EDU by MIT.EDU with SMTP
	id AA26426; Sun, 17 Dec 95 13:24:25 EST
Received: (from root@localhost) by senator-bedfellow.MIT.EDU (8.6.12/2.3JIK) id NAA17553 for Linux-Development-System-Dist@senator-bedfellow.mit.edu; Sun, 17 Dec 1995 13:13:39 -0500
Message-Id: <199512171813.NAA17553@senator-bedfellow.MIT.EDU>
From: Digestifier <Linux-Development-System-Request@senator-bedfellow.MIT.EDU>
To: Linux-Development-System@senator-bedfellow.MIT.EDU
Reply-To: Linux-Development-System@senator-bedfellow.MIT.EDU
Date:     Sun, 17 Dec 95 13:13:35 EST
Subject:  Linux-Development-System Digest #128

Linux-Development-System Digest #128, Volume #2  Sun, 17 Dec 95 13:13:35 EST

Contents:
  Re: Quotas over NFS? (Bo Branten)
  Re: Mounting a mac file-system under linux? (Robert Collier)
  Re: [1.3.47] Undefined reference to `hostbyte' (Scott McClung)
  Re: Linux V1.3.47 Error (Scott McClung)
  Re: Mounting a mac file-system under linux? (Jonathan Kamens)
  Re: /etc/hosts : Are you aware of its weirdness?? (Szymon Rusinkiewicz)
  trying to NFS_ROOT mount workstation (Jan Vicherek)
  determining the physical address of a given user address (Yee On Lo)
  How to recognize SCSI CD-ROM as a "Generic SCSI" device? (Carl Tichler)
  Re: dosemu capable of running Windows 3.11 !? (Rob Janssen)
  Re: mount iso9660 -norock: no UPPER CASE? (Rob Janssen)
  Re: Linux Security - C2 and beyond (Harald Milz)
  Re: trying to NFS_ROOT mount workstation (Harald Milz)
  Re: parity error with dos but ok in linux (Vladimir Myslik)
  ld86 (Mikael Starvik)
  Re: dosemu capable of running Windows 3.11 !? (BOFH)
  Re: Weak Thread Support: Linux Weakness ? (Tim Bass)
  Re: Does Linux support (or will) RAID 5 drives and/or Hot plugged drives ? (Bart Peirens)
  Bogus BogoMips - udelay problems (Marcio of Cyclades)
  MSDOS FS file permissions (Alberto Vignani)

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

From: bosse@ing.umu.se (Bo Branten)
Subject: Re: Quotas over NFS?
Date: 16 Dec 1995 22:58:06 GMT

Miguel de Icaza (miguel@athena.nuclecu.unam.mx) wrote:

: > Just turned on quotas with 1.3.47 and the quota-1.50 package, and
: > everything seems to be working okay...  except that quotas don't seem to
: > work over NFS.  I have rpc.rquotad running on the server as suggested,
: > but still things aren't working.  Is there something else I have to do
: > to enable quotas over NFS?

: Quotas included with the kernel currently only support the ext2fs.
: You will have to wait for the nfs quota to work.

Quotas in Linux works well over NFS. The only thing you need to do is 
running rpc.rquotad on the server and have quotas enabled in the 
clients kernel.

        /Bo Branten

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

From: rob@tanstafl.demon.co.uk (Robert Collier)
Subject: Re: Mounting a mac file-system under linux?
Date: Sat, 16 Dec 1995 07:23:17 GMT

In article <4asbjv$76p@mark.ucdavis.edu>,
Aaron Mchugh <ez048853@bullwinkle.ucdavis.edu> wrote:
>       Hi, I'm wondering if there are any apps to mount or read a mac 
>floppy on a linux system?  If not, can anyone point me to some good books 
>on programming linux, and/or details of the mac filesystem.

Look fo hfs_fs on a sunsite mirror near you, this is a loadable module
that allows read access to macintosh disks.

                        Rob.



-- 
Robert R. Collier        | Maintainer of the Terry Pratchett Home page
rob@tanstafl.demon.co.uk | http://www.csv.warwick.ac.uk/~mautx/PTerry/
mautx@csv.warwick.ac.uk  | send subject line 'get pgp' for PGP key
7:20am up 5:31, 2 users, load average: 0.89, 0.58, 0.34

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

From: mcclung@owens.ridgecrest.ca.us (Scott McClung)
Subject: Re: [1.3.47] Undefined reference to `hostbyte'
Date: Sun, 17 Dec 1995 10:03:52 GMT

In article <4anfsq$7hl@isis.fiu.edu>,  <habibie@catevr.fiu.edu> wrote:
> Hi Linuxers,
>
> I just downloaded a copy of Linux kernel 1.3.47 and compiled to no
> avail.  The problem is due to "undefined reference to `hostbyte'" in
> constants.o.  The following shows where the error is:

[snip]

It will compile with a one line change.  To be honest, I haven't
actually booted it yet, but it links fine.  It looks like a simple
typo at line 596.

Here's a patch against drivers/scsi/constants.c:

*** constants.c Sun Dec 17 01:39:43 1995
--- constants.c.1.3.47  Sun Dec 17 01:50:24 1995
***************
*** 593,599 ****
  }
  #else
  void print_hostbyte(int scsiresult)
! {   printk("Hostbyte=0x%02x ",hostbyte(scsiresult));
  }
  #endif

--- 593,599 ----
  }
  #else
  void print_hostbyte(int scsiresult)
! {   printk("Hostbyte=0x%02x ",host_byte(scsiresult));
  }
  #endif
-- 
/* Scott McClung                   Opinions expressed here are mine.
 * UNIX Software Engineer/UNIX System Admin
 * mcclung@imt.saic.com
 * mcclung@ridgecrest.ca.us
 */

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

From: mcclung@owens.ridgecrest.ca.us (Scott McClung)
Subject: Re: Linux V1.3.47 Error
Date: Sun, 17 Dec 1995 10:06:52 GMT

In article <1995Dec14.040021.279@radioman.hernix.org>,
James Pogras <popo@radioman.hernix.org> wrote:

> It errors because there is no routine hostbyte().  I've changed it to
>
>       printk("Hostbyte=0x%02x ", scsiresult);
>
>  This causese it to compile but I don't belive it's right.

Should have been host_byte(scsiresult).  It's not a routine, but a
#define in drivers/scsi/scsi.h.

-- 
/* Scott McClung                   Opinions expressed here are mine.
 * UNIX Software Engineer/UNIX System Admin
 * mcclung@imt.saic.com
 * mcclung@ridgecrest.ca.us
 */

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

From: jik@annex-1-slip-jik.cam.ov.com (Jonathan Kamens)
Subject: Re: Mounting a mac file-system under linux?
Date: 16 Dec 1995 17:00:50 GMT

From the current LSM:

Begin3
Title:          HFS filesystem for Linux
Version:        0.5.2
Entered-date: 01Jun95
Description:    Source code for a kernel-loadable module implementing a
                read-only Macintosh HFS filesystem for Linux kernel
                versions 1.2.x and 1.3.x.
                This version contains minor bug fixes over 0.5.1 and the
                addition of support for the 1.3.x series kernels.
                Improvements in 0.5.x over 0.4 include the ability to mount
                HFS CDROMs (and possibly hard disks, but that's untested).
                This is ALPHA software, so backup everything before trying it.
Keywords:       Macintosh, HFS, filesystem, kernel, module
Author:         hargrove@sccm.stanford.edu (Paul H. Hargrove)
Maintained-by:  hargrove@sccm.stanford.edu (Paul H. Hargrove)
Primary-site:   sunsite.unc.edu /pub/Linux/ALPHA/hfs
                39258 hfs_fs_0.5.2.tgz
Copying-policy: GPL
End

You should check the LSM before posting a question like this.  I found this by
searching in it for "Macintosh".  If you don't know what the LSM is, see the
Linux FAQ.

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

From: smr@cs.stanford.edu (Szymon Rusinkiewicz)
Crossposted-To: comp.os.linux.networking
Subject: Re: /etc/hosts : Are you aware of its weirdness??
Date: 14 Dec 1995 07:34:44 GMT

John E. Davis (davis@space.mit.edu) writes:
>I spent alot of time trying to get `hostname -f' to display the fully
>qualified domain name for my linux system.  I found that it only displays it
>if the FIRST entry in the /etc/hosts file is the FQDN.  That is, 

>#hosts.txt
>127.0.0.1       localhost
>223.174.22.101  myhost myhost.my.domain

>is not sufficient for `hostname -f' to display `myhost.my.domain'.  In fact,

>#hosts.txt
>223.174.22.101  myhost myhost.my.domain
>127.0.0.1       localhost

>also does not work.  However this works:

>#hosts.txt
>223.174.22.101  myhost.my.domain myhost
>127.0.0.1       localhost

>Is this documented anywhere?  Is it supposed to work this way?  Have I
>missed something obvious?

Unfortunately, many distributions do not come with a hosts(5) man page
(documenting /etc/hosts).  Here is one from a Sun...

HOSTS(5)                  FILE FORMATS                   HOSTS(5)

NAME
     hosts - host name data base

SYNOPSIS
     /etc/hosts

DESCRIPTION
     The hosts file  contains  information  regarding  the  known
     hosts  on  the TCP/IP. For each host a single line should be
     present with the following information:

          Internet-address    official-host-name  aliases
<snip>

So, the full name must come before any aliases.
(BTW, it does work if the "localhost" line is first...)

 - Szymon R.

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

Crossposted-To: uw.linux
From: Jan Vicherek <jvichere@undergrad.math.uwaterloo.ca>
Subject: trying to NFS_ROOT mount workstation
Date: Sat, 16 Dec 1995 11:13:27 GMT



 I tried to startup a workstation using the NFS_ROOT feature of the later 
kernels.

 I got through to RARP, got even as far as
VFS: Mounted root (nfs filesystem)

 but no further.

 I've: /tftpboot/safir/ as root for the workstation,
# in /etc/exports:
/tftpboot/safir 192.9.200.30(rw)

#in /etc/rc.d/rc.local:
rarp -s safir 00:00:C0:64:D1:24

on /tftpboot/safir/ :
cpio --extract <redhat-2.0.fsstnd.cgz
cpio --extract <redhat-2.0.skeleton.cgz

rpm --root /tftpboot/safir --install <the following:>
adduser at bash cpio crontabs diffutils etcskel file fileutils findutils 
getty_ps gpm grep groff gzip initscripts kbd ld.so less libc lilo man 
net-tools ncompress npasswd perl procps readline rootfiles rpm sed setup 
sh-utils stat svgalib sysklogd tar termcap textutils time util-linux vim 
vixie-cron NetKit-A NetKit-B tcp_wrapper XFree86 XFree86-fonts Xaw3d 
dialog Xconfigurator fvwm libgr python control-panel glint xfm xpm 
tcltk-tcl tcltk-tk koules zapem

What's wrong ? -- RedHat people -- how do I need to initialize the 
distribution (e.g. run the installation procedure on the /tftpboot/safir 
-- that is: do all the things that the three boot/root disks do when 
installing redhat-2.0)


   Thanx,
      Jan

:r ~/.sig                      http://csclub.uwaterloo.ca/~jvichere
Jan Vicherek               Jan.Vicherek@UWaterloo.Ca, honza@ied.com
ZZ                                "To some, nothing is impossible."
Check out:                         http://www.netresponse.com/zldf/


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

From: acoustic@netcom.com (Yee On Lo)
Subject: determining the physical address of a given user address
Date: Sat, 16 Dec 1995 07:37:11 GMT

Is there a system call (or other means) for determining the
physical address of a given user address?  (In the particular
case i'm interested in, i don't have to worry about such an
address changing due to swapping because there's no swap space.)

I'm looking for a call something like

   unsigned long user_to_physical(unsigned long user_address);

Thanks for any pointers anyone can provide.  (This is part of my
intermittent battle with the ram . . .)

yeeOn
acoustic@netcom.com

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

Crossposted-To: comp.os.linux.hardware
From: carl@akhanlian (Carl Tichler)
Subject: How to recognize SCSI CD-ROM as a "Generic SCSI" device?
Date: Mon, 11 Dec 1995 12:38:19 GMT

I am attempting to use the "cdda2wav" program to read digital audio
data directly from my Plextor SCSI CD-ROM.  In order to do this, I
need to read from the CD-ROM as a "generic SCSI" device, i.e. 
/dev/sg0 or /dev/sg1.  I also have a SCSI hard disk.  Both the hard
disk and CD-ROM are accessable after booting, the SCSI drive gets
automatically mounted, and the CD-ROM can be manually mounted.
However, I created the various /dev/sg devices (with 'mknod /dev/sg0 b 21 0',
'mknod /dev/sg1 b 21 1', etc.), but they are always "not accessable",
when cdda2wav tries to open them.  The SCSI controller card is a
Buslogic 946C.

Thanks in advance,

Carl

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

Crossposted-To: comp.os.linux.x,com.os.linux.development.apps
From: rob@pe1chl.ampr.org (Rob Janssen)
Subject: Re: dosemu capable of running Windows 3.11 !?
Reply-To: pe1chl@wab-tis.rabobank.nl
Date: Sun, 17 Dec 1995 09:58:22 GMT

In <30D365C6.41C6@e.kth.se> Marcus Sundberg <e94_msu@e.kth.se> writes:

>I've managed to get win* 3.11 to run under dosemu 0.60.3
>and 0.60.4.5, using linux 1.3.47. I can start small programs like
>filemanager and notepad, but it's bound to crash within 5 mins.

This sounds like a good emulation :-)

Rob
-- 
+------------------------------------+--------------------------------------+
| Rob Janssen         rob@knoware.nl | BBS: +31-302870036 (2300-0730 local) |
| AMPRnet:       rob@pe1chl.ampr.org | AX.25 BBS: PE1CHL@PI8WNO.#UTR.NLD.EU |
+------------------------------------+--------------------------------------+

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

From: rob@pe1chl.ampr.org (Rob Janssen)
Subject: Re: mount iso9660 -norock: no UPPER CASE?
Reply-To: pe1chl@wab-tis.rabobank.nl
Date: Sun, 17 Dec 1995 10:09:17 GMT

In <aeb.819160853@news.cwi.nl> aeb@cwi.nl (Andries Brouwer) writes:

>ludwig@Informatik.TU-Muenchen.DE (Thomas Ludwig) writes:

>: I recently got some conference proceedings on CD which can be read via
>: e.g. netscape. Unfortunately all references in the html-files use
>: upper case file names. When mounting the CD all names are listed in
>: lower case. Under Solaris this is also the case BUT all files can also
>: be accessed by their file name given with upper case letters. This
>: does not work with Linux. The -norock option of mount doesn't change
>: anything. 

>I suppose you are not happy with
>       mount /dev/cdrom /cd -t iso9660 -o ro,norock,map=off
>either?
>[norock will tell isofs not to use Rockridge extensions;
> map=off tells it to leave the filename alone.
> This is good: you will have the upper case that you want,
> but bad: you also have the trailing ";1" that you probably don't want]

Why not ignore case when the rockridge extensions are off?
(or have some option to do so)

The "msdos" filesystem also ignores case when opening files but returns
names in lower case when reading the directory.  This seems to work
fine.

Rob
-- 
+------------------------------------+--------------------------------------+
| Rob Janssen         rob@knoware.nl | BBS: +31-302870036 (2300-0730 local) |
| AMPRnet:       rob@pe1chl.ampr.org | AX.25 BBS: PE1CHL@PI8WNO.#UTR.NLD.EU |
+------------------------------------+--------------------------------------+

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

From: hm@seneca.Linux.DE (Harald Milz)
Subject: Re: Linux Security - C2 and beyond
Date: Sun, 17 Dec 1995 10:03:35 GMT

Scott Johnson (johnsos@holmes.ece.orst.edu) wrote:
> 
> Why?  Is one of the requirements of C2 security that source code for the 
> applications be unavailable?

No. But as long as there's source code available (namely for the kernel) and
someone is root (we agree that someone must be root, right?) you cannot
expect the kernel to contain secure structures and stuff. Root can
re-configure, re-compile and install any kernel (and applications/libraries
etc.) he likes. How about C2 security then? Or did I miss something?

-- 
Harald Milz (hm@seneca.Linux.DE)

Tact, n.:
        The unsaid part of what you're thinking.

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

Crossposted-To: uw.linux
From: hm@seneca.Linux.DE (Harald Milz)
Subject: Re: trying to NFS_ROOT mount workstation
Date: Sun, 17 Dec 1995 10:07:02 GMT

Jan Vicherek (jvichere@undergrad.math.uwaterloo.ca) wrote:
> 
> 
>  I tried to startup a workstation using the NFS_ROOT feature of the later 
> kernels.
> 
>  I got through to RARP, got even as far as
> VFS: Mounted root (nfs filesystem)

Yeah, and what about certain devices init needs? /dev/tty, /dev/tty0,
/dev/console, /dev/null (and /dev/zero if init is ELF). Are those present?
If no, init hangs. You'd better get the iX-Terminal package which solves
the problem. I inserted some makedev calls creating those devices just
before the kernel forks init. 

-- 
Harald Milz (hm@seneca.Linux.DE)

Maintainer's Motto:
        If we can't fix it, it ain't broke.

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

From: Vladimir Myslik <xmyslik@cslab.felk.cvut.cz>
Crossposted-To: comp.os.linux.hardware
Subject: Re: parity error with dos but ok in linux
Date: 16 Dec 1995 02:33:54 GMT

Thomas Dunbar <tdunbar@gserver.grads.vt.edu> wrote:
>i just upgraded my son's computer to 16megs so he can work
>with Java.
>
>if he boots in dos and runs windows (or another app that
>takes a good bit of memory), the system halts with a parity
>error.
>
>However, i can boot Linux, load X, Emacs, Netscape, gcc till
>i'm using all 16megs of ram plus some swap and everything runs
>fine.

Perhaps you do not notice parity errors, because linux hides them (one possible
flag of misfunction of memory is getting signal 11 when compiling kernel).
I had two banks of 16MB memory modules with different timings (70 & 60 ns).
When I booted doze, they closed themselves after a while (~20 secs).
Under linux, I could notice the misfunction only when running X or compiling.
The behaviour is(may be) that when memory corruption occurs, some instruction
within a process jumps to a nonexistent address (addr which is not mapped).This
is treated as an attack against system and therefore the process is closed.

BTW, I had to add some waitstates.....until I got two the same 16MB modules


>
>how can this be? are the simm chips i got smart enough to
>know that fathers shouldnt permit their children to do DOS?
>that's what i'd prefer but he does need dos for some things..
>
>  thomas
>
>--
>Thomas Dunbar    540 231-3938 (fax 3714)   http://gserver.grads.vt.edu/

What becomes lethal for dos, doesn't have to be for linux.
Please, bear in mind that this is my IMHO.


==================================================================
 Vladimir Myslik
mailto:xmyslik@cslab.felk.cvut.cz , mailto:xmyslik@cs.felk.cvut.cz
http://cs.felk.cvut.cz/~xmyslik/


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

From: d93mst@efd.lth.se (Mikael Starvik)
Subject: ld86
Date: 16 Dec 1995 12:14:00 GMT


I am trying to write som assembler in linux on my Pentium. I can assemble the
file with as86 but when I try to link it with ld86 I get an error message "no
start symbol". How shall a source file look like to pass both as86 and ld 86?


Mikael Starvik
d93mst@efd.lth.se

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

From: BOFH <smurray@earthlight.co.nz>
Crossposted-To: comp.os.linux.x,com.os.linux.development.apps
Subject: Re: dosemu capable of running Windows 3.11 !?
Date: Mon, 18 Dec 1995 02:00:22 +1300


On Sun, 17 Dec 1995, Marcus Sundberg wrote:
> 
> I've managed to get win* 3.11 to run under dosemu 0.60.3
> and 0.60.4.5, using linux 1.3.47. I can start small programs like
> filemanager and notepad, but it's bound to crash within 5 mins.
> In short, it's not good for anything else than seeing if you can
> get it to work.
> I might also add that I can't notice any difference running with
> or without the kernelpatches.
> 

Is this running the standard WGW3.11, or is this the OS/2 version?

                                                                BOFH

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

From: bass@cais.cais.com (Tim Bass )
Subject: Re: Weak Thread Support: Linux Weakness ?
Date: 12 Dec 1995 00:25:05 GMT
Reply-To: bass@silkroad.com

Michael T. Peterson (mtp@big.aa.net) wrote:
: In comp.os.linux.development.system, bass@silkroad.com wrote:
: >The next generation netstuff seems to be moving into the Java
: >world.  Java requires a multithreaded environment.  Linux is
: >very weak in the multithread arena.

: What's weak about it?

Weak meaning that multithreaded kernel hooks were not built into
the original linux kernel.  The last time I spoke to Linus, he
stated directly that the architecture of linux was not optimal
for multithreaded applications.  

Tim



: /mtp
: -- 
:    +-----------------------------------------------------------------------+
:    | Michael T. Peterson  | For the latest status on DCE and POSIX threads |
:    | mtp@big.aa.net       | for Linux, see http://www.aa.net/~mtp/         |
:    +-----------------------------------------------------------------------+


--
+--------------------------------------------------------------------------+
| Tim Bass                           | #include<campfire.h>                | 
| Principal Network Systems Engineer |       for(beer=100;beer>1;beer++){  |
| The Silk Road Group, Ltd.          |           take_one_down();          |
|                                    |           pass_it_around();         |
| http://www.silkroad.com/           |       }                             |
|                                    |  back_to_work(); /*never reached */ | 
+--------------------------------------------------------------------------+

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

From: Bart.Peirens@ping.be (Bart Peirens)
Crossposted-To: comp.os.linux.hardware,comp.os.linux.misc
Subject: Re: Does Linux support (or will) RAID 5 drives and/or Hot plugged drives ?
Date: Mon, 18 Dec 1995 04:24:23 GMT

dmtech@magi.com (Andrew Mileski) wrote:

>Pierre Blanchet (blanchet@emi.u-bordeaux.fr) wrote:
>> My question is in the title.
>>      Thank you for your responses,

>There is a Linux driver for Raid-1 and Raid-2. *ANY* kind of disks
>work (supposedly).

OK, It's  good project, but at this state:
no raid5,
no recovery tools !!
no hot swap etc..


>-- Andrew E. Mileski --

>-------------------------------------------------------
>Dark Matter Technologies Inc. - Ottawa Ontario, Canada!
>mailto:dmtech@magi.com     http://www.magi.com/~dmtech/



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

From: marcio@easy1.mediacity.com (Marcio of Cyclades)
Subject: Bogus BogoMips - udelay problems
Date: 14 Dec 1995 02:27:19 GMT

Hello:

Cyclades and (I believe) other drivers rely on the udelay() kernel
function to implement delays at initialization time.

It happens that, in some systems, the udelay() (as well as the BogoMips
calculation) is completelly broken (causing the driver to malfunction).

An easy way to identify these systems is to look at the BogoMips index.
Pentiums (which should have a BogoMips around 60, shows 2 or 3).

Normally, going to the BIOS setup and setting the cache mode to "write
thru" instead of the default "write-back" fixes the problem.

Right now, I have a customer having problem with an AMD 486-120 MHz
motherboard. His BogoMips is 2.5. The Cyclades driver fails at the
HW initialization (because udealy is broken).

In this case, changing the cache mode did not fix the problem. It only
worked when we completelly disabled the internal cache. Strangelly,
the problem doesn't happen in an AMD486-80 MHz (the only difference between
the two processors other than the clock is the size of the cache:
8k in the 80 and 16k in the 120).

Does anyone have a suggestion on how to workaround this problem without
disabling the cache completelly? Does anyone know why BogoMips (and all
the related timing functions in the kernel) fails in several machines?

Regards,

Marcio.

============================================================================
Marcio Saito                                    e-mail: marcio@cyclades.com
SW Engineer                                     phone : (510) 770-9727
Cyclades Corporation                            fax:    (510) 770-0355
============================================================================

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

From: alberto.vignani@torino.alpcom.it (Alberto Vignani)
Subject: MSDOS FS file permissions
Date: 17 Dec 1995 13:13:16 -0500
Reply-To: alberto.vignani@torino.alpcom.it (Alberto Vignani)

Since 1.3.46 default file permissions for MSDOS disks have changed again;
now all files have the x bit set by default.
Since I'm addicted to Norton Commander-like stuff, I dont'like to select
a text file to read from a DOS disk and have the kernel trying to execute it!

Setting umask=0111 in /etc/fstab gives some relief, but I don't like this
solution. Here are my current settings:

(...)
/dev/hda1 /C    msdos   noexec,nodev,conv=binary,umask=0111 0 0
/dev/hdb1 /D    msdos   noexec,nodev,conv=binary,umask=0111 0 0
/dev/hdb5 /E    msdos   noexec,nodev,conv=binary,umask=0111 0 0
/dev/hdb6 /F    msdos   noexec,nodev,conv=binary,umask=0111 0 0
/dev/hdc1 /G    msdos   noexec,nodev,conv=binary,umask=0111 0 0

Am I wrong, was this change intended or it's a kernel bug?

Alberto


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


** 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: Linux-Development-System-Request@NEWS-DIGESTS.MIT.EDU

You can send mail to the entire list (and comp.os.linux.development.system) via:

    Internet: Linux-Development-System@NEWS-DIGESTS.MIT.EDU

Linux may be obtained via one of these FTP sites:
    nic.funet.fi				pub/OS/Linux
    tsx-11.mit.edu				pub/linux
    sunsite.unc.edu				pub/Linux

End of Linux-Development-System Digest
******************************
