Burning a CD (Linux/Unix)
Tools to look for on the system:
- Brasero
- K3b
Many systems use CDs to transfer data from the mission system network to the Xylok Scanner host. If your system does not have a graphical tool to create CDs like Brasero, you can manually burn using the following steps:
- Open a terminal
- Make a directory to layout the CD in:
mkdir cdtemp
- Copy the files you want to burn into cdtemp
- Make a CD image:
mkisofs -J -rock -o disk.iso cdtemp
- Become root
- Burn the CD:
cdrecord -vv -eject disk.iso
- Remove the temporary directory and image:
rm -r cdtemp disk.iso