From owner-freebsd-questions@freebsd.org Tue Jul 9 19:44:42 2019 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DB3115E3E51 for ; Tue, 9 Jul 2019 19:44:42 +0000 (UTC) (envelope-from trond.endrestol@ximalas.info) Received: from enterprise.ximalas.info (enterprise.ximalas.info [IPv6:2001:700:1100:1::8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "ximalas.info", Issuer "Hostmaster ximalas.info" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BA6B882FA5 for ; Tue, 9 Jul 2019 19:44:41 +0000 (UTC) (envelope-from trond.endrestol@ximalas.info) Received: from enterprise.ximalas.info (Ximalas@localhost [127.0.0.1]) by enterprise.ximalas.info (8.15.2/8.15.2) with ESMTPS id x69JiYQX078513 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO) for ; Tue, 9 Jul 2019 21:44:34 +0200 (CEST) (envelope-from trond.endrestol@ximalas.info) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ximalas.info; s=default; t=1562701474; bh=iXpgPdFylHu8iIC6UmhZsOYa67ppUcMaamCEiNyaSfs=; h=Date:From:To:Subject:In-Reply-To:References; b=FynovgUlg/NCoHEHLOvkUT2QebeTc2DaZ4JVQrko7n7lyTQwxFOCfqABE2aZm6CHb 67qQrU9Y3hgz8hUkG35hZhGrNLIsFogLG7hkjcFgKx/wowfXpVUt5YpORo6KBRWOI8 +vxm/vO6hvwDbHee/ghqN+daJUO5FNGXYTFWtJ+Ge1ZxujQcrBzbGjRVcNMx6EHKbU /65lmIgMMV4THNMMFDYJKJe2zX0Q1XOTHHpD466GTjwJWffVRgzEvdDIrbO+qNdMU5 VxNX529moFy2qGuvjElACTIYpMV19wqg/rGiJHf1qcIck5h8eB2Vx2FIsF8EpQLVyR J5zvI14TKa1hQ== Received: from localhost (trond@localhost) by enterprise.ximalas.info (8.15.2/8.15.2/Submit) with ESMTP id x69JiYXX078510 for ; Tue, 9 Jul 2019 21:44:34 +0200 (CEST) (envelope-from trond.endrestol@ximalas.info) X-Authentication-Warning: enterprise.ximalas.info: trond owned process doing -bs Date: Tue, 9 Jul 2019 21:44:34 +0200 (CEST) From: =?UTF-8?Q?Trond_Endrest=C3=B8l?= Sender: Trond.Endrestol@ximalas.info To: "freebsd-questions@freebsd.org" Subject: Re: method to to cd through .iso file In-Reply-To: <5D24EBBE.9080801@gmail.com> Message-ID: References: <5D24EBBE.9080801@gmail.com> User-Agent: Alpine 2.21.9999 (BSF 287 2018-06-16) OpenPGP: url=http://ximalas.info/about/tronds-openpgp-public-key MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on enterprise.ximalas.info X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 19:44:42 -0000 On Tue, 9 Jul 2019 15:32-0400, Ernie Luzar wrote: > I have used in the past a method of console commands to mount the > RELEASE-amd64-disc1.iso file so I can cd through its directory structure. But > I have forgotten how to do it. > Can someone please post the method. mount -rt cd9660 /dev/cd0 /mnt I usually have numerous mountpoints in /media readily accessible by way of /etc/fstab: /dev/fd0 /media/a msdosfs rw,-l,-m=664,-M=775,noauto 0 0 /dev/cd0 /media/cdrom cd9660 ro,noauto 0 0 /dev/cd0 /media/dvdrom udf ro,noauto 0 0 /dev/md0 /media/dosimage msdosfs rw,-l,-m=664,-M=775,noauto 0 0 /dev/fd0 /media/floppy ufs rw,noauto 0 0 /dev/md0 /media/isoimage cd9660 ro,noauto 0 0 /dev/md0 /media/udfimage udf ro,noauto 0 0 /dev/md0 /media/ufsimage ufs rw,noauto 0 0 I guess I could have switched to the new automounter, but I'm stubborn and lazy. -- Trond.