/etc/fstab explain me please.....

2003-09-13 Thread Denis
Hi All!!!

  I want to mount automatically my second disk drive which has Fat32
  file system. Could you tell me what i must write in FSType section in
  /etc/fstab??
  Maybe msdos or fat32???

-- 
Best regards, Denis
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /etc/fstab explain me please.....

2003-09-13 Thread Jerry Bell
msdosfs should work so long as it's fat or fat32. 

Jerry
http://www.syslog.org
- Original Message - 
From: Denis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, September 13, 2003 7:11 AM
Subject: /etc/fstab explain me please.


Hi All!!!

  I want to mount automatically my second disk drive which has Fat32
  file system. Could you tell me what i must write in FSType section in
  /etc/fstab??
  Maybe msdos or fat32???

-- 
Best regards, Denis
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /etc/fstab explain me please.....

2003-09-13 Thread Guilmot Mike
Denis wrote:
 Hi All!!!
 
   I want to mount automatically my second disk drive which has Fat32
   file system. Could you tell me what i must write in FSType section
   in /etc/fstab??
   Maybe msdos or fat32???

msdos is what you're looking for :)
Like mount_msdos when it's not automatic.

Kind regards,

Guilmot Mike

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: /etc/fstab explain me please.....

2003-09-13 Thread David Gerard
On 09/13/03 11:11, Denis wrote:

 I want to mount automatically my second disk drive which has Fat32
 file system. Could you tell me what i must write in FSType section in
 /etc/fstab??
 Maybe msdos or fat32???
msdos is correct. Here's mine:

$ cat /etc/fstab
# See the fstab(5) manual page for important information on automatic mounts
# of network filesystems before modifying this file.
#
# DeviceMountpoint  FStype  Options Dump
Pass#
/dev/ad0s1b noneswapsw  0   0
/dev/ad0s1a /   ufs rw  1   1
/dev/acd0c  /cdrom  cd9660  ro,noauto   0   0
/dev/ad3s1  /mp3msdos   rw  1   2
proc/proc   procfs  rw  0   0

The drive called 'mp3' was mounted in a Windows box. Rather
than mess about with 40 gig of ripped CDs, I just put it straight
into this box and mounted it as shown.
- d.



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]