Xfce Wiki

Sub domains
 

This is an old revision of the document!


Xfburn


Xfburn is a simple CD/DVD burning tool based on libburnia libraries. It can blank CD/DVD(-RW)s, burn and create iso images, audio CDs, as well as burn personal compositions of data to either CD or DVD. It Is stable, and under ongoing development.

The current version is 0.6.2, released on 2020-03-07. This release fixes a number of smaller bugs and uses more modern libraries for improved compatibility with today's software.

For more detailed information please have a look at the README or the NEWS file.


Burn Composition
:apps:xfburn-0.4.1.jpg


Debugging

If xfburn crashes, freezes, or somehow makes no progress for you, then you can help greatly in debugging the problem. It does require you to build xfburn from the sources, and to install gdb. If you can handle that, here are the exact instructions:

1. Rebuild xfburn with debugging support - grab the sources, and run (you can update

 `-j4` to match your core count):
 ```
 $ autoconf
 $ ./configure && make clean all -j4
 ```

2. Enable core dumps, then run xfburn until it hangs, or crashes:

 ```
 $ ulimit -c unlimited; xfburn/xfburn 2>&1 | tee xfburn.output
 ```

3. From another terminal, kill xfburn (only if it hasn't crashed already, of coures)

 ```
 $ kill -SEGV `pidof xfburn` 
 ```

4. Get a backtrace from the coredump:

 ```
 $ gdb xfburn/xfburn core.32270 --batch -ex 'thread apply all bt' > xfburn.backtrace
 ```
 (Note that sometimes the core.xxxxxx file is just called core, and that 32270 is
  just an arbitrary number which was the process id - yours will be different)

5. Open up a bug report at our [issue tracker](https://bugzilla.xfce.org/) for xfburn, and add

 both the xfburn.output and the xfburn.backtrace files to it. Done!
 There is no need to attach the core dump, as it is heavily system dependent.

Back to Top —-

Latest Release

0.6.2 (201920307)

xfburn-0.6.2.tar.bz2

Previous Versions

We recommend to use a packaged version of Xfburn if it is available. Xfburn is packaged for several distributions, for example:

And probably many more…


Source Code Repository

Reporting Bugs


Authors

  • David Mohr [david at mcbf.net]
  • Mario Đanić [mario.danic at gmail.com]
  • (retired) Jean-François Wauthy [pollux at xfce.org]
  • Rene Kjellerup [rk.katana.steel at gmail.com]

Back To Top


Back to main Xfce documentation page