From owner-freebsd-hackers Fri May 26 13:39:00 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id NAA00703 for hackers-outgoing; Fri, 26 May 1995 13:39:00 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id NAA00691 for ; Fri, 26 May 1995 13:38:43 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id GAA12512; Sat, 27 May 1995 06:28:16 +1000 Date: Sat, 27 May 1995 06:28:16 +1000 From: Bruce Evans Message-Id: <199505262028.GAA12512@godzilla.zeta.org.au> To: agl@redline.ru, freebsd-hackers@FreeBSD.org Subject: Re: mount "features" Sender: hackers-owner@FreeBSD.org Precedence: bulk >mount /dev/fd0 /mnt >(on the write protected floppy) Well, getting tons of errors from the kernel, >ok Mount (rw) and open ([r]w) don't check for writability. The mount succeeds and you get errors later. >mount -r /dev/fd0 /mnt >/dev/fd0 on /mnt: Device busy >:-0 The device is apparently still mounted. >mount -r /dev/fd0.1440 /mnt >ok :-0 In FreeBSD, you can mount multiple times at the same mount point. Each mount gives another layer that hides the previous layer if the default mount options are used. fd0.1440 is different from fd0 as far as mount can tell, so the mount is permitted. Bruce