Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 1996 10:57:25 -0600
From:      james earl <james_earl@agt.net>
To:        freebsd-questions@FreeBSD.ORG
Subject:   Re: Mounting my dos partition
Message-ID:  <326BAB6A.4A08@agt.net>
References:  <199610211400.KAA01957@rebecca.its.rpi.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?326BAB6A.4A08>