|
| ||||||||||
| Tags: burn disc, disc burner, linux, linux disc write, mount cd, open source |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| how to burn a CD in Linux
I have query here. I have a laptop which is working on Linux operating system. I have a Windows machine too. But due to virus I system is corrupted. Now I have to burn a disc. The data is available in the USB drive. I can copy paste the data in Linux machine but how to burn the same. I have not seen any application in it which supports disc burning. |
|
#2
| ||||
| ||||
| Re: how to burn a CD in Linux
Above all we must at least understand how data are organized on a medium like a CD or DVD. A detailed explanation is provided on the website how it works. In short, the data format depends on the medium considered and various hardware vendors who have participated in developing the in practice standard. The data contained on a CD or DVD, so in a format specific to the medium and the target platform, are handled directly, creating and copying. The raw data (blocks 0 and 1) form a coherent picture says ~ ISO standard system files. Create an ISO image from a CD (other than an audio CD) by using the dd command. Code: % Dd [if = file] [of = file] [conv = sync] |
|
#3
| ||||
| ||||
| Re: how to burn a CD in Linux
Here is a procedure to create a ISO image file in a Linux. First you can use ISO image with mkisofs command. The command is Code: % Mkisofs-R-r-J-V 'LABEL'-o. / Backup.iso / home / username Code: % Du-sm / home / user name |
|
#4
| ||||
| ||||
| Re: how to burn a CD in Linux
Here are some command which you can use to verify a ISO file. In this way you can check the reliability of the file. The command for the same is % Mount-o loop-t iso9660-o ro. / Backup.iso / mnt / cdrom. In this -o is a loop option to mount an ISO image from the inner loop i.e. (loop)-t iso9660 format of the ISO image, -o ro is the ISO image mounted in drive only, read-only. / bakcup.iso is the image ISO / mnt / cdrom mount point of the image, the directory must exist. Second thing you can also use cdrecord to burn a disc. The command for the same is % Cdrecord speed = X dev = Y, Z, W-v-eject-data. / Backup.iso. Here X is the burn speed and dev = Y, Z, W location of the burner. |
|
#5
| ||||
| ||||
| Re: how to burn a CD in Linux
If you want to burn a multi session disc in Linux then use the below procedure. For the 1st session copy the ISO image to a data CD or create an ISO image burn ISO image with option-multi for cdrecord. The command for the same is - Code: % cdrecord speed =X dev =X,Y,Z -multi -v -eject -data ./backup.iso Code: % cdrecord dev =X,Y,Z -msinfo number1,number2 Code: % mkisofs -R -r -J -C number1,number2 -M /dev/hdc -o . Code: % cdrecord speed =X dev =X,Y,Z -multi -v -eject -data . Code: % cdrecord speed =X dev =X,Y,Z -v -eject -data ./image_2.iso |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "how to burn a CD in Linux" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Burn Zombie Burn companions not working on PlayStation Home | DikraJi | Video Games | 2 | 09-02-2012 03:41 AM |
| Can’t burn file selecting Nero Express to burn the data in multisession Disc? | Dabert | Windows Software | 5 | 08-08-2011 11:16 PM |
| Windows XP: Burner can burn CDs but cannot burn DVDs | Calandar | Windows XP Support | 5 | 12-01-2011 06:48 AM |
| Instability effect due to burn on linux mint 10 | Cadence | Operating Systems | 5 | 04-01-2011 11:05 PM |
| 'Burn Failure' trying to burn a video DVD inside Vista Media Cente | Ken | Vista Help | 10 | 31-05-2008 12:38 PM |