LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-23-2003, 02:10 PM   #1
illtbagu
Member
 
Registered: Dec 2002
Location: Nevada
Distribution: fedora, RHEL, ubuntu, suse
Posts: 343

Rep: Reputation: 30
cdcopy using my dvd rom


trying to use cdcopy ro burn a iso. it keeps trying to use my dvd rom to write with instead of my writer. how can i fix this. what do i need to change in the script to make it use device 0,1,0?

http://jetblackz.freeservers.com/Installingcdcopy.html

here is what i am getting

root@schrock321 joe]# cdcopy

### cdcopy 1.09a Copyright (C) 2002 jet_blackz@lycos.com
### Disclaimer: No warranty of any kind. Hit CTRL C to exit
### Speeds refer to the CD burner and the CDR/W, whichever is slower.
### i.e. To burn a 16x CDR with a 32x10x40 CD burner, choose 16.
### i.e. To burn a 12x CDRW with a 32x10x40 CD burner, choose x10.
### 0) 48x16
### 1) 44x24
### 2) 40x12
### 3) 32x10
### 4) 24x10
### 5) 20x10
### 6) 16x10
### 7) 12x8
### 8) 10x8
### 9) 8x4
### x) 2x2
### What are the CDRxCDRW speeds? (0...9,x):48
### Copying a data (C)D, an (i)so, (m)p3 files or (f)iles? (c/i/m/f):i
### Enter the path, folder and filename:
### Enter the path, folder and filename:/
### Enter the path, folder and filename:mnt
### Enter the path, folder and filename:slack
### Enter the path, folder and filename:
### Enter the path, folder and filename:'/home/joe/Desktop/slackware-9.0-install .iso'
### Enter the path, folder and filename:'/home/joe/Desktop/slackware-9.0-install
### Enter the path, folder and filename:/home/joe/Desktop/slackware-9.0-install.
### Are you inserting a CD(R) or CDR(W)? (r/w):r
### Insert a CDR and hit Enter:
### Writing data CD...
Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jrg Schilling
TOC Type: 1 = CD-ROM
scsidev: '0,0,0'
scsibus: 0 target: 0 lun: 0
Linux sg driver version: 3.1.24
Using libscg version 'schily-0.5'
atapi: 1
Device type : Removable CD-ROM
Version : 0
Response Format: 1
Vendor_info : 'LITEON '
Identifikation : 'DVD-ROM LTD163D '
Revision : 'GHR5'
Device seems to be: Generic mmc CD-ROM.
cdrecord: Sorry, no CD/DVD-Recorder or unsupported CD/DVD-Recorder found on this
### If no errors occur, writing is complete.
### Do you want to make another copy of this CD? (y/n):
 
Old 03-23-2003, 02:23 PM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
does the drive show up if you run "cdrecord --scanbus"? if not you will need to addd scsi emulation for that drive. if that is the case, search this site for information on setting it up.
 
Old 03-23-2003, 02:58 PM   #3
illtbagu
Member
 
Registered: Dec 2002
Location: Nevada
Distribution: fedora, RHEL, ubuntu, suse
Posts: 343

Original Poster
Rep: Reputation: 30
its using the 0,0,0 device instead of the 0,1,0 device

[joe@schrock321 joe]$ su
Password:
[root@schrock321 joe]# cdrecord -scanbus
Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jrg Schilling
Linux sg driver version: 3.1.24
Using libscg version 'schily-0.5'
scsibus0:
0,0,0 0) 'LITEON ' 'DVD-ROM LTD163D ' 'GHR5' Removable CD-ROM
0,1,0 1) 'LITE-ON ' 'LTR-48125W ' 'VS08' 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) *
[root@schrock321 joe]#
 
Old 03-23-2003, 03:30 PM   #4
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
yeah that's what's wrong, it's using the wrong device. not the worlds cleverest script really.... id' suggest either using a real program or just learn to do it manually with cdrecord:
Code:
dd if=/dev/dvd | cdrecord dev=0,1,0 driveropts=burnfree -
personally i'd say that was a lot lot quicker the script you found
 
Old 03-23-2003, 03:39 PM   #5
illtbagu
Member
 
Registered: Dec 2002
Location: Nevada
Distribution: fedora, RHEL, ubuntu, suse
Posts: 343

Original Poster
Rep: Reputation: 30
thanks acid ill take your good advise and forget about the script and just use cdrecord manually.

 
Old 03-23-2003, 08:11 PM   #6
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
in the SCSIBusID="$(cdrecord -scanbus 2>&1 | grep CD | grep R)"
line add GREP -v DVD ;) before grep R :D

Code:
SCSIBusID="$(cdrecord -scanbus 2>&1 | grep CD | grep -v DVD | grep R)"
Cheers,
Tink

Last edited by Tinkster; 03-23-2003 at 08:20 PM.
 
Old 03-23-2003, 11:44 PM   #7
illtbagu
Member
 
Registered: Dec 2002
Location: Nevada
Distribution: fedora, RHEL, ubuntu, suse
Posts: 343

Original Poster
Rep: Reputation: 30
thanks tinkster ill give it a try

AD
 
Old 03-23-2003, 11:51 PM   #8
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
Coasterless CD Buring, a recomended read.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
FC4 shows dvd-rw as cd-rom and cd-rom as cd-rw hjshah Linux - Hardware 1 10-03-2005 05:40 AM
permission denied! floppy cd-rom dvd-rom HELP! OMEGA-DOOM Linux - Software 17 10-15-2004 05:40 PM
DVD-ROM/CD-ROM unable to recognize debain boot CD gottfried Linux - Newbie 2 01-20-2004 12:39 PM
how to add cd-rom, dvd-rom, floppy, hard disk icons on gnome desktop? spyghost Linux - Software 6 09-21-2003 05:44 PM
DVD-ROM not detected CD-RW mistaken as CD-ROM Device DarkXtar Slackware 21 06-02-2003 07:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration