Have you tried creating a USB bootable flash drive? You can burn an ISO using the command line via wodim. To install wodin, Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command below:
sudo apt-get install wodim
Locate your cdrom drives location with following command:
wodim --devices
Command above should give output like the following:
neostream@ubuntuportal:~/Desktop$ wodim --devices
wodim: Overview of accessible drives (1 found) :
-------------------------------------------------------------------------
0 dev='/dev/sg2' rwrw-- : 'ASUS' 'DRW-2014S1T'
-------------------------------------------------------------------------
Using the output from above identify your drive location. In this
example it would be /dev/sg2
, Insert a CD/DVD blank into your CD/DVD
burner, then burn ISO image with following command:
wodim -v dev=/dev/sg2 speed=10 -eject /home/neostream/iso/ubuntu-12.04-desktop-i386.iso
If you want to burn to CD/DVD-RW disc, you can erase it first with
this command:
wodim dev=/dev/sg2 blank=fast
1
1Source:Ubuntu Portal
/var/log/syslog
file? I would speculate that your drive is somehow misconfigured -- uses the wrong driver, or somehow conflicts with another device on your system. – tripleee Jan 16 '13 at 04:39