From owner-freebsd-questions Tue Nov 4 17:24:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA25690 for questions-outgoing; Tue, 4 Nov 1997 17:24:33 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from core.IConNet.NET (iconmail.bellatlantic.net [199.173.162.30]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA25670 for ; Tue, 4 Nov 1997 17:24:26 -0800 (PST) (envelope-from dmm125@bellatlantic.net) Received: from myname.my.domain (client201-122-16.bellatlantic.net [151.201.122.16]) by core.IConNet.NET (IConNet Sendmail) with SMTP id UAA16925; Tue, 4 Nov 1997 20:23:35 -0500 (EST) Date: Tue, 4 Nov 1997 20:24:55 +0000 (GMT) From: Donn Miller X-Sender: dmm125@myname.my.domain To: Ariel Ogurok cc: freebsd-questions@freebsd.org Subject: Re: Troubles In-Reply-To: <01bce980$6d442740$4ff084d0@default> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 4 Nov 1997, Ariel Ogurok wrote: > Dear Donn > > I have some problems in UNIX: > 1)how to mount a floppy? I write: > mkdir /floppy > mount /dev/fd0 /floppy > In the first time everything was OK, but now FreeBSD returns > Warning: R/W mount of /floppy denied. Filesystem is not clean, run fsck. Before removing the floppy, be sure to unmount it: umount /floppy or umount /dev/fd0. Then it's OK to remove it. You have to re-mount it after you change disks or a floppy is reinserted. Before changing disks or removing them, unmount them first with umount. > 2)But fsck everytime says me: Clean Flag not set in superblock FIX [Y/N]? > I say Y, but another run fsck this is repeated. > 3) During boot message: > mountmsdosfs() Warning: root directory is not a multiple of the clusterize > in length. I would assume it's because mount_msdos expects FAT16 but is getting FAT32 (Windows 95 isn't FAT16). > My HDD WD 3.2GB structure: 2GB partition is WIndows95 and 1GB partition is > FREEBSD. Windows 95 is a FAT32 filesystem and regular dos is FAT16. mount_msdos only handles FAT16. > 4)When compile something using make command: > Warning: Object directory not changed from original > /usr/src/sys/i386/boot/netboot I get this message sometimes, too. But everything compiles / installs / runs OK. Probably something minor and nothing to worry about. --Donn