19
Help burning CDs?
(lemmy.dbzer0.com)
Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.
Yeah I was able to burn a few successfully but not with brasero, found a reddit post where someone was just using cdrecord and I've now wrote a script to just call
cdburner(my script) and just burn all the files in the directory to a disk.Now I just need to figure out how to take the output of
cdrecord -checkdiskwhich givesAnd take the
Detected CD-ROM Drive: /dev/sr1part, or rather just the/dev/sr1part of that in particular, and use that as a variable called $cdrom or something, and pipe that back intocdrecord -v speed=8 dev=$cdrom -audio -pad -nofix *.cdrthat does the burning. At the moment I have to edit the /dev/sd[X] part of the script before I call it.