From owner-freebsd-questions@FreeBSD.ORG Fri Oct 3 11:02:51 2008 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 85F0B106569A for ; Fri, 3 Oct 2008 11:02:51 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by mx1.freebsd.org (Postfix) with ESMTP id 13FC18FC35 for ; Fri, 3 Oct 2008 11:02:50 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by fg-out-1718.google.com with SMTP id l26so1025586fgb.35 for ; Fri, 03 Oct 2008 04:02:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=VI+qo313Ruh+rSXrVgY1opfIgK9cZM9EmC18VvtktVw=; b=jfHLcyszC6SO8nKUNX9dOHy/QCgp2fPFF0MrfVTmUyf46ogOcy2tawiN15mpxqcaK8 7Dq7+ChY7ttnAmWsh295Jlhs8rT8xJ6tp3ym8jn80XlKRxdCYbZGEN1VcZzaABmByI+J 29Lqad6s6ZJ/HvoJ2A9dZAtP9eqAcdfhN/eeo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=tR3Zbky98CkKiATGA3H1ekTexmTYjqRZE0gBtl46kJoncdCwLVU5vfCYACieo9gYhh s7rlnIcudLIRj8DJTgjF0Sp94p/rSltQ+FBTkzuSGrV2REQ6RSmJZScb2Eqp6nZj/gUm V7qTjwKLGf9yF8qc6EMlbDPlYtszLxFJTVKD4= Received: by 10.86.80.5 with SMTP id d5mr979194fgb.11.1223031769288; Fri, 03 Oct 2008 04:02:49 -0700 (PDT) Received: from joshua.freebsdgr.org (athedsl-4429267.home.otenet.gr [79.129.133.195]) by mx.google.com with ESMTPS id 3sm3803101fge.3.2008.10.03.04.02.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Oct 2008 04:02:48 -0700 (PDT) Message-ID: <48E5FBD5.9070606@gmail.com> Date: Fri, 03 Oct 2008 14:02:45 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.16 (X11/20080806) MIME-Version: 1.0 To: Warren Liddell References: <200810032028.45073.shinjii@maydias.com> In-Reply-To: <200810032028.45073.shinjii@maydias.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Utility to extract iso files without burning X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2008 11:02:51 -0000 Warren Liddell wrote: > Im looking for a GUI or command line that will allow me to extract information > within an ISO file... im using FreeBSD 7.1-PRERELEASE KDE4.1.1 AMD64 > You can mount an iso and copy files from it. First create a memory disk device to contain the file system: mdconfig -a -t vnode -f /path/to/your.iso -u md0 Then mount the file system as you would mount a CD-ROM: mount -t cd9660 /dev/md0 /mnt After you finish, first unmount then detach the md0 device: umount /mnt mdconfig -d -u md0