maverick wrote: > This Damm Small Linux (DSL) is very cool, considering it's running in under > 50mb it works like a champ. Does anyone know what format EXT3 uses? For > example when I mount a Solaris file system I will do something like; > > ( mount -F ufs /dev/dsk/c0t0d0s0:c /mnt ) > > In linux do I do something like > > ( mount -F ext3 /dev/sda1 /mnt ) > > I notice that some have Linux under "System".
The correct use of the mount command would be: $ sudo mount -t ext3 /dev/sda1 /mnt Most of the time you can leave out the -t (type) option and mount is smart enough to figure out the file system by itself. Gus -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
