Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
how do i brose an iso file located in a NFS share? Lets say I have the installation iso files located in a NFS share, I have mounted the installation iso files at /mnt/remote. Now if i run the #ls -la all i see is disk1.iso, disk2.iso etc. but I need to see the detailed files (ie. rpm, EULA, .diskinfo) like the ones i can see if i mount the first installation cd and run #ls -la.
yes thats what i was trying to do. Now since i am a newbie, how do i do that? I tried # mount -t nfs -o loop 192.168.0.100:/mnt/inst/disk1.iso /mnt/share but i am getting an error:
192.168.0.100:/mnt/inst/disk1.iso: No such file or directory.
I know the NFS server is working because if run #mount -t nfs 192.168.0.100:/mnt/inst /mnt/remote it works.
where /mnt/inst/disk1.iso is the location of that ISO image, and /mnt/share is where you want to mount it. You must have the loop module in your kernel, also. If "lsmod" does not list loop, then issue "modprobe loop" as root first.
Mounting a NFS (or other) filesystem and mounting an ISO image are two separate issues. You appear to already know how to mount the NFS filesystem. Once you've done that, then the ISO image is just a file there -- so now you mount that *.iso using the method outlined above.
The reason you got the error
Code:
192.168.0.100:/mnt/inst/disk1.iso: No such file or directory
is because you were trying to mix the mounting of the NFS share and the ISO image in one command. Therefore, there was no file to be mounted. Mount the NFS filesystem first, then mount the ISO image.
Last edited by Bruce Hill; 04-19-2007 at 04:32 PM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.