Re: How to mount a floopy?

2000-08-20 Thread s. keeling
On Sun, Aug 20, 2000 at 02:20:55PM +0800, Gary Lee wrote:
> AS title, thanks

Careful with those titles (floopy?).

mount -t fstype /dev/device /mountpoint

mount -t ext2 /dev/fd0u1440 /mnta

Or put the relevant info in /dev/fstab, then:

mount /mnta

# /etc/fstab: static file system information.
#
# who needs it?!?
# /dev/hda1   /dosc vfat   user,rw,conv=auto
#
#   
/dev/hda2   / ext2   defaults,errors=remount-ro 0  1
/dev/hda3   none  swap   sw 0  0
proc/proc proc   defaults   0  0
/dev/hdb/cdromiso9660 noauto,user,ro
/dev/fd0u1440   /mnta ext2   noauto,user,rw
/dev/fd0u1440   /dosa msdos  noauto,user,rw,conv=auto
#
# Win95
# /dev/hda1   /dosc vfat   user,rw,conv=binary
#
#,conv=binary
#,conv=auto


-- 
[EMAIL PROTECTED] (Stephen) TopQuark Software & Serv. Enquire within.
[sed 's/[EMAIL PROTECTED]/@/g']   Contract programmer, server 
bum.  
Any technology distinguishable from magic is insufficiently advanced.



How to mount a floopy?

2000-08-20 Thread Gary Lee
AS title, thanks