Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
07-12-2008, 12:06 PM
|
#1
|
LQ Newbie
Registered: Jul 2008
Posts: 17
Rep:
|
CentOS 5.2 Automount isos in fstab \other methods that work?automount iso
<fstab> (last line)
/Files-01/Linux/Fedora/09/Fedora-9-Everything-i386-DVD1.iso /Files-01/Fedora-Repo/releases/Everything/Packages/dvd2 iso9660 -o\040loop 1 2
</fstab>
there is 4 isos to be mounted which equate to "fedora 9 everything" "i386" on a mirror
(3 commented out, until sorted)
/...2.iso /dev3
/...3.iso /dev4
/...4.iso /dev5
[root@server-01 ~]# mount -a
mount: /Files-01/Linux/Fedora/09/Fedora-9-Everything-i386-DVD1.iso is not a block device (maybe try `-o loop'?)
Have also tries the fstab with "auto loop 1 2", "auto defaults,loop 1 2"
Failures.
Selinux context was set with chcon -t samba_share_t /Files-01
Frank
|
|
|
07-12-2008, 02:53 PM
|
#2
|
Senior Member
Registered: Dec 2005
Location: Massachusetts, USA
Distribution: Ubuntu 10.04 and CentOS 5.5
Posts: 3,873
|
I don't see any attempt to use the mount command at the command prompt to do this. That could help sort things out. I will leave out the long paths for clarity.
Code:
mount -o loop Fedora-9-Everything-i386-DVD1.iso dvd2
It would be interesting if that works because you had so much trouble using fstab. If the mount command complains that you need to specify a file system type then throw in the -t iso9660.
Code:
mount -t iso9660 -o loop Fedora-9-Everything-i386-DVD1.iso dvd2
If that doesn't work then either your loop devices aren't working or you don't have an ISO9660 driver or you don't have an ISO9660 image file. That is what I actually think is happening. I think that the image files are not valid.
In fstab I would change the trailing 1 2 to 0 0 since you never want the mount command to invoke a file system checker on these files.
Last edited by stress_junkie; 07-12-2008 at 02:59 PM.
|
|
|
07-12-2008, 03:01 PM
|
#3
|
LQ Newbie
Registered: Jul 2008
Posts: 17
Original Poster
Rep:
|
mount from cli works fine.
mount -t iso9660 -o loop=/dev/loop0 /Files-01/Linux/Fedora/09/Fedora-9-Everything-i386-DVD1.iso /Files-01/Fedora-Repo/releases/Everything/Packages/dvd2
Frank
|
|
|
07-13-2008, 06:29 AM
|
#4
|
LQ Newbie
Registered: Jul 2008
Posts: 17
Original Poster
Rep:
|
Solved
/Files-01/Linux/Fedora/09/Fedora-9-Everything-i386-DVD1.iso /Files-01/Fedora-Repo/releases/Everything/Packages/dvd2 iso9660 user,ro,loop 0 0
It was the permission bit, stress_junkie made me think of "0 0"
so changed from /some.iso /some/mountpoint auto defaults 1 2
to /some.iso /some/mountpoint iso9660 user,ro,loop 1 2
"ro" did the trick.
Frank
|
|
|
07-13-2008, 11:36 AM
|
#5
|
Senior Member
Registered: Dec 2005
Location: Massachusetts, USA
Distribution: Ubuntu 10.04 and CentOS 5.5
Posts: 3,873
|
Glad to help, even if it was by accident. I would still change that fstab record to 0 0.
Last edited by stress_junkie; 07-13-2008 at 11:38 AM.
|
|
|
07-13-2008, 01:23 PM
|
#6
|
Senior Member
Registered: Aug 2003
Location: Berkeley, CA
Distribution: Mac OS X Leopard 10.6.2, Windows 2003 Server/Vista/7/XP/2000/NT/98, Ubuntux64, CentOS4.8/5.4
Posts: 2,986
Rep:
|
You really shouldn't use the 1 2 because there's no point in having the system check the ISO mount directory since it's read-only. 0 0 is what you should change it to
|
|
|
07-13-2008, 01:34 PM
|
#7
|
LQ Newbie
Registered: Jul 2008
Posts: 17
Original Poster
Rep:
|
Quote:
Originally Posted by Micro420
You really shouldn't use the 1 2 because there's no point in having the system check the ISO mount directory since it's read-only. 0 0 is what you should change it to
|
It's changed, just still in my brain.
Frank
|
|
|
All times are GMT -5. The time now is 05:34 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|