From owner-freebsd-questions@FreeBSD.ORG Sat Jun 5 00:08:12 2004 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 2FC0316A4CE for ; Sat, 5 Jun 2004 00:08:12 -0700 (PDT) Received: from mailsmtp01.sjc02.opsource.net (mailsmtp01.sjc02.opsource.net [209.34.95.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E8D43D39 for ; Sat, 5 Jun 2004 00:08:12 -0700 (PDT) (envelope-from victor@opsource.net) Received: from [192.168.1.100] (dsl027-177-056.sfo1.dsl.speakeasy.net [216.27.177.56]) (authenticated bits=0)i5577i2I020871 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Jun 2004 00:07:44 -0700 From: Victor Gregorio To: Bruce Hunter In-Reply-To: <1086414299.871.4.camel@solid.solisixoffice.com> References: <1086414299.871.4.camel@solid.solisixoffice.com> Content-Type: text/plain Message-Id: <1086419312.652.26.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 05 Jun 2004 00:08:32 -0700 Content-Transfer-Encoding: 7bit X-Virus-Scanned-By: ClamAV cc: freebsd-questions@freebsd.org Subject: Re: Problems mounting my cdrom drive 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, 05 Jun 2004 07:08:12 -0000 This has happened to me. The problem was with the file system startsector. By default, mount_cd9660 uses a default of 15112. I had to use mount_cd9660 along with -s startsector. Here is how I used cdcontrol to get the right startsector for a particular track... # mount_cd9660 -v /dev/acd0 /mnt using starting sector 15112 mount_cd9660: /dev/acd0: Invalid argument # cdcontrol cdcontrol> info Starting track = 1, ending track = 3, TOC size = 34 bytes track start duration block length type ------------------------------------------------- 1 0:02.00 3:15.35 0 14660 data 2 3:17.35 0:06.02 14660 452 data 3 3:23.37 11:02.37 15112 49687 data 170 14:25.74 - 64799 - - If I changed the startsector to 0, I saw the root FS and some data but no folders. I had to use -s 14660. So the solution for me was: root:/# mount_cd9660 -v -s 14660 /dev/acd0 /mnt Hope this helps. -Victor On Fri, 2004-06-04 at 22:44, Bruce Hunter wrote: > I am having problems mounting my cdrom drive. > > i have also run the command > mount_cd9660, and this is the result > > root@solid# mount_cd9660 /dev/acd0 /cdrom/ > mount_cd9660: /dev/acd0: Invalid argument > > this is with the mount command > > root@solid# mount -v -t cd9660 /dev/acd0 /cdrom/ > cd9660: /dev/acd0: Invalid argument > > Thanks guys, > Bruce > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >