Quote:> A small / BIG problem can ya please help..... with my "mount" setup....
> I am using S.u.S.E. Linux 5.3 with KDE... and I like it... But I can't
> mount
> my SCSI CD-ROM.... My controller is supported and I did use it to
> Install linux
> but now I can't mount it. In "YaST" for the mount points I can see it
> but it is grayed out ?
> I treed mounting it form the X Term ( I am ROOT user) with,
> "mount -t iso9660 -r /dev/cdrom /mnt/cdrom" and I get Not a valid block
> device ?
Check that /dev/cdrom is pointing to /dev/scd0
(i.e. do the following command:
ls -l /dev/cdrom
)
If not, you can simply replace in the mount command /dev/cdrom
to /dev/scd0.
But the correct way would be, given that the line below is in fstab,
simply typing
mount /cdrom
You should also check that the directory /cdrom exists, and if not, make one.
mkdir /cdrom
Also, iso9660 file systems should be supported by the kernel - check this
as well.
Quote:> I also did edit my "fstab" file an the line for my CD-ROM is there....
> "/dev/scd0 /cdrom iso9660 ro,noauto,user 0 0"
> so what is going on, do I need to boot with a SCSI kernel, I am booting
> with
Certainly you need SCSI support built in the kernel.
(If you got such a kernel ready, then use it. If not,
make one. Changing a kernel is straightforward, although I don't know
how well kde supports this. )
Quote:> a IDED kernel because I do not have any SCSI hard drives.... also I
> can't mount my darn
> floppy drive as well ??? what is going on ???
That's different story - you should check that /dev/fd0 exists,
then the question is, which type of file system you want to be
there, etc...
Maybe your floppy refuses to mount for the similar to CD reason...
(type of file system unsupported by the kernel, mounting point, wrong
/dev/floppy link, etc)
Dmitrii