PDA

View Full Version : about device on burning CD



satimis
02-26-2006, 01:19 PM
Hi folks,

On running;
# cdrecord -scanbus
.....
scsibus0:
0,0,0 0) 'AVIXE ' 'PDU01_512 61G2.0' '0.00' Removable Disk
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *

AVIXE was USB pen stick (flash drive)

I tried
# cdrecord dev=0,0,0 blank=all -v -eject
# cdrecord dev=0,1,0 blank=all -v -eject
# cdrecord dev=0,2,0 blank=all -v -eject
# cdrecord dev=ATA:0,1,0 blank=all -v -eject
# cdrecord dev=ATA:0,2,0 blank=all -v -eject
etc.

All failed. Finally I was compelled to run "k3b"

Please advice the correct device. TIA

B.R.
satimis

OErjan
02-26-2006, 06:35 PM
use /dev/hdX where X is the devicename.
something like this

cdrecord speed=1 dev=/dev/hdc -v -eject ./Knoppix4.02.iso
for DVD use

growisofs -dvd-compat -Z speed=1 /dev/hdc=./knoppix.iso
This work in 99% of cases with a 2.6 kernel.
if you type dmesg|grep CD in a console you will see what the CDburner is called.
also sudo cdrecord scanbuss dev=ATAPI might help you.
happy burning[/code]

satimis
02-27-2006, 09:41 AM
Hi OErjan,

Tks for your advice.


use /dev/hdX where X is the devicename.It worked for me.


also sudo cdrecord scanbuss dev=ATAPI might help you.# sudo cdrecord scanbus dev=ATAPI
cdrecord: No write mode specified.
cdrecord: Asuming -tao mode.
cdrecord: Future versions of cdrecord may have different drive dependent defaults.
cdrecord: Continuing in 5 seconds...
Cdrecord-Clone 2.01.01a01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Joerg Schilling
NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord
and thus may have bugs that are not present in the original version.
Please send bug reports and support requests to <cdrtools@packages.debian.org>.
The original author should not be bothered with problems of this version.

cdrecord: Warning: Running on Linux-2.6.12
cdrecord: There are unsettled issues with Linux-2.5 and newer.
cdrecord: If you have unexpected problems, please try Linux-2.4 or Solaris.
scsidev: 'ATAPI'
devname: 'ATAPI'
scsibus: -2 target: -2 lun: -2
Warning: Using ATA Packet interface.
Warning: The related Linux kernel interface code seems to be unmaintained.
Warning: There is absolutely NO DMA, operations thus are slow.
Error: Cannot gain SYS_RAWIO capability.Is cdrecord installed SUID root?
: Operation not permitted
Using libscg version 'ubuntu-0.8ubuntu1'.
cdrecord: Warning: using inofficial version of libscg (ubuntu-0.8ubuntu1 '@(#)scsitransp.c 1.91 04/06/17 Copyright 1988,1995,2000-2004 J. Schilling').
cdrecord: Cannot do inquiry for CD/DVD-Recorder.
cdrecord: Input/output error. test unit ready: scsi sendcmd: fatal error
CDB: 00 C0 00 00 00 00
cmd finished after 0.000s timeout 40sIt did not show up the dev there.

B.R.
satimis

OErjan
02-27-2006, 09:54 PM
huhm then what is this??

scsidev: 'ATAPI'
devname: 'ATAPI'
scsibus: -2 target: -2 lun: -2
otoh, you said that hdX worked so...