Koozali.org: home of the SME Server
Legacy Forums => Experienced User Forum => Topic started by: stiperstones on July 20, 2004, 10:25:07 AM
-
Hi everyone
Could you please help i need to copy some files from the cdrom what is the command to mount the cdrom
thanks in advance
Alan Stokes
-
# mount /mnt/cdrom
-
Bash says that mount/mnt/cdrom not found using sme 6.0
trying to mount cdrw unit
Alan Stokes
-
Just to be crystal clear... There is a "space" after mount
# mount /mnt/cdrom/
Best rgds, Ergin
-
Snippet from terminal
[root@server root]# mount /mnt/cdrom
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
[root@server root]# mount /mnt/hdc
mount: can't find /mnt/hdc in /etc/fstab or /etc/mtab
[root@server root]# mount /mnt/dev/cdrom
mount: can't find /mnt/dev/cdrom in /etc/fstab or /etc/mtab
[root@server root]# mount /mnt/dev/hdc
mount: can't find /mnt/dev/hdc in /etc/fstab or /etc/mtab
[root@server root]# ls -lah /dev/cdrom
lrwxrwxrwx 1 root root 8 Jun 1 19:11 /dev/cdrom -> /dev/hdc
As you can see above results i am stuck
this is my setup
P111 700
512 ram
250ghz hard drive running on a ultra ata 133 controller pci
creative cdrw on ide 2nd ide controller as master
yours in advance
Alan Stokes
-
May be a mistalke but when i do a ls -lah /dev/cdrom i get the following::
lrwxrwxrwx 1 root root 9 May 15 18:02 /dev/cdrom -> /dev/scd0
Notice the /dev/scd0 as oppsoed to /dev/hdc u get?
-
Hiya, for the record I have a SCSI (elderly 4x) CDROM and tried mounting to see if it would work - got the same error message.
It is listed in mnt but mount /mnt/cdrom doesn't work. Linux treats SCSI hard drives differently, is it the same with CDROM's?
-
For ls -lah /dev/cdrom, I get...
lrwxrwxrwx 1 root admin 9 Dec 21 2003 /dev/cdrom -> /dev/scd0
When I first set up the machine, I had to adjust the fstab file to make certain the settings were correct. Here is what I have in my fstab for cdrom...
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0
hth,
- Mark
-
Has anyone found a solution to this?
I too have to access the cdrom drive but cannot, what gives? Thanks
-
A quick google reveals that on a normal system uses hdc as a symbolic link to /mnt/cdrom
My system has a second drive mounted to /mnt/hdc although I'm not sure this would be the case for a scsi CDrom?
Slipperstones - anything unusual about your setup?
pico /etc/fstab shows
LABEL=/1 / ext3 usrquota,grpquota $
LABEL=/boot1 /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda2 swap swap defaults 0 0
/dev/hdc1 /home/e-smith/files ext3 usrquota,grpquota 1 2
Perhaps a guru can spot something
-
Typical, just answered my own question (I hate it when someone says that to me).
I have updated /etc/fstab to show
/dev/scd0 /mnt/cdrom iso9660 noauto,owner,ro 0 0
note the /dev/scd0 to denote the first scsi device.
Not sure if this will fix anyone else's problem though, but I hope so.
-
Typical, just answered my own question (I hate it when someone says that to me).
I have updated /etc/fstab to show
/dev/scd0 /mnt/cdrom iso9660 noauto,owner,ro 0 0
note the /dev/scd0 to denote the first scsi device.
Not sure if this will fix anyone else's problem though, but I hope so.
This will fix anyones problem who has a scsi drive.
For ide drives the devices run as follows.
Primary Master /dev/hda
Primary Slave /dev/hdb
Secondary Master /dev/hdc
Secondary Slave /dev/hdd
ect.
If you don't know which device your cdrom or
cdrw is set to, go through the last three,
however, you should be able to spot it when
you reboot your system. Hit the pause key
when the bios system window comes up showing
the drives and memory. The empty ide drives
are the ones you will need to use. So if your
drive is connected to the primary master ide,
then you know that ide port is not your cdrom
drive.
Scott