Yes , you can create .iso image from files and dir.
mkisofs -J -R -v -O filename.iso dir/ O stands for output file and then mount it mount -t filesystem -o loop filename.iso /tempdir Regards, Siddharth Mane --- On Thu, 2/26/09, ramesh_net10 <[email protected]> wrote: From: ramesh_net10 <[email protected]> Subject: [Linux_Mantra] Re: Tip of the day (TOD) To: [email protected] Date: Thursday, February 26, 2009, 5:23 AM thanks for this tip can we create one iso file from files and directories ? --- In Linux_Mantra@ yahoogroups. com, Rahul Kolan <extra...@.. .> wrote: > > MAKE ISO from CD > > > > Sure we all know the command to burn a CD from an ISO with cdrecord: > > > > > > CODE > > > > # cdrecord? dev=/dev/hdc? example.iso > > > > > > > > Now we will reverse the process and I will show you 2 different ways how to make an ISO from a CD: > > > > > > > CODE > > > > # cat /dev/hdc > example.iso > > > > > > And > > > > > > > CODE > > > > # dd if=/dev/hdc of=example.iso bs=2048 conv=notrunc > > > > > > Both commands do exactly the same, but the first one might be easier to remember. > > > > NOTE: You use the /dev device in both cases and not the place where it is mounted ( /mnt ). > > > > > > > > > > > ?Regards > ?????? Raj > > > [Non-text portions of this message have been removed] > [Non-text portions of this message have been removed]

