Fedora Linux Support Community & Resources Center
  #1  
Old 7th May 2004, 03:37 AM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
ATAPI-SCSI emulation

Does someone know how to enable that for a CD/DVD burner?
I tried this in grub.conf but it didnt work.
Code:
kernel /vmlinuz-2.6.5-1.351 ro root=LABEL=/ hdd=ide-scsi rhgb quiet
Also "ls -l /dev/cdrom" returns this.
lrwxrwxrwx 1 root root 8 Apr 30 01:00 /dev/cdrom -> /dev/hdd

Edit:
I tried the search function but it didn't return anything.
Edit #2:
I tried to manually load modules. When i tried cdrom and ide_scsi did i get following.
Code:
[root@localhost root]# modprobe cdrom
FATAL: Module cdrom not found.
and
Code:
[root@localhost root]# modprobe ide-scsi
FATAL: Module ide_scsi not found.
lsmod returns this
Code:
Module                  Size  Used by
sr_mod                 13348  0
snd_mixer_oss          13824  2
snd_emu10k1            71172  3
snd_rawmidi            17184  1 snd_emu10k1
snd_pcm                68872  1 snd_emu10k1
snd_timer              17156  1 snd_pcm
snd_seq_device          6152  2 snd_emu10k1,snd_rawmidi
snd_ac97_codec         50436  1 snd_emu10k1
snd_page_alloc          7940  2 snd_emu10k1,snd_pcm
snd_util_mem            3200  1 snd_emu10k1
snd_hwdep               6276  1 snd_emu10k1
snd                    38372  11 snd_mixer_oss,snd_emu10k1,snd_rawmidi,snd_pcm,snd_timer,snd_seq_device,snd_ac97_codec,snd_util_mem,snd_hwdep
soundcore               6112  3 snd
parport_pc             19392  1
lp                      8236  0
parport                29640  2 parport_pc,lp
autofs4                10624  0
sunrpc                101064  1
typhoon                70916  0
floppy                 47440  0
sg                     27552  0
scsi_mod               91344  2 sr_mod,sg
microcode               4768  0
dm_mod                 33184  0
usblp                   9476  0
uhci_hcd               23708  0
button                  4504  0
battery                 6924  0
asus_acpi               8472  0
ac                      3340  0
ipv6                  184288  8
ext3                  102376  2
jbd                    40216  1 ext3
and "cdrecord -scanbus" this
Code:
[root@localhost root]# cdrecord -scanbus
Cdrecord-Clone 2.01a27-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
Note: This version is an unofficial (modified) version with DVD support
Note: and therefore may have bugs that are not present in the original.
Note: Please send bug reports or support requests to <warly@mandrakesoft.com>.
Note: The author of cdrecord should not be bothered with problems in this version.
scsidev: 'ATA'
devname: 'ATA'
scsibus: -2 target: -2 lun: -2
Warning: Using badly designed ATAPI via /dev/hd* interface.
cdrecord: No such file or directory. Cannot open '/dev/hd*'. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

Last edited by Erik-joix; 7th May 2004 at 04:14 AM.
Reply With Quote
  #2  
Old 7th May 2004, 04:31 AM
crackers's Avatar
crackers Offline
Retired Community Manager
 
Join Date: Feb 2004
Location: Seattle, WA, USA
Age: 56
Posts: 3,423
I believe the ide-scsi driver was removed from 2.6 becuse Linus never liked it and thought it was "hacky and inelegant." I seem to remember there was quite a row over this between the kernel hackers and the cdrecord project...
Reply With Quote
  #3  
Old 7th May 2004, 04:46 AM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
So could this mean i wouldn't be able to burn DVD's since K3B and/or X-CD-Roast require this emulation or is there something else?
Reply With Quote
  #4  
Old 7th May 2004, 05:09 AM
Darkmage Offline
Registered User
 
Join Date: Mar 2004
Posts: 462
what is the output of
Code:
ls -la /dev/cd*
Reply With Quote
  #5  
Old 7th May 2004, 05:59 AM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
Code:
lrwxrwxrwx  1 root root     8 Apr 30 01:00 /dev/cdrom -> /dev/hdd
brw-rw----  1 root disk 15, 0 Feb 23 14:02 /dev/cdu31a
brw-rw----  1 root disk 24, 0 Feb 23 14:02 /dev/cdu535
lrwxrwxrwx  1 root root     8 May  6 22:49 /dev/cdwriter -> /dev/hdd
Reply With Quote
  #6  
Old 7th May 2004, 06:35 AM
Darkmage Offline
Registered User
 
Join Date: Mar 2004
Posts: 462
Code:
kernel /vmlinuz-2.6.5-1.351 ro root=LABEL=/ hdd=ide-scsi rhgb quiet
remove hdd=ide-scsi from grub.conf and reboot
At a shell what is the output of
Code:
cdrecord -scanbus
Trying to see if it is any different from the one you posted before.
Reply With Quote
  #7  
Old 7th May 2004, 10:24 PM
kai_t Offline
Registered User
 
Join Date: Nov 2003
Posts: 60
Use cdrecord dev=ATAPI: -scanbus to list all ATAPI devices.

You should be able to specify the device using e.g. dev=ATAPI:0,0,0 or dev=/dev/hdd.

cdrdao supports non-SCSI-emulated ATAPI devices as of version 1.1.8.
Reply With Quote
  #8  
Old 8th May 2004, 05:08 AM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
I removed hdd=ide-scsi from grub.conf and rebooted. The output of "cdrecord -scanbus" is now this.

Code:
[root@localhost root]# cdrecord -scanbus
Cdrecord-Clone 2.01a27-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schi lling
Note: This version is an unofficial (modified) version with DVD support
Note: and therefore may have bugs that are not present in the original.
Note: Please send bug reports or support requests to <warly@mandrakesoft.com>.
Note: The author of cdrecord should not be bothered with problems in this versio n.
scsidev: 'ATA'
devname: 'ATA'
scsibus: -2 target: -2 lun: -2
Warning: Using badly designed ATAPI via /dev/hd* interface.
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.8'.
cdrecord: Warning: using inofficial libscg transport code version (schily - Red Hat-scsi-linux-sg.c-1.80-RH '@(#)scsi-linux-sg.c        1.80 04/03/08 Copyright 1997 J. Schilling').
scsibus1:
        1,0,0   100) *
        1,1,0   101) 'PIONEER ' 'DVD-RW  DVR-106D' '1.08' Removable CD-ROM
        1,2,0   102) *
        1,3,0   103) *
        1,4,0   104) *
        1,5,0   105) *
        1,6,0   106) *
        1,7,0   107) *
Reply With Quote
  #9  
Old 8th May 2004, 05:17 AM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
Quote:
Originally posted by kai_t
Use cdrecord dev=ATAPI: -scanbus to list all ATAPI devices.

You should be able to specify the device using e.g. dev=ATAPI:0,0,0 or dev=/dev/hdd.

cdrdao supports non-SCSI-emulated ATAPI devices as of version 1.1.8.
This is what "cdrecord dev=ATAPI: -scanbus" returns.

Code:
[root@localhost root]# cdrecord dev=ATAPI: -scanbus
Cdrecord-Clone 2.01a27-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
Note: This version is an unofficial (modified) version with DVD support
Note: and therefore may have bugs that are not present in the original.
Note: Please send bug reports or support requests to <warly@mandrakesoft.com>.
Note: The author of cdrecord should not be bothered with problems in this version.
scsidev: 'ATAPI:'
devname: 'ATAPI'
scsibus: -1 target: -1 lun: -1
Warning: Using ATA Packet interface.
Warning: The related libscg interface code is in pre alpha.
Warning: There may be fatal problems.
Using libscg version 'schily-0.8'.
scsibus0:
        0,0,0     0) *
        0,1,0     1) 'PIONEER ' 'DVD-RW  DVR-106D' '1.08' Removable CD-ROM
        0,2,0     2) *
        0,3,0     3) *
        0,4,0     4) *
        0,5,0     5) *
        0,6,0     6) *
        0,7,0     7) *
And "cdrecord dev=/dev/hdd: -scanbus" gives this.

Code:
[root@localhost root]# cdrecord dev=/dev/hdd: -scanbus
Cdrecord-Clone 2.01a27-dvd (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
Note: This version is an unofficial (modified) version with DVD support
Note: and therefore may have bugs that are not present in the original.
Note: Please send bug reports or support requests to <warly@mandrakesoft.com>.
Note: The author of cdrecord should not be bothered with problems in this version.
scsidev: '/dev/hdd:'
devname: '/dev/hdd'
scsibus: -1 target: -1 lun: -1
Warning: Open by 'devname' is unintentional and not supported.
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.8'.
cdrecord: Warning: using inofficial libscg transport code version (schily - Red Hat-scsi-linux-sg.c-1.80-RH '@(#)scsi-linux-sg.c     1.80 04/03/08 Copyright 1997 J. Schilling').
scsibus1:
        1,0,0   100) *
        1,1,0   101) 'PIONEER ' 'DVD-RW  DVR-106D' '1.08' Removable CD-ROM
        1,2,0   102) *
        1,3,0   103) *
        1,4,0   104) *
        1,5,0   105) *
        1,6,0   106) *
        1,7,0   107) *
Quote:
cdrdao supports non-SCSI-emulated ATAPI devices as of version 1.1.8.
To burn DVD's?
Reply With Quote
  #10  
Old 8th May 2004, 09:49 AM
Darkmage Offline
Registered User
 
Join Date: Mar 2004
Posts: 462
To burn a DVD I use K3b in kde but, I am not sure about gnome
Reply With Quote
  #11  
Old 8th May 2004, 09:59 AM
trufflesdad Offline
Registered User
 
Join Date: Dec 2003
Location: UK
Posts: 14
I had exactly this problem and after a lot of editing I find I have to enter into grub
as so after the kernel call...root=LABEL=/ ide-scsi rhgb quiet

This rips a cd ok but as yet not tried a burn....

Ted
Reply With Quote
  #12  
Old 8th May 2004, 04:47 PM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
Quote:
Originally posted by Darkmage
To burn a DVD I use K3b in kde but, I am not sure about gnome
I also tried K3B and X-CD-Roast in KDE but with the same negativ results.
Reply With Quote
  #13  
Old 8th May 2004, 04:48 PM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
Quote:
Originally posted by trufflesdad
I had exactly this problem and after a lot of editing I find I have to enter into grub
as so after the kernel call...root=LABEL=/ ide-scsi rhgb quiet

This rips a cd ok but as yet not tried a burn....

Ted
Can you burn DVD's this way and are you sure that line is correct?
Reply With Quote
  #14  
Old 8th May 2004, 05:42 PM
trufflesdad Offline
Registered User
 
Join Date: Dec 2003
Location: UK
Posts: 14
Before I edited the line I had the same results as you but after the edit 2 cd icons
showed up on the toolbar and I was able to rip a cd and play a cd...I would only take a minute for you to edit menu.lst reboot and find out what happens...
Reply With Quote
  #15  
Old 8th May 2004, 08:14 PM
Erik-joix Offline
Registered User
 
Join Date: May 2004
Location: Berlin, Germany
Age: 36
Posts: 32
Quote:
Originally posted by trufflesdad
....edit menu.lst reboot and find out what happens...
I'm not quite getting why i should do this.
Where's this "menu.lst" file and what's it for?
Reply With Quote
Reply

Tags
atapiscsi, emulation

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Current GMT-time: 13:50 (Saturday, 25-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat