From owner-freebsd-questions@FreeBSD.ORG Sat Sep 13 06:46:58 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 006F216A4BF for ; Sat, 13 Sep 2003 06:46:58 -0700 (PDT) Received: from smtp2.ex.eclipse.net.uk (ns2.eclipse.net.uk [212.104.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF5E143F85 for ; Sat, 13 Sep 2003 06:46:56 -0700 (PDT) (envelope-from fun@thingy.apana.org.au) Received: from thingy.apana.org.au (dyn-81-5-133-100.dsl.eclipse.net.uk [81.5.133.100]) by smtp2.ex.eclipse.net.uk (Postfix) with ESMTP id 5F76BA900A; Sat, 13 Sep 2003 14:46:54 +0100 (BST) Message-ID: <3F632D59.70207@thingy.apana.org.au> Date: Sat, 13 Sep 2003 14:44:41 +0000 From: David Gerard User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20030823 Mozilla Thunderbird/0.2a X-Accept-Language: en-us, en MIME-Version: 1.0 To: Denis , questions@freebsd.org References: <1194421359.20030913151148@mail.ru> In-Reply-To: <1194421359.20030913151148@mail.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: /etc/fstab explain me please..... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Sep 2003 13:46:58 -0000 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. # # Device Mountpoint FStype Options Dump Pass# /dev/ad0s1b none swap sw 0 0 /dev/ad0s1a / ufs rw 1 1 /dev/acd0c /cdrom cd9660 ro,noauto 0 0 /dev/ad3s1 /mp3 msdos 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.