Xfce Multimedia-->Xfburn "no burners are currently available"

2020-03-21_17-51.png


2020-03-21_17-52.png




$ sudo geom disk list
Geom name: cd0
Providers:
1. Name: cd0
Mediasize: 2048 (2.0K)
Sectorsize: 2048
Mode: r0w0e0
descr: MATSHITA DVD-RAM UJ8E2
ident: (null)
rotationrate: unknown
fwsectors: 0
fwheads: 0
 
The error message suggests that you check your read and write access to the drive with the current user. ll /dev/cd*
 
Your DVD driver need access rights. Add in etc/devfs.conf
Code:
perm   /dev/cd0    0666
and in etc/devfs.rules
Code:
add path 'cd[0-9]\*'    mode 0660 group operator
 
Back
Top