LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How do i use cdrw to copy a download? (https://www.linuxquestions.org/questions/linux-newbie-8/how-do-i-use-cdrw-to-copy-a-download-761684/)

NightSky 10-13-2009 05:42 PM

How do i use cdrw to copy a download?
 
All I need to do is copy downloaded Nvidia video card driver to cd, then open it on my other computer and copy frm cd to desktop using CLI... I don't hav gui tools.

Here are my:

CDrom/ CDwriter settings:

bash-3.1# ls -al /dev|grep hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdr -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdr1 -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdrom1 -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdrw -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdrw1 -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdwriter -> hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdwriter1 -> hdc
brw-rw---- 1 root cdrom 22, 0 2009-10-12 17:02 hdc
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 writer -> hdc
bash-3.1# ls -al /dev |grep hda
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdrom -> hda
lrwxrwxrwx 1 root root 3 2009-10-12 17:02 cdrom0 -> hda
brw-rw---- 1 root cdrom 3, 0 2009-10-12 17:02 hda
bash-3.1# /mnt/cdr
bash: /mnt/cdr: No such file or directory
bash-3.1# /mnt/cdwriter
bash: /mnt/cdwriter: No such file or directory
bash-3.1# mount /dev/hdc /mnt/cdr
mount: mount point /mnt/cdr does not exist

Fstab

bash-3.1# cat /etc/fstab
/dev/hde5 swap swap defaults 0 0
/dev/hde1 / ext3 defaults 1 1
/dev/hde2 /usr ext3 defaults 1 2
/dev/hde4 /home ext3 defaults 1 2
/dev/hde6 /tmp ext3 defaults 1 2
/dev/hde7 /var ext3 defaults 1 2
#/dev/cdrom /mnt/cdrom auto auto,owner,ro 0 0
#/dev/cdr /mnt/cdr auto auto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
bash-3.1#

foodown 10-13-2009 06:28 PM

You need to use mkisofs to create a .iso file, then use cdrecord to burn the iso to a disk.

Example:
Code:

mkisofs -J /path/to/be/root/of/ISO -o isofile.iso
cdrecord -dev=0,0,1 isofile.iso

Be sure to use 'cdrecord -scanbus' first and make sure that you use the correct parameters to point at your CDR.

smeezekitty 10-13-2009 06:50 PM

Quote:

Originally Posted by foodown (Post 3718173)
You need to use mkisofs to create a .iso file, then use cdrecord to burn the iso to a disk.

Example:
Code:

mkisofs -J /path/to/be/root/of/ISO -o isofile.iso
cdrecord -dev=0,0,1 isofile.iso

Be sure to use 'cdrecord -scanbus' first and make sure that you use the correct parameters to point at your CDR.

???
why would you do that? there are plenty of raw file burners for the console

NightSky 10-13-2009 08:57 PM

what is the root of iso?


All times are GMT -5. The time now is 12:55 AM.