From owner-freebsd-questions Sun Oct 20 09:40:32 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29838 for questions-outgoing; Sun, 20 Oct 1996 09:40:32 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA29805 for ; Sun, 20 Oct 1996 09:40:21 -0700 (PDT) From: Greg Lehey Received: from freebie.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0vF0tZ-000QooC; Sun, 20 Oct 96 17:38 MET Received: (grog@localhost) by freebie.lemis.de (8.8.2/8.6.12) id RAA13239; Sun, 20 Oct 1996 17:58:15 +0200 (MET DST) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Message-Id: <199610201558.RAA13239@freebie.lemis.de> Subject: Re: Making a DOS Partition writeable In-Reply-To: <199610171158.NAA01001@ghost.mep.ruhr-uni-bochum.de> from Robert Eckardt at "Oct 17, 96 01:58:30 pm" To: roberte@mep.ruhr-uni-bochum.de (Robert Eckardt) Date: Sun, 20 Oct 1996 17:58:15 +0200 (MET DST) Cc: questions@FreeBSD.org (FreeBSD Questions) X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Robert Eckardt writes: >> I have a 30MB Primary DOS partition on the same HD with FreeBSD. >> Unfortunately, it is Read-Only. Is it possible to mount a DOS partition >> that id Read-Write capable? Why is the primary DOS partition Read-Only? > > Look into /etc/fstab > You will find a line like > /dev/wd0s1 /c msdos ro 0 0 > This makes it read-only: ^^ > > Just change it to > /dev/wd0s1 /c msdos rw 0 0 There's a good reason that DOS file systems get mounted read-only. The file system code *was* buggy, and a write to an MS-DOS file system could cause file system corruption. I don't know if it's still the case--maybe somebody else can comment--but you should know the potential risks of writing to DOS file systems. Greg