LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   mounting .iso's (https://www.linuxquestions.org/questions/linux-networking-3/mounting-isos-20971/)

hyperpimp 05-14-2002 09:22 PM

mounting .iso's
 
yeah, i'm still quite a newbie, and i've recently learned that you can mount .iso's as part of the file system.
my question is this: is it possible to mount .iso's that are on another computer across the network?

if so, how?

thanks

sewer_monkey 05-14-2002 10:55 PM

If the remote filesystem on which the ISO file resides is accessible to you and is mounted, I don't see why not.

Thymox 05-15-2002 06:47 AM

Yeah, of course it is. First, you'd need to mount the remote computer's filesystem (NFS/Samba), then you'd mount the iso file. I've not used NFS as of yet, but you can mount Windows Shares (Samba) with:
mount -t smbfs \\bob\share /mnt/samba
and then you would mount the ISO file with
mount -o loop /mnt/samba/isofile.iso /mnt/iso

(Obviously these are fictional examples, you'd need to change \\bob\share to whatever the computer name and share names are, you would need to mount somewhere that already exists, so you would need to make the directory /mnt/samba, and the directory /mnt/iso, but these are general rules for mounting anything...)

vfs 05-15-2002 07:03 AM

Put in /etc/exports the dir name and host to export, like in:


/usr myhost.mydomain.com

Í can't remember exactly if it's correct, cause I don't run NFS since last year (i'm not a sysadmin!), but it might give you an idea.

HTH,

vfs.

hyperpimp 05-15-2002 08:15 AM

thanks for the tips guys


All times are GMT -5. The time now is 03:25 PM.