'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by MGM » Fri, 07 Jul 1995 04:00:00



Hello

While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
I found in the README file in device dir that the ATAPI CDs connected to the
second IDE interface should be drived by /dev/hdc, when I did and mount gives
this message

mount: iso9660 is not supported bt this kernel.

I installed InfoMagic Slakeware 2.2.1 (March 95 CDs).
While The kernel say it knows about the iso9660. I did

cat  /proc/filesystems

and iso9660 appeared as a block fs.

Before the /cdrom was linked to /dev/hd1a  ( done by the setup) and I was
getting the message

mount: /dev/hd1a is not a block device.

Any Clue.

I'm going to install the 1.2.10 kernel.

Thanks
Mostafa

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Andries Brouw » Fri, 07 Jul 1995 04:00:00


:       mount: iso9660 is not supported bt this kernel.

: I installed InfoMagic Slakeware 2.2.1 (March 95 CDs).
: While The kernel say it knows about the iso9660. I did

:       cat  /proc/filesystems

: and iso9660 appeared as a block fs. Any Clue?

You are using an ancient version of mount.
Get the one from util-linux-2.4.

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Carsten Braeutiga » Fri, 07 Jul 1995 04:00:00


Update the majors and minors of your devices (/dev/hd*) with the
MAKEDEV.ide script from /usr/src/linux/drivers/block/

Carsten.
---

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by MGM » Fri, 07 Jul 1995 04:00:00




>: Hello

>: While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
>: I found in the README file in device dir that the ATAPI CDs connected to the
>: second IDE interface should be drived by /dev/hdc, when I did and mount gives
>: this message

>: mount: iso9660 is not supported bt this kernel.

>: I installed InfoMagic Slakeware 2.2.1 (March 95 CDs).
>: While The kernel say it knows about the iso9660. I did

>: cat  /proc/filesystems

>: and iso9660 appeared as a block fs.

>: Before the /cdrom was linked to /dev/hd1a  ( done by the setup) and I was
>: getting the message

>: mount: /dev/hd1a is not a block device.

>Yes! Your /dev/hdc block device is probably incorrect. I had the exact same
>problem with my ATAPI cdrom.
>Fix: execute the /usr/src/linux/drivers/block/MAKEDEV.ide script (as root).
>(you may need to chmod 744 it first)

>Then mount the CD!

After doing this (MAKEDEV.ide1) I got the old error,
mount: /dev/hdc not a block devive.

So, I recompiled the kernel (1.2.1) and it works fine!!!

Thanks for those who replied.
Mostafa

- Show quoted text -

>--
>Cheers...
>    _          Robert Le Comte | Network Administrator,
>   /_)    Kaiapoi, New Zealand | Tait Electronics Ltd, NZ


 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Robert Le Com » Fri, 07 Jul 1995 04:00:00


: Hello

: While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
: I found in the README file in device dir that the ATAPI CDs connected to the
: second IDE interface should be drived by /dev/hdc, when I did and mount gives
: this message

: mount: iso9660 is not supported bt this kernel.

: I installed InfoMagic Slakeware 2.2.1 (March 95 CDs).
: While The kernel say it knows about the iso9660. I did

: cat  /proc/filesystems

: and iso9660 appeared as a block fs.

: Before the /cdrom was linked to /dev/hd1a  ( done by the setup) and I was
: getting the message

: mount: /dev/hd1a is not a block device.

Yes! Your /dev/hdc block device is probably incorrect. I had the exact same
problem with my ATAPI cdrom.
Fix: execute the /usr/src/linux/drivers/block/MAKEDEV.ide script (as root).
(you may need to chmod 744 it first)

Then mount the CD!

--
Cheers...
    _          Robert Le Comte | Network Administrator,
   /_)    Kaiapoi, New Zealand | Tait Electronics Ltd, NZ

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Mike Renf » Fri, 07 Jul 1995 04:00:00



> Hello

> While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
> I found in the README file in device dir that the ATAPI CDs connected to the
> second IDE interface should be drived by /dev/hdc, when I did and mount gives
> this message

> mount: iso9660 is not supported bt this kernel.

.....

Quote:> Any Clue.

> I'm going to install the 1.2.10 kernel.

It's not necessary to install a new kernel. The messages from mount and the
kernel are terribly misleading, however.

In short, how is your CD-ROM drive attached?  As the third drive on an EIDE
controller, or as the first drive on a secondary IDE interface?  If it's
the former, then:

        mount -t iso9660 /dev/hdc /cdrom

should work.  If it's the latter, then use:

        mount -t iso9660 /dev/hd1a /cdrom

Assuming that you've already made the directory /cdrom, of course.

One problem is that at least some kernels (not sure about the most recent
1.2 and 1.3 versions) list all IDE devices found on bootup as hda, hdb,
hdc, even if their actual device names will be hda, hdb, hd1a, etc.  That's
misleading message #1.  And when mount says there is no kernel support for
the iso filesystem, when the *real* problem is that there is either no
/dev/hdc or /dev/hd1a, that's misleading message #2.

Have either of these been fixed in the latest kernels?

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Andries Brouw » Sat, 08 Jul 1995 04:00:00


: One problem is that at least some kernels (not sure about the most recent
: 1.2 and 1.3 versions) list all IDE devices found on bootup as hda, hdb,
: hdc, even if their actual device names will be hda, hdb, hd1a, etc.  That's
: misleading message #1.  And when mount says there is no kernel support for
: the iso filesystem, when the *real* problem is that there is either no
: /dev/hdc or /dev/hd1a, that's misleading message #2.

: Have either of these been fixed in the latest kernels?

Nothing is wrong with the kernels - it is the distribution that
includes an ancient version of mount and names the device files
other than the kernel does.

You can fix it yourself by getting mount from util-linux-2.4
and perhaps renaming /dev/hd1a etc.

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Mark Anthony Dugu » Sat, 08 Jul 1995 04:00:00


: Hello

: While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
: I found in the README file in device dir that the ATAPI CDs connected to the
: second IDE interface should be drived by /dev/hdc, when I did and mount gives
: this message

: mount: iso9660 is not supported bt this kernel.

compile a new kernel, and make sure to yes yes to ISO9660 support. thats
the problem.  *or*, if you have a recent kernel, and have made your modules
for your kernel, you could just go as root into /lib/modules/(yourkernel#)/fs

and type
insmod isofs.o

and then mount your cd as usual.

: I installed InfoMagic Slakeware 2.2.1 (March 95 CDs).
: While The kernel say it knows about the iso9660. I did

: cat  /proc/filesystems

: and iso9660 appeared as a block fs.

: Before the /cdrom was linked to /dev/hd1a  ( done by the setup) and I was
: getting the message

: mount: /dev/hd1a is not a block device.

maybe the kernel used in the instalation process had iso9660 support,
but the one installed for use did not.

Mark Duguid      Certified Linux Geek        Saskatoon, Saskatchewan, Canada

"To turn any 486/586 into a 8088,..just add Dos and let freeze over Windows.
"MS-Windows and Win95 are the only viruses with a GUI." nuf bashin for today

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Andries Brouw » Sun, 16 Jul 1995 04:00:00


: :     mount -t iso9660 /dev/hdc /cdrom
:       gives error: mount: /dev/hdc is not a block device
: : should work.  If it's the latter, then use:
: :     mount -t iso9660 /dev/hd1a /cdrom
: and this says: mount: mount point /cdrom does not exist
: Anybody got any suggestions? :-)

Let me repeat the advice I give several times a week:
throw out your rotten mount program and get a proper one
like the one from util-linux-2.4.

[It will only give correct error messages, as far as I know,
a great help if you are trying to figure out how to mount something.]

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Walter Greenwo » Sun, 16 Jul 1995 04:00:00



: > Hello
: >
: > While I was fighting to get the CDROM (Sony CDU76E ATAPI CD) to be mounted
: > I found in the README file in device dir that the ATAPI CDs connected to the
: > second IDE interface should be drived by /dev/hdc, when I did and mount gives
: > this message
: >
: > mount: iso9660 is not supported bt this kernel.

: .....

: > Any Clue.
: >
: > I'm going to install the 1.2.10 kernel.

: It's not necessary to install a new kernel. The messages from mount and the
: kernel are terribly misleading, however.

: In short, how is your CD-ROM drive attached?  As the third drive on an EIDE
: controller, or as the first drive on a secondary IDE interface?  If it's
: the former, then:

:       mount -t iso9660 /dev/hdc /cdrom

        gives error: mount: /dev/hdc is not a block device

: should work.  If it's the latter, then use:

:       mount -t iso9660 /dev/hd1a /cdrom

and this says: mount: mount point /cdrom does not exist (tried /mnt /tmp
too)
I even specifcally recompiled the kernel (1.2.8) to support IDE/ATAPI
CD-ROMs. I have a FX400 IDE quad speed cdrom. I think it is Mitsumi, but I'm
not sure.

Anybody got any suggestions? :-)

Walt

--
_________________________________________________
|Walter Greenwood                               |
|Santa Rosa Junior College                      |

|WWW   ->  http://www.santarosa.edu/~wgreenwo   |
|          Immer das Kleinschrift lesen! :)     |
|_______________________________________________|

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Jason Weisberg » Fri, 21 Jul 1995 04:00:00



: : :   mount -t iso9660 /dev/hdc /cdrom
: :     gives error: mount: /dev/hdc is not a block device
: : : should work.  If it's the latter, then use:
: : :   mount -t iso9660 /dev/hd1a /cdrom
: : and this says: mount: mount point /cdrom does not exist
: : Anybody got any suggestions? :-)

: Let me repeat the advice I give several times a week:
: throw out your rotten mount program and get a proper one
: like the one from util-linux-2.4.

: [It will only give correct error messages, as far as I know,
: a great help if you are trying to figure out how to mount something.]

Sounds like you need kernel support for iso9660 and /proc filesystems.

--

                Come See:
                          --The Temple of Failure--
                        Home of the Wheel of DorkDom!
                        http://198.147.97.19/~jweis

 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Ryan Alle » Sun, 30 Jul 1995 04:00:00






> >: : :   mount -t iso9660 /dev/hdc /cdrom
> >: :     gives error: mount: /dev/hdc is not a block device
> >: : : should work.  If it's the latter, then use:
> >: : :   mount -t iso9660 /dev/hd1a /cdrom
> >: : and this says: mount: mount point /cdrom does not exist
> >: : Anybody got any suggestions? :-)

> >: Let me repeat the advice I give several times a week:
> >: throw out your rotten mount program and get a proper one
> >: like the one from util-linux-2.4.

> >: [It will only give correct error messages, as far as I know,
> >: a great help if you are trying to figure out how to mount
> something.]

> >Sounds like you need kernel support for iso9660 and /proc filesystems.

> >--

> >                Come See:
> >                          --The Temple of Failure--
> >                        Home of the Wheel of DorkDom!
> >                        http://198.147.97.19/~jweis

> Make sure that you have /dev/hdc.  I didn't, and had to use MAKEIDE
> that came with kernel 1.2.12 .  

Kernel 1.2.12 ?? This just was just relesed about 24 hours ago.  Is this
MAKEIDE any different from MAKEDEV.ide1 that comes with past 1.2.xx kernels??

-- Ryan Allen

- Show quoted text -

> Hope it helps
> Jay


 
 
 

'mount' say NO iso9660 support and 'cat /proc/filesystems' say YES!!!

Post by Jay Di Silvest » Sun, 30 Jul 1995 04:00:00





>: : :   mount -t iso9660 /dev/hdc /cdrom
>: :     gives error: mount: /dev/hdc is not a block device
>: : : should work.  If it's the latter, then use:
>: : :   mount -t iso9660 /dev/hd1a /cdrom
>: : and this says: mount: mount point /cdrom does not exist
>: : Anybody got any suggestions? :-)

>: Let me repeat the advice I give several times a week:
>: throw out your rotten mount program and get a proper one
>: like the one from util-linux-2.4.

>: [It will only give correct error messages, as far as I know,
>: a great help if you are trying to figure out how to mount
something.]

>Sounds like you need kernel support for iso9660 and /proc filesystems.

>--

>                Come See:
>                          --The Temple of Failure--
>                        Home of the Wheel of DorkDom!
>                        http://198.147.97.19/~jweis

Make sure that you have /dev/hdc.  I didn't, and had to use MAKEIDE
that came with kernel 1.2.12 .  

Hope it helps
Jay

 
 
 

1. df says 'can't read table of mounted filesystems'

I have the SLS release of linux and am having problems with the command df.  It
gives me 'can't read table of mounted filesystems'.  I have a DOS partition on
/dev/hda1 and a linux partition on /dev/hda2 plus the swap partition on
/dev/hda3. I'd like to find out how much space I have on my linux partition.  
Any ideas?  Thanks in advance.

Benjy Edwards.
--


                               Lemon curry?

2. login password

3. select() says there's data, read() says there isn't

4. Please forward this message to comp.os.linux.announce

5. PSAUX mous on laptop broked - help?

6. 'finger' always says 'Never logger in'

7. ipmon cannot start

8. mount says 'device not configured'

9. enhanced real time clock support; how to say 'y'

10. 'insmod st' says "kernel_version needed, but can't be found" ???

11. Problems with pppd - say's kernel doesn't support PPP

12. Novell's copyright issues are 'not important', says SCO ZDNET.co.uk