From owner-freebsd-questions Mon Oct 21 09:53:50 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA25894 for questions-outgoing; Mon, 21 Oct 1996 09:53:50 -0700 (PDT) Received: from agt.net (clgrps02.agt.net [198.161.156.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA25889 for ; Mon, 21 Oct 1996 09:53:47 -0700 (PDT) Received: from james (ltbrpx02-port-18.agt.net [204.209.197.177]) by agt.net (8.7.5/8.6.9) with SMTP id KAA09835 for ; Mon, 21 Oct 1996 10:53:38 -0600 (MDT) Message-ID: <326BAB6A.4A08@agt.net> Date: Mon, 21 Oct 1996 10:57:25 -0600 From: james earl Organization: Abc X-Mailer: Mozilla 3.01b1 (Win95; I) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Re: Mounting my dos partition References: <199610211400.KAA01957@rebecca.its.rpi.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hopkik@rpi.edu wrote: > > mount msdos /dev/wd0s1 /dos > or > mount msdos /dev/wd0s1 /msdos > or > mount_msdos /dev/wd0s1 /msdos try: mount -t msdos /dev/wd0s1 /[directory] The "-t" stands for type, and expects the partition type to be specified right after. "msdos" => type "/dev/wd0s1" => partition "/[directory]" => mounting location (eg: /dos) Hope that helps.