Unix Technical Forum

How to mount CD-RW drive

This is a discussion on How to mount CD-RW drive within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> I recently installed Slack 9.1 from DVD without any probelms, however Slack only detects my DVD drive and not ...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-18-2008, 08:59 PM
Shane Mitchell
 
Posts: n/a
Default How to mount CD-RW drive

I recently installed Slack 9.1 from DVD without any probelms, however
Slack only detects my DVD drive and not my second CD-RW drive. There is
only one CD related entry in /dev i.e. /dev/cdrom. I don't know if this
is a hardware detection problem, or if there is some configuration
required on my part to get it detected.

Any ideas/suggestions would be greatly appreciated

--
[ Shane Mitchell -:- fragile /at/ skynet_dot_ie -:- +353861922853 ]

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-18-2008, 08:59 PM
Colossus
 
Posts: n/a
Default Re: How to mount CD-RW drive

Shane Mitchell wrote:

> I recently installed Slack 9.1 from DVD without any probelms, however
> Slack only detects my DVD drive and not my second CD-RW drive. There is
> only one CD related entry in /dev i.e. /dev/cdrom. I don't know if this
> is a hardware detection problem, or if there is some configuration
> required on my part to get it detected.
>
> Any ideas/suggestions would be greatly appreciated
>


Does your BIOS detect it ? If so, you may need to add this line
in /etc/lilo.conf (if you use lilo as your boot loader):

append="hdx=ide-scsi hdy=ide-scsi"
where x is your DVD and y your CD-RW.

--
Bye,
Colossus

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-18-2008, 09:00 PM
=?ISO-8859-2?Q?=22Jacek_K=2E_B=B3aszkowski=22?=
 
Posts: n/a
Default Re: How to mount CD-RW drive

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Shane Mitchell wrote:
| I recently installed Slack 9.1 from DVD without any probelms, however
| Slack only detects my DVD drive and not my second CD-RW drive. There is
| only one CD related entry in /dev i.e. /dev/cdrom. I don't know if this
| is a hardware detection problem, or if there is some configuration
| required on my part to get it detected.
|
| Any ideas/suggestions would be greatly appreciated
|
Hello,
assuming that all your drives (hard disks, cdrw, dvd) are IDE, you
will notice something like this:

//------------------------------------------
jkb@decadence:~$ ls -l /dev/cdrom
lrwxrwxrwx 1 root root 8 Dec 2 23:35 /dev/cdrom ->
/dev/hdd
//------------------------------------------

/dev/cdrom is only a *symbolic link* to /dev/hdd

I am pretty sure that your cdrw drive is visible as /dev/hdX, where X
depends on the position of your cdrw (primary master, primary slaver,
secondary master or secondary slave would give you X=a, b, c or d).

All you have to do is to symlink i.e. /dev/cdrw to proper device, ie.
//------------------------------------------
jkb@decadence:~$ su
Password:
root@decadence:/home/jkb# ln -s /dev/hdc /dev/cdrw
//------------------------------------------

Of course burning anything is another subject. Reading
/usr/doc/Linux-HOWTOs/CD-Writing-HOWTO (assuming that you have the
Linux-HOWTOs package installed; if not, I suggest installing it i.e.
from your Slackware CD) should be very helpful.

Regards - jkb

- --
Im wyzszy postawisz sobie cel, tym bardziej bedziesz samotny.
(R. Kapuscinski)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE/1a74QhBzeHEgRd4RAoVmAJ0Zjnm5s55oxClhaXD8iXJlu+qEEw CfVHre
rvKCUm9pi2QCUSezSY+pzx0=
=+xyr
-----END PGP SIGNATURE-----

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-18-2008, 09:00 PM
BigMac
 
Posts: n/a
Default Re: How to mount CD-RW drive

On Tue, 09 Dec 2003 12:10:12 +0100, Colossus wrote:

> Shane Mitchell wrote:
>
>> I recently installed Slack 9.1 from DVD without any probelms, however
>> Slack only detects my DVD drive and not my second CD-RW drive. There is
>> only one CD related entry in /dev i.e. /dev/cdrom. I don't know if this
>> is a hardware detection problem, or if there is some configuration
>> required on my part to get it detected.
>>
>> Any ideas/suggestions would be greatly appreciated
>>

>
> Does your BIOS detect it ? If so, you may need to add this line
> in /etc/lilo.conf (if you use lilo as your boot loader):
>
> append="hdx=ide-scsi hdy=ide-scsi"
> where x is your DVD and y your CD-RW.


that's the point. if you need to burn, you need to load the scsi module
for ide drives or sort it out in the kernel:

* Block devices
o turn ON Loopback device support
* ATA/IDE/MFM/RLL support
o IDE, ATA and ATAPI Block devices
+ turn OFF IDE/ATAPI CDROM support
+ turn ON SCSI emulation support
* SCSI support
o turn ON SCSI support
o turn ON SCSI CDROM support
o turn ON Enable vendor specific extensions
o turn ON SCSI generic support
* File Systems
o turn ON ISO 9660 CDROM file system support
o turn ON Microsoft Joliet CDROM extensions

Then the drives will be /dev/sr0 and /dev/sr1. is how do you burn going to
be your next question ? cdrecord and cdrdao are kick ass command line
burning apps ; cdparanoia is an audio ripping tool ; xcdroast is a
graphical interface for cdrecord and cdrdao. check out the man pages for
all these or google.

BigMac
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-18-2008, 09:21 PM
Shane Mitchell
 
Posts: n/a
Default Re: How to mount CD-RW drive

BigMac wrote:

> that's the point. if you need to burn, you need to load the scsi module
> for ide drives or sort it out in the kernel:
>
> * Block devices
> o turn ON Loopback device support
> * ATA/IDE/MFM/RLL support
> o IDE, ATA and ATAPI Block devices
> + turn OFF IDE/ATAPI CDROM support
> + turn ON SCSI emulation support
> * SCSI support
> o turn ON SCSI support
> o turn ON SCSI CDROM support
> o turn ON Enable vendor specific extensions
> o turn ON SCSI generic support
> * File Systems
> o turn ON ISO 9660 CDROM file system support
> o turn ON Microsoft Joliet CDROM extensions
>
> Then the drives will be /dev/sr0 and /dev/sr1. is how do you burn going to
> be your next question ? cdrecord and cdrdao are kick ass command line
> burning apps ; cdparanoia is an audio ripping tool ; xcdroast is a
> graphical interface for cdrecord and cdrdao. check out the man pages for
> all these or google.
>
> BigMac


Thanks BigMac, got that working, and used cdrecord to burn some data to
CD. However, I can't read the CD after burning. Would I be better off
creating an ISO image and burning that, what's the easiest way to do
this under Slack?, I couldn't really make any sense out of the mkisofs
man page , or would I be better off installing k3b for KDE?

Thanks in advance for any advice

--
[ Shane Mitchell -:- fragile /at/ skynet_dot_ie -:- +353861922853 ]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:14 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com