stupid_idiot
Group: Members
Posts: 344
Joined: Oct. 2006 |
|
Posted: Aug. 25 2007,00:22 |
|
hi dslrgm: Did you mean to say '/mnt/cdrom1', and not '/cdrom1'? '/cdrom' is where the DSL compressed-loop filesystem image is mounted; '/cdrom1' doesn't exist.
Anyway: '/mnt/cdrom' and '/mnt/cdrom1' exist by default. So it doesn't mean your drive is usable (yet). IIRC, DSL uses '/dev/scd*' even for IDE cdroms, which means all cd drives use scsi emulation by default. This makes sense since scsi emulation is necessary on 2.4.x kernels for cd burning (cdrecord, etc) to work. According to this page (http://tldp.org/HOWTO/SCSI-2.4-HOWTO/sr.html), the device files (on the 2.4 kernel) for usb cdroms are either '/dev/scd*' or '/dev/sr*'. So you could try either one:
Code Sample | mount /dev/scd[*] /mnt/cdrom mount /dev/sr[*] /mnt/cdrom |
Before you do this, check using
that the 'usb-storage' driver is loaded. If not, do
Code Sample | modprobe usb-storage |
before you try to mount. Also, there's alot of information here regarding usb devices: http://www.linux-usb.org/USB-guide/book1.html Subsection - USB mass storage (including cdroms): http://www.linux-usb.org/USB-guide/x498.html
|