From owner-freebsd-questions@FreeBSD.ORG Mon Apr 20 17:11:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDEFE1065677 for ; Mon, 20 Apr 2009 17:11:11 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id 878138FC16 for ; Mon, 20 Apr 2009 17:11:11 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so161889yxb.13 for ; Mon, 20 Apr 2009 10:11:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=PHsdhQdztYEzF6hkeBTfvpWOroRi0MfnAu1UV7pNy+k=; b=GyxEclqtvLhmpGlc0euwer2BMwF9XZe5SzXJThqughPehA52uTDd/YDW8wDZkEVTtk 6rXVEFQIivIcBMspQTExl6lxv03CfsIYh3xnSNKSmXtpeLhbze+X4TfP3CKEjqDR3p+n AySnusNvZFtOG/y7i0kE15pUrA75s8NfnfPo0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; b=IkpYc2v6lyHKhxba3GZpfcQS/8mneNFiSbnmidoHuUCBgakuoDJBC+Dj7TEHG+Wopm nzZ3WGdSYxaUyqNKqOkdsGzW7iElWJdEApNTzgm3nnWH6PIEiUGqyng+b3ZkE7LaWjuK HMu7EnM1Q7Fj7zUk4GyQigOxoJJBOPwzyhjM4= MIME-Version: 1.0 Received: by 10.100.8.17 with SMTP id 17mr2255179anh.130.1240247470716; Mon, 20 Apr 2009 10:11:10 -0700 (PDT) In-Reply-To: <951d0a340904200932k50b3bcefmab63560d0c2933f@mail.gmail.com> References: <951d0a340904200932k50b3bcefmab63560d0c2933f@mail.gmail.com> Date: Mon, 20 Apr 2009 13:11:10 -0400 Message-ID: <8cb6106e0904201011v488b758dh9ef03d56707c1161@mail.gmail.com> From: Josh Carroll To: =?KOI8-R?B?5dfHxc7JyiDs?= Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: mount_cd9660 - /dev/md0: Invalid Arguement X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Apr 2009 17:11:12 -0000 On Mon, Apr 20, 2009 at 12:32 PM, =E5=D7=C7=C5=CE=C9=CA =EC wrote: > Hello everyone, I am trying to mount an ISO image (which was converted wi= th > with help from ccd2iso tool), I used > > mdconfig -a -t vnode -f ./"isoimage.iso" -u 3 > mount -t cd9660 /dev/md3 /cdrom > > and > > mdconfig -a -f /path/disk.iso md1 > mount -t cd9660 /dev/md1 /mnt/path > > variant of the proper way. It doesn't work. Both work fine here on 7.2-RC1/amd64: root@pflog:~# mdconfig -a -t vnode -f ./7.2-RC1-i386-bootonly.iso md0 root@pflog:~# mount -t cd9660 /dev/md0 /mnt && ls /mnt && umount /mnt boot boot.catalog cdrom.inf root@pflog:~# mdconfig -d -u 0 root@pflog:~# mdconfig -a -f ./7.2-RC1-i386-bootonly.iso -u 3 root@pflog:~# mount -t cd9660 /dev/md3 /mnt && ls /mnt && umount /mnt boot boot.catalog cdrom.inf How doesn't it work? What error do you get? I would be more suspicious of the .iso file being invalid/corrupt. Regards, Josh