mounting CDROM with new install of REdHat 5.1

mounting CDROM with new install of REdHat 5.1

Post by Jauvane C. de Oliveir » Wed, 30 Sep 1998 04:00:00



Hi there,

I am installing RedHat 5.1 in a new machine, but after the installation
is complete I can't mount the CDROM. When I type  mount -t iso9660
/dev/cdrom /cdrom I get a message saying that the kernel doesn't support
iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
be quite simple to fix on RedHat, isn't it?

I would appreciate any information about how to include support to
iso9660 CDs in the kernel.

Thanks in advance for your time,

---------------------------------------------------------------------
         _/ _/    _/     Jauvane Cavalcante de Oliveira
        _/ _/   _/      University of Ottawa
       _/ _/  _/ _/_/  School of Information Technology & Engineering
      _/ _/ _/ _/     Multimedia Communications Research Laboratory
_/   _/ _/_/  _/     Phone:1(613)562-5800 Ext.6248/6243  FAX:562-5175
_/_/_/ _/     _/_/  Canada     http://www2.mcrlab.uottawa.ca/~jauvane
---------------------------------------------------------------------
|                Bolsista da CAPES - Brasilia/Brasil                |
---------------------------------------------------------------------

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by tmk » Wed, 30 Sep 1998 04:00:00


try editing the /etc/conf.modules and adding a line like "alias iso9660
isofs"
then try mounting it. If that doesn't work, try typing "insmod isofs"

tmk



Quote:>Hi there,

>I am installing RedHat 5.1 in a new machine, but after the installation
>is complete I can't mount the CDROM. When I type  mount -t iso9660
>/dev/cdrom /cdrom I get a message saying that the kernel doesn't support
>iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
>be quite simple to fix on RedHat, isn't it?

>I would appreciate any information about how to include support to
>iso9660 CDs in the kernel.

>Thanks in advance for your time,

>---------------------------------------------------------------------
>         _/ _/    _/     Jauvane Cavalcante de Oliveira
>        _/ _/   _/      University of Ottawa
>       _/ _/  _/ _/_/  School of Information Technology & Engineering
>      _/ _/ _/ _/     Multimedia Communications Research Laboratory
>_/   _/ _/_/  _/     Phone:1(613)562-5800 Ext.6248/6243  FAX:562-5175
>_/_/_/ _/     _/_/  Canada     http://www2.mcrlab.uottawa.ca/~jauvane
>---------------------------------------------------------------------
>|                Bolsista da CAPES - Brasilia/Brasil                |
>---------------------------------------------------------------------


 
 
 

mounting CDROM with new install of REdHat 5.1

Post by Seth Rams » Fri, 02 Oct 1998 04:00:00


On Tue, 29 Sep 1998 18:57:41 -0400, "Jauvane C. de Oliveira"

|Hi there,
|
|I am installing RedHat 5.1 in a new machine, but after the installation
|is complete I can't mount the CDROM. When I type  mount -t iso9660
|/dev/cdrom /cdrom I get a message saying that the kernel doesn't
support
|iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
|be quite simple to fix on RedHat, isn't it?
|
|I would appreciate any information about how to include support to
|iso9660 CDs in the kernel.
|
|Thanks in advance for your time,
|

I had the same problem.  The Red Hat 5.1 install doesn't appear to set
up the link from your CDROM device properly.  What I did was edit
/etc/fstab to mount /dev/hdc (my CDROM) as /mnt/cdrom.  I simply changed
the entry /dev/cdrom to /dev/hdc.  If you are using an IDE CDROM, the
device will be hda, hdb, hdc, or hdd.  This is a workaround, and you
should be able to properly link /dev/cdrom to your CDROM if you spend
some time with it.  The above solution worked for me, though.
Good luck
Seth Ramsey

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by d.. » Fri, 02 Oct 1998 04:00:00



: I am installing RedHat 5.1 in a new machine, but after the installation
: is complete I can't mount the CDROM. When I type  mount -t iso9660
: /dev/cdrom /cdrom I get a message saying that the kernel doesn't support
: iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
: be quite simple to fix on RedHat, isn't it?

So don't type that.

There should be a line in /etc/fstab
/dev/cdrom              /mnt/cdrom              iso9660 noauto,ro,user  0 0

mount /mnt/cdrom

should then mount the CD.
I have RedHat 5.1, and I didn't make any adjustments after install, except
for adding ",user" to the fstab, so normal users could mount cd.

--
---

                - Pope Valley & Napa CA.

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by A. van Luijpe » Sat, 03 Oct 1998 04:00:00



> On Tue, 29 Sep 1998 18:57:41 -0400, "Jauvane C. de Oliveira"

> |Hi there,
> |
> |I am installing RedHat 5.1 in a new machine, but after the installation
> |is complete I can't mount the CDROM. When I type  mount -t iso9660
> |/dev/cdrom /cdrom I get a message saying that the kernel doesn't
> support
> |iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
> |be quite simple to fix on RedHat, isn't it?
> |
> |I would appreciate any information about how to include support to
> |iso9660 CDs in the kernel.
> |
> |Thanks in advance for your time,
> |

> I had the same problem.  The Red Hat 5.1 install doesn't appear to set
> up the link from your CDROM device properly.  What I did was edit
> /etc/fstab to mount /dev/hdc (my CDROM) as /mnt/cdrom.  I simply changed
> the entry /dev/cdrom to /dev/hdc.  If you are using an IDE CDROM, the
> device will be hda, hdb, hdc, or hdd.  This is a workaround, and you
> should be able to properly link /dev/cdrom to your CDROM if you spend
> some time with it.  The above solution worked for me, though.
> Good luck
> Seth Ramsey


What it looks like more is that the isofs.o modules isn't loaded. If the above
suggestion didnt work, try 'insmod isofs' before attempting to mount. If the
/dev/cdrom wasn't a correct link to the appropriate device, make it by removing
the old link 'rm -f /dev/cdrom' and relinking it to the correct device 'ln -s
/dev/hd? /dev/cdrom' where ? = a, b, c or d depending which your drive is.

Please remove the .nospam from my addres when replying

Kind regards,
Alexander van Luijpen

Philips Semiconductors
Consumer Systems Nijmegen

All statements and/or opinions found in this message are of a personal nature,
and in no way represent any official statements of my employer Philips
Semiconductors

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by A. van Luijpe » Sat, 03 Oct 1998 04:00:00



> On Tue, 29 Sep 1998 18:57:41 -0400, "Jauvane C. de Oliveira"

> |Hi there,
> |
> |I am installing RedHat 5.1 in a new machine, but after the installation
> |is complete I can't mount the CDROM. When I type  mount -t iso9660
> |/dev/cdrom /cdrom I get a message saying that the kernel doesn't
> support
> |iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
> |be quite simple to fix on RedHat, isn't it?
> |
> |I would appreciate any information about how to include support to
> |iso9660 CDs in the kernel.
> |
> |Thanks in advance for your time,
> |

> I had the same problem.  The Red Hat 5.1 install doesn't appear to set
> up the link from your CDROM device properly.  What I did was edit
> /etc/fstab to mount /dev/hdc (my CDROM) as /mnt/cdrom.  I simply changed
> the entry /dev/cdrom to /dev/hdc.  If you are using an IDE CDROM, the
> device will be hda, hdb, hdc, or hdd.  This is a workaround, and you
> should be able to properly link /dev/cdrom to your CDROM if you spend
> some time with it.  The above solution worked for me, though.
> Good luck
> Seth Ramsey


What it looks like more is that the isofs.o modules isn't loaded. If the above
suggestion didnt work, try 'insmod isofs' before attempting to mount. If the
/dev/cdrom wasn't a correct link to the appropriate device, make it by removing
the old link 'rm -f /dev/cdrom' and relinking it to the correct device 'ln -s
/dev/hd? /dev/cdrom' where ? = a, b, c or d depending which your drive is.

Please remove the .nospam from my addres when replying

Kind regards,
Alexander van Luijpen

Philips Semiconductors
Consumer Systems Nijmegen

All statements and/or opinions found in this message are of a personal nature,
and in no way represent any official statements of my employer Philips
Semiconductors

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by Menno Lauweren » Mon, 05 Oct 1998 04:00:00




>> On Tue, 29 Sep 1998 18:57:41 -0400, "Jauvane C. de Oliveira"

>> |Hi there,
>> |
>> |I am installing RedHat 5.1 in a new machine, but after the installation
>> |is complete I can't mount the CDROM. When I type  mount -t iso9660
>> |/dev/cdrom /cdrom I get a message saying that the kernel doesn't
>> support
>> |iso9660 :-(  I didn't have such problem with Debian 2.0 but this should
>> |be quite simple to fix on RedHat, isn't it?
>> |
>> |I would appreciate any information about how to include support to
>> |iso9660 CDs in the kernel.
>> |
>> |Thanks in advance for your time,
>> |

>> I had the same problem.  The Red Hat 5.1 install doesn't appear to set
>> up the link from your CDROM device properly.  What I did was edit
>> /etc/fstab to mount /dev/hdc (my CDROM) as /mnt/cdrom.  I simply changed
>> the entry /dev/cdrom to /dev/hdc.  If you are using an IDE CDROM, the
>> device will be hda, hdb, hdc, or hdd.  This is a workaround, and you
>> should be able to properly link /dev/cdrom to your CDROM if you spend
>> some time with it.  The above solution worked for me, though.
>> Good luck
>> Seth Ramsey

>What it looks like more is that the isofs.o modules isn't loaded. If the
above
>suggestion didnt work, try 'insmod isofs' before attempting to mount. If
the
>/dev/cdrom wasn't a correct link to the appropriate device, make it by
removing
>the old link 'rm -f /dev/cdrom' and relinking it to the correct device
'ln -s
>/dev/hd? /dev/cdrom' where ? = a, b, c or d depending which your drive is.

>Kind regards,
>Alexander van Luijpen

>Philips Semiconductors
>Consumer Systems Nijmegen

Hi there,

I've got exactly the same problem. The solutions you described doesn't work
here.
When I do 'insmod isofs', it says no module by that name found.
(I installed everything)

Regards,

Menno Lauwerens

 
 
 

mounting CDROM with new install of REdHat 5.1

Post by Gerald R. Jense » Mon, 05 Oct 1998 04:00:00


Try ...

mount -t iso9660 /dev/cdrom /mnt/cdrom

 
 
 

1. RedHat 5.1 floppy install not mounting floppy ro CDROM

Greetings, all -

I've been trying to upgrade my RedHat 4.2 to RedHat 5.1, but I'm
encountering a peculiar problem.  I can boot from the boot floppy,
and it seems to find my linux partitions just fine (running on a Cyrix
180, BTW), but if I try the FTP install option it can't seem to re-mount
the floppy when I swap the supp disk in, nor can it mount the
CDROM, which is a Sound Blaster Pro standard model, and I can mount the
bloody things from within linux when my system is up.  The error I'm
getting is "Invalid Argument to mount", which seems to make sense, since
one
of the arguments to mount is something like "-1372938697614" or
somesuch,
which can't possibly be correct.

So, has anyone else ever encountered this, if so what's the fix, if not,
what's the way to update 4.2 to 5.1 while the machine is running linux
4.2 (so I can avoid the problem entirely - I can mount the CD from
within
linux, so I can just mount my RedHat 5.1 CD and do whatever)?

Any help, pointers, email, etc. appreciated!

Regards, all,

Benjamin


2. Multiple cameras

3. RedHat 5.1 : Can't Mount CDROM

4. Generic user mangement tool

5. Redhat 5.1 Install Problem: cdrom not found

6. Wireless Cards - Features needed!

7. Redhat 5.1 install hangs after detectin cdrom

8. PPP and CallBack

9. RedHat 5.1 CDROM install problem

10. Mount failed : invalid argument ? RedHat 5.1 install

11. New Install on Linux Redhat 5.1

12. Installing new NIC in Redhat 5.1?

13. Redhat 5.1 new install - how do you specify 'root partition'