On Tue, 20 Jun 2000, John McCarron wrote:

> As suggested by people on this form I've been accessing my Fat 32 partition
> with this command:
> 
> mount -t vfat /dev/hdb3 /mnt/Media.
> 
> That's been working fine, but I was wondering how I could mount it
> permanently without having to go back into a terminal screen and typing that
> command.  I'd also like to make sure that it's read and writeable as well.
> I would also prefer to have the "Media" directory straight off of the root
> as opposed to being under /mnt which is where it is now.
> 

First, you can make the mount point off of "/" by simply making a
directory there:  "mkdir /Media"

Next, you can make this an automatic mount by putting an appropriate entry
in /etc/fstab.  This file contains all of the partition information and
the corresponding mount points.

First::::::::::  do a "man mount" and read up on the options.
Then, consider adding this to the end of the /etc/fstab file:

/dev/hdb3       /Media          vfat  defaults    1 2

Issue "mount -a" afterward.  This will mount all directories specified as
auto (implicit in the "default" option)  in the /etc/fstab file.  
Next time you boot up [in about a year or two, right?] the mounting of
/Media will be done automatically.

-- 
Paul Gray
[EMAIL PROTECTED]
Dept. of Mathematics 
University of Northern Iowa
Wright Hall
Cedar Falls, IA  50614-0506



_______________________________________________
Stormlinux-users-list mailing list
[EMAIL PROTECTED]
http://www.stormix.com/community/lists/listinfo/stormlinux-users-list

Reply via email to