How use the cdrw and mkisofs command...


 
Thread Tools Search this Thread
Operating Systems Solaris How use the cdrw and mkisofs command...
# 1  
Old 04-21-2010
How use the cdrw and mkisofs command...

Hi Guys.

I am trying to tranfer the explorer output to a CD ....

But I have serious doubt about use the cdrw and mkisofs command.. with the proupose of to make and tranfer the contents.

Thank in Advance.

AGADEA
# 2  
Old 04-22-2010
What are your doubts ?
Use mkisofs to create an ISO image file then cdrw to record it. Something like:
Code:
$ mkisofs -v -J -d -max-iso9660-filenames -N -V myCd -nobak -relaxed-filenames -allow-lowercase -allow-multidot -iso-level 4 -D -o cd.iso directory
$ cdrw -i cd.iso

# 3  
Old 04-22-2010
Thanks Illiagre.....

HEY jean,

I could like to know if can tranfer the explorer-out to CD...

Because i have seriouly problem with the network card....and need to get the file....

Thank in Advance....
# 4  
Old 04-22-2010
Quote:
Originally Posted by aggadtech08
HEY jean,
Actually Jean-Louis Smilie
Quote:
I could like to know if can tranfer the explorer-out to CD...
Sure, why won't you ?
# 5  
Old 04-22-2010
Sorry...

I dont know the correct use of the command....could said me how use cdwr to copy the explorer on the cd?

Thanks again...
# 6  
Old 04-22-2010
I posted in #2 https://www.unix.com/302415134-post2.html an example of how to use both of the commands you need to use to achieve what you want.

The parts in italic are the one you need to adjust depending on what directory you want to record (i.e. choose a directory that contains the explorer output) and what filename you choose for the iso (you can use explorer.iso if you like).
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

passing command output from one command to the next command in cshell

HI Guys, I hope you are well. I am trying to write a script that gets executed every time i open a shell (cshell). I have two questions about that 1) I need to enter these commands $ echo $DISPLAY $ setenv $DISPLAY output_of_echo_$display_command How can i write a... (2 Replies)
Discussion started by: kaaliakahn
2 Replies

2. Shell Programming and Scripting

mkisofs to create iso

Hi all, I got the following problem. I run this command. mkisofs -o mynew.iso -l -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table base images isolinux pc_doc and I get all files from base, images, isolinux and pc_doc in the root dir of the iso. I want a... (2 Replies)
Discussion started by: stinkefisch
2 Replies

3. Shell Programming and Scripting

Mp3 backup using find, mkisofs

Hi. I want to create a Linux script to find all local mp3 files, create an ISO image. Later I will attempt to use growisofs Something like this: find ~ -name "*.mp3" | xargs mkisofs -o musicbackup tried variations on this but no luck. (4 Replies)
Discussion started by: lancest
4 Replies

4. UNIX for Dummies Questions & Answers

Help with mkisofs

Hello, I am attempting to recreate an iso from a set of files. At this point I seem to be stuck on the creation process. I have reviewed man mkisofs, which returns genisofs. Below is the actual command, and what each piece of information seems to provide mike@presario:~$ sudo mkisofs -V... (2 Replies)
Discussion started by: mg92865
2 Replies

5. UNIX for Dummies Questions & Answers

What happened to mkisofs ?

I've been using a mkisofs line like this for years without problem # mkisofs -J -R -V 'Vol Label' -o /output/path/FILE.ISO /input/path/ Now, however, it gives a UTR-8 character message at the start INFO: UTF-8 character encoding detected by locale settings. Assuming UTF-8... (0 Replies)
Discussion started by: Bobby
0 Replies

6. SuSE

inconsistent ls command display at the command prompt & running as a cron job

Sir, I using the following commands in a file (part of a bigger script): #!/bin/bash cd /opt/oracle/bin ls -lt | tail -1 | awk '{print $6}' >> /tmp/ramb.out If I run this from the command prompt the result is: 2007-05-16 if I run it as a cron job then... (5 Replies)
Discussion started by: rajranibl
5 Replies

7. Shell Programming and Scripting

CDRW Backup

Hi guys, i have just written a bourne shell cd-rw backup script to backup files in the the cd-rw. Anyone know how to check whether there is any cd-rom in the cd writer, whether the cd-rom is full? Are there are commands? Thanks in advance. (0 Replies)
Discussion started by: sagolo
0 Replies

8. Solaris

mkisofs and long file names

Well im using mkisofs to create iso images in Solaris 10 and then i use cdrw -i to burn the images to the cd the problem which i noticed recent ( im new to mkisofs) i noticed its break the long file names making them shorter i searched in its help and i find two parameters one -l and one... (2 Replies)
Discussion started by: XP_2600
2 Replies

9. UNIX for Advanced & Expert Users

ISO creation problem :-: mkisofs

Hi, I am trying to burn a directory containing some install scripts/executables etc onto a cd. I am using redhat v7.0. I have tried using mkisofs, but so far have not been able to get the case of the filenames to be correct. one file is called: startInstaller but it always comes out as... (1 Reply)
Discussion started by: ghoti
1 Replies
Login or Register to Ask a Question