Re: [newbie] Cd recorder works but-----

2001-02-05 Thread A V Flinsch

On Sunday 04 February 2001 21:06, you wrote:

Did you rerun lilo  reboot?
can you append the ouptut of 
 ls -la /dev | grep cdr

and 

cdrecord --scanbus 


 Ok did that, no response, its either dumb or broken.

 On Sunday 04 February 2001 06:04 pm, so spoke A V Flinsch:
  On Sunday 04 February 2001 12:56, you wrote:
   I got that part to work, but the cd rom read only drive is not
   recognised by xcdroast, linux will recognise it,
   but not the app because the app wants a scsi drive,
   how would I go about making the first drive as a reader
   get recognised by xcdroast so I can direct copy a cd
   in the reader to the already working burner,
   the reader is not recognised by the app, just linux.
 
  You need to do the same thing that you did to get your burner
  working. Setup your cdrom to be under scsi emulation also.
 
  Note to Mandrake folks --
  This seems to be a common problem. Why not change the install and
  setup programs to automatically setup all ide cd drives as scsi
  emulation?

-- 
Alex
(Go easy on me, I'm a COBOL programmer in real life)




Re: [newbie] Cd recorder works but-----

2001-02-05 Thread Trevor Tate

Why they dont put CDROMs aswell as CDWriters as scsi-emulation by default, is 
anyones guess, anyone know a reason not too? I have had no problems having 
CDROM as ide-scsi
 




Re: [newbie] Cd recorder works but-----

2001-02-05 Thread Vic

Many many 1 thanks!!

It is working I think.

On Monday 05 February 2001 05:00 am, so spoke A V Flinsch:
 On Sunday 04 February 2001 21:06, you wrote:

 Did you rerun lilo  reboot?
 can you append the ouptut of
  ls -la /dev | grep cdr

 and

 cdrecord --scanbus

  Ok did that, no response, its either dumb or broken.
 
  On Sunday 04 February 2001 06:04 pm, so spoke A V Flinsch:
   On Sunday 04 February 2001 12:56, you wrote:
I got that part to work, but the cd rom read only drive is not
recognised by xcdroast, linux will recognise it,
but not the app because the app wants a scsi drive,
how would I go about making the first drive as a reader
get recognised by xcdroast so I can direct copy a cd
in the reader to the already working burner,
the reader is not recognised by the app, just linux.
  
   You need to do the same thing that you did to get your burner
   working. Setup your cdrom to be under scsi emulation also.
  
   Note to Mandrake folks --
   This seems to be a common problem. Why not change the install and
   setup programs to automatically setup all ide cd drives as scsi
   emulation?




Re: [newbie] Cd recorder works but-----

2001-02-04 Thread nlilly


Vic wrote:
I wish to have my cdrom recognised by xcdroast,
the stupid app is looking for a scsi drive and not a /dev/hdb
drive.
What can I do ?

In order to use a cdrom burner you have to use scsi emulation for that
device. Here's how to do it:
Determine what device your burner actually is. listing the /dev directory
should tell you. I have two drives with my burner as the second drive...
lrwxrwxrwx 1 root root
3 Jan 7 08:30 /dev/cdrom -> hdc
lrwxrwxrwx 1 root root
3 Jan 7 08:30 /dev/cdrom2 -> hdd
...//...
brw--- 1 nlilly cdrom
22, 0 Sep 27 06:31 /dev/hdc
brw--- 1 nlilly cdrom
22, 64 Sep 27 06:31 /dev/hdd


Enter into your lilo.conf at the end of the vmlinuz entry
append="hdd=ide-scsi"


Reboot.


After rebooting, issue the following command as root.
modprobe ide-scsi

The entry in lilo preps the system to look for your burner and treat it
as a scsi device. The second installs the emulation module into the
kernel. This will also report the identity of the ide drive as it
progresses.
From this point on the burner will be linked to /dev/scd0 as opposed
to hdd and your fstab will look something akin to the following:[
nlilly@a13c058 nlilly]$ less /etc/fstab
/dev/hda1 / ext2 defaults 1 1
none /dev/pts devpts mode=0620 0 0
/dev/hda7 /home ext2 defaults 1 2
/dev/cdrom /mnt/cdrom
iso9660 user,exec,dev,suid,rw,fs=iso9660 0 0
/dev/scd0 /mnt/cdrom2
iso9660 user,exec,dev,suid,rw,fs=iso9660 0 0
/mnt/floppy /mnt/floppy
supermount user,exec,dev,suid,rw,fs=vfat
0 0
none /proc proc defaults 0 0
/dev/hda6 /usr ext2 defaults 1 2
/dev/hda5 swap swap defaults 0 0
>From this point on the available burning utilities (X-cdroast, e-roaster,
cdrecord, etc.) Will see the drive and be able to use it.
How can I make xcdroast comply?
Good luck!
--
North Lilly
Lan Administrator
School of Library and Information Science
Kent State University
330-672-2782

 The Goddess is Alive and
 Magic is Afoot! 



Re: [newbie] Cd recorder works but-----

2001-02-04 Thread Vic

I got that part to work, but the cd rom read only drive is not
recognised by xcdroast, linux will recognise it,
but not the app because the app wants a scsi drive,
how would I go about making the first drive as a reader
get recognised by xcdroast so I can direct copy a cd
in the reader to the already working burner,
the reader is not recognised by the app, just linux.



On Sunday 04 February 2001 11:35 am, so spoke nlilly:

 In order to use a cdrom burner you have to use scsi emulation for that
 device.  Here's how to do it:
 Determine what device your burner actually is. listing the /dev
 directory should tell you.  I have two drives with my burner as the
 second drive...

  lrwxrwxrwx1 root root3 Jan  7 08:30 /dev/cdrom
  - hdc
  lrwxrwxrwx1 root root3 Jan  7 08:30 /dev/cdrom2
  - hdd
  ...//...
  brw---1 nlilly   cdrom 22,   0 Sep 27 06:31 /dev/hdc
  brw---1 nlilly   cdrom 22,  64 Sep 27 06:31 /dev/hdd

   1. Enter into your lilo.conf  at the end of the vmlinuz entry
  append="hdd=ide-scsi"
   2. Reboot.
   3. After rebooting, issue the following command as root.
  modprobe ide-scsi

 The entry in lilo preps the system to look for your burner and treat it
 as a scsi device.  The second installs the emulation module into the
 kernel.  This will also report the identity of the ide drive as it
 progresses.

 From this point on the burner will be linked to /dev/scd0 as opposed to
 hdd and your fstab will look something akin to the following:[

  nlilly@a13c058 nlilly]$ less /etc/fstab
  /dev/hda1 / ext2 defaults 1 1
  none /dev/pts devpts mode=0620 0 0
  /dev/hda7 /home ext2 defaults 1 2
  /dev/cdrom  /mnt/cdrom  iso9660
  user,exec,dev,suid,rw,fs=iso9660 0 0
  /dev/scd0   /mnt/cdrom2 iso9660
  user,exec,dev,suid,rw,fs=iso9660 0 0
  /mnt/floppy /mnt/floppy supermount
  user,exec,dev,suid,rw,fs=vfat 0 0
  none /proc proc defaults 0 0
  /dev/hda6 /usr ext2 defaults 1 2
  /dev/hda5 swap swap defaults 0 0

 From this point on the available burning utilities (X-cdroast,
 e-roaster, cdrecord, etc.) Will see the drive and be able to use it.

  How can I make xcdroast comply?

 Good luck!

 --
 North Lilly
 Lan Administrator
 School of Library and Information Science
 Kent State University
 330-672-2782

   The Goddess is Alive and
Magic is Afoot!  


Content-Type: text/html; charset="us-ascii"; name="Attachment: 1"
Content-Transfer-Encoding: 7bit
Content-Description: 





Re: [newbie] Cd recorder works but-----

2001-02-04 Thread A V Flinsch

On Sunday 04 February 2001 12:56, you wrote:
 I got that part to work, but the cd rom read only drive is not
 recognised by xcdroast, linux will recognise it,
 but not the app because the app wants a scsi drive,
 how would I go about making the first drive as a reader
 get recognised by xcdroast so I can direct copy a cd
 in the reader to the already working burner,
 the reader is not recognised by the app, just linux.


You need to do the same thing that you did to get your burner working. 
Setup your cdrom to be under scsi emulation also.

Note to Mandrake folks --
This seems to be a common problem. Why not change the install and setup 
programs to automatically setup all ide cd drives as scsi emulation?



-- 
Alex
(Go easy on me, I'm a COBOL programmer in real life)




Re: [newbie] Cd recorder works but-----

2001-02-04 Thread Michael O'Henly

On Sunday 04 February 2001 16:04, A V Flinsch wrote:

 Note to Mandrake folks --
 This seems to be a common problem. Why not change the install and setup
 programs to automatically setup all ide cd drives as scsi emulation?

Mine was set up automatically when I installed 7.2. (Took me months to figure 
out how to do it with Red Hat.)

M.

-- 
Michael O'Henly
TENZO Design