Date: Fri, 24 Aug 2001 08:27:04 +1000 From: Edwin Groothuis <edwin@mavetju.org> To: Timothy Luoma <luomat@peak.org> Cc: FBSD questions <freebsd-questions@freebsd.org> Subject: Re: mount questions continued Message-ID: <20010824082704.Q459@k7.mavetju.org> In-Reply-To: <200108232211.f7NMB0j22245@svr-ganmtc-appserv-mgmt.ncf.coxexpress.com>; from luomat@peak.org on Thu, Aug 23, 2001 at 06:10:46PM -0400 References: <200108232211.f7NMB0j22245@svr-ganmtc-appserv-mgmt.ncf.coxexpress.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Aug 23, 2001 at 06:10:46PM -0400, Timothy Luoma wrote: > I tried several versions like > > mount_msdos /dev/ad0s2d /win > > and keep getting > > /win does not exist > > (Of course it doesn't exist, that's why I'm trying to > mount it there) I think it's more complaining about the fact that the directory /win doesn't exist yet. Make it and you'll see a different error. > I'm guessing I have the device name wrong. How can I > figure out the correct device name? guess. try. repeat. for i in /dev/ad0s*; do mount_msdos $i /win; done At the end, if you do "mount" or "df", you'll see which one was valid :-) Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010824082704.Q459>