Friday, April 18, 2014

easy learn linux command line-part 23

we want to learn, how to use terminal for rip wav files on the CD-ROM, Clean a rewriteable CD or DVD, Burn and Mount ISO images and many other things that you can do it on the Linux Terminal.

this lesson is fun and cool !!!

Have good time with listen to music that play with a command at the command line.


If you like this post, i suggest to visit here for more.

CDROM

Command Description
# cd-paranoia -B rip audio tracks from a CD to wav files   
# cd-paranoia -- rip first three audio tracks from a CD to wav files   
# cdrecord -v gracetime=2 dev=/dev/cdrom -eject blank=fast -force clean a rewritable cdrom   
# cdrecord -v dev=/dev/cdrom cd.iso burn an ISO image   
# gzip -dc cd_iso.gz | cdrecord dev=/dev/cdrom - burn a compressed ISO image   
# cdrecord --scanbus scan bus to identify the channel scsi   
# dd if=/dev/hdc | md5sum perform an md5sum on a device, like a CD   
# mkisofs /dev/cdrom > cd.iso create an iso image of cdrom on disk   
# mkisofs /dev/cdrom | gzip > cd_iso.gz create a compressed iso image of cdrom on disk   
# mkisofs -J -allow-leading-dots -R -V create an iso image of a directory   
# mount -o loop cd.iso /mnt/iso mount an ISO image