On Thu, 7 Mar 1996 [EMAIL PROTECTED] wrote:
> Martin Str|mberg writes:
> [stuff deleted]
>
> > How does the system handle this scenario:
> > Suppose you have / and /usr on different partitions.
> > Before the system mount the usr partition it creates some files under the
> > directory /usr, and then mounts the usr partition on /usr.
>
> It won't mount! I tried this very same thing like this:
> ....
> mount: /dev/fd0 already mounted or /floppy is busy
The reason it didn't mount is because you were probably still in the
/floppy directory. Watch:
[EMAIL PROTECTED] umount /cdrom
[EMAIL PROTECTED] cd /cdrom/
[EMAIL PROTECTED]/cdrom]$ touch linguini
[EMAIL PROTECTED]/cdrom]$ mount /cdrom
mount: /dev/scd0 already mounted or /cdrom busy
[EMAIL PROTECTED]/cdrom]$ fuser -v /cdrom
USER PID ACCESS COMMAND
/cdrom root 15679 ..c.. bash
[EMAIL PROTECTED]/cdrom]$ cd /
[EMAIL PROTECTED]/]$ mount /cdrom
[EMAIL PROTECTED]/]$ (success)
Guy