brasero can't view dvdrw

i can't write dvd disk in brasero, because brasero can't view dvd disk. but in nautilus-cd-burner all ok.

7.2-PRERELEASE. fresh 23/04

anybody - help, pls!
 
yes, all ok. :( nautilus-cd-burner work fine

Code:
#camcontrol devlist
<ASUS DRW-1612BL 1.06>             at scbus0 target 0 lun 0 (pass0,cd0)

from devfs.conf
Code:
perm    cd0     0666
perm    xpt0    0666
perm    pass0   0666
in brasero button "select disk" in dialog clear is disable, when dvdrw disk installed
 
i haven't used brasero yet, but got the same issue trying after your post.
could this be that you need to create the necessary links in /dev to your dvd drive. like /dev/dvd -> /dev/acd0 or /dev/dvdr /dev/dvdrw?

i tried them both but brasero shuts down instead of just not finding the drive and i can't see what brasero actually looks for. i.e. dvd or dvdr or dvdrw to start with

edit - yes it works now , i was just lazy and didn't reboot after adding perm 0666 to devfs.conf

add these to devfs.conf (or just one's you want)

Code:
# Commonly used by many ports
link	acd0	cdrom
link	acd0	dvd
link	acd0	dvdr
link	acd0	dvdrw
link	acd0	cd
link	acd0	cdr
link	acd0	cdrw
brasero found the drive now - just seems a bit slow burning
 
add to devfs.conf both variant - with link to acd0 and cd0 so...
Code:
/dev# ll cd*
crw-rw-rw-  1 root  operator    0,  84 27 апр 09:27 cd0
lrwxr-xr-x  1 root  wheel            4 27 апр 13:12 cdr -> acd0
lrwxr-xr-x  1 root  wheel            4 27 апр 13:13 cdrom -> acd0
lrwxr-xr-x  1 root  wheel            4 27 апр 13:12 cdrw -> acd0
/dev# ll dvd*
lrwxr-xr-x  1 root  wheel  4 27 апр 13:10 dvd -> acd0
lrwxr-xr-x  1 root  wheel  4 27 апр 13:10 dvdr -> acd0
lrwxr-xr-x  1 root  wheel  4 27 апр 13:10 dvdrw -> acd0

nothing change :( brasero don't enable clear disk
 
I'm going to assume brasero uses cdrecord. If that's the case the links should point to /dev/cd0 not acd0.
 
arachnid said:
nothing change :( brasero don't enable clear disk

i don't understand, do you mean clear disk as in erase a re-writable disc or brasero still doesn't find the drive? because that function isn't working on mine too. maybe a problem/bug with brasero? it finds the drive ok with all other functions.
 
i install dvdrw disk with info. in brasero i can't select drive for clear this disk. with cdrw all ok.

with link to cd0 i try too
Code:
# ll /dev/dvd*
lrwxr-xr-x  1 root  wheel  3 27 апр 13:41 /dev/dvd -> cd0
lrwxr-xr-x  1 root  wheel  3 27 апр 13:41 /dev/dvdr -> cd0
lrwxr-xr-x  1 root  wheel  3 27 апр 13:41 /dev/dvdrw -> cd0
with same result - no
 
Did you enable libburn when you build brasero?

# Supports multiple backends: cdrtools, growisofs and libburn(optional).
Note: compiling against libburn is _not_enough. You need to activate the backend through GConf editor at "/apps/brasero/config/libburn_burn and /apps/brasero/config/libburn_iso"
 
device atapicam in kernel
brasero build without libburn

when i start brasero -gb

Code:
(brasero:1534): BraseroBurn-DEBUG: At burn-caps.c:404: Getting blanking flags for Disc 
(brasero:1534): BraseroBurn-DEBUG: At burn-caps.c:407: Blanking not possible: no media
(brasero:1534): BraseroBurn-DEBUG: At burn-caps.c:587: Testing blanking caps for Disc 
(brasero:1534): BraseroBurn-DEBUG: At burn-caps.c:590: no media => no blanking possible

if i run dvd+rw-format under user - blank successful
 
FBSDin20Steps said:
For someone's interest... I have rebuilt brasero with libburn enabled and I've just finished my first burn with it.


Greetz ;)

sorry, but it don't work for me - brasero don't view dvdrw disk :(

add - sorry once more - after add to gconf 2 keys - all ok
may be for other backend need keys too?
 
These are the defaults for brasero:
Code:
[X] NAUTILUS   Enable Nautilus extension
[ ] LIBBURNIA  Enable libburnia plug-ins

This way it depends on cdrtools among others.
cdrtools installs a sample configuration file called "cdrecord.sample" in "/usr/local/etc". For more info look into that file to see what the syntax is and read cdrecord(1).

To make brasero "see" your recording device you should edit "/usr/local/etc/cderecord".

Here is my config for reference:

Code:
# sed '/#/d ; /^$/d' /usr/local/etc/cdrecord
CDR_DEVICE=mydev
CDR_FIFOSIZE=128m
mydev=          2,1,0   -1      128m    burnfree
#


To figure out which is your device use:
Code:
 # cdrecord -scanbus
Cdrecord-Clone 2.01 (i386-unknown-freebsd8.0) Copyright (C) 1995-2004 J�rg Schilling
Using libscg version 'schily-0.8'.
scsibus2:
        2,0,0   200) *
        2,1,0   201) 'HL-DT-ST' 'DVD-RAM GSA-H20L' '1.00' Removable CD-ROM
        2,2,0   202) *
        2,3,0   203) *
        2,4,0   204) *
        2,5,0   205) *
        2,6,0   206) *
        2,7,0   207) *

HTH
 
in last time i don't use brasero - quick and easy use command line. because brasero often and often don't view clean disks
 
Back
Top