LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-14-2005, 04:43 AM   #1
Steknos
LQ Newbie
 
Registered: Jan 2005
Location: Genova
Posts: 3

Rep: Reputation: 0
Question Explore and Extract ISO to Hard Disk


Hi all!

Two days ago i completely deleted Win from my Lap-Top.

Now I'm looking for a program to Explore and Extract ISO files to the Hard Disk (I don't need to get an ISO from a Cd, I already have the .iso file and I want to explore and extract it in a folder on my HD). In Win I used Craxtion4 (www craxtion com -> "...Craxtion has an ISO Explorer as well which lets you view the contents of an ISO
and extract individual files from it...").

A friend told me that also is possible doing it by command line, is it true? And what that command would be?

Hope someone can help me....

I already found a lot of very useful tips in this forum, thanks everybody writing here

ByEz!

Last edited by Steknos; 01-14-2005 at 04:46 AM.
 
Old 01-14-2005, 05:05 AM   #2
apimente.br
Member
 
Registered: Aug 2003
Location: Sao Paulo - Brazil
Distribution: Mageia
Posts: 155

Rep: Reputation: 23
Do this:
Code:
md /mnt/iso
Code:
mount -o loop -t iso9660 <filename>.iso /mnt/iso
The first command must be done by root.
Use the name of the file in the place of <filename>.

That's all!
 
Old 01-14-2005, 06:24 AM   #3
Steknos
LQ Newbie
 
Registered: Jan 2005
Location: Genova
Posts: 3

Original Poster
Rep: Reputation: 0
Thank you very much, I just tried it:

Code:
[root@Ste Documents]# mount -o loop -t iso9660 /home/ste/cd.iso /mnt/iso
But I get an error Message:

mount: wrong fs type, invalid option, superblock on /dev/loop0 damaged,
or too many file systems mounted
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)

Wich is a translation from the Italian Message I get:

mount: tipo fs errato, opzione non valida, superblocco su /dev/loop0 danneggiato,
o troppi file system montati
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)

What's wrong?
 
Old 01-14-2005, 02:21 PM   #4
homey
Senior Member
 
Registered: Oct 2003
Posts: 3,057

Rep: Reputation: 61
Try this...

mount -t iso9660 -o ro,loop=/dev/loop0 /home/ste/cd.iso /mnt/iso
 
Old 01-26-2005, 11:37 AM   #5
smudge|lala
Member
 
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160

Rep: Reputation: 16
The .iso command is excellent. I had no idea it would be this simple. I do have another question for you though; can you also extract .bin files? Basically we're talking about files ready for burning, as I magine this is what most people use .iso and .bin (with a .cue) file for. I do understand the importance of .cue and similar configuration files, only some utilities can detect the better known .bins without the configs. Is there such a tool under linux? How about trying to specify a standard at the console and just trying it? Can it be done?

mount -o loop -t iso9660 <filename>.so /mnt/iso works flawlessly for me. Now how about .bin files?

Last edited by smudge|lala; 01-26-2005 at 11:04 PM.
 
Old 01-30-2005, 08:19 AM   #6
Steknos
LQ Newbie
 
Registered: Jan 2005
Location: Genova
Posts: 3

Original Poster
Rep: Reputation: 0
I got the solution. Xbox Iso images aren't ISO09660 format:

http://forums.gentoo.org/viewtopic.p...ight=mount+iso

Hope this may be useful to someone other than me

ByEz!

Last edited by Steknos; 01-30-2005 at 08:20 AM.
 
Old 01-30-2005, 08:56 AM   #7
ZaphyR
Member
 
Registered: Dec 2003
Distribution: Gentoo / Sabayon / Suse
Posts: 245

Rep: Reputation: 32
i have another suggestion for you, in case you'd like to work with a gui:
http://kiso.sourceforge.net/
 
Old 04-19-2005, 12:25 AM   #8
fortezza
Member
 
Registered: Mar 2003
Location: Colorado
Distribution: Fedora Core 4
Posts: 297

Rep: Reputation: 30
What about the BIN Files?

I am curious about this too. A few more functions ported over from Windows Virtual Machine to my real Linux box, and I will raraly need the VM ( it still runs my software to back to DVD, we are talking hundreds of GB's so tar won't cut it. ).

So, bin reading/extracting utiltiy anyone?
 
Old 05-11-2005, 07:36 PM   #9
eurovps
LQ Newbie
 
Registered: May 2005
Distribution: Red Hat Enterprise Linux 3, SuSE 9.2 Pro
Posts: 1

Rep: Reputation: 0
I just wanted to say...

YOU ROCK!!

I was looking through Google trying to figure out what was wrong with the syntax (I was trying to run this command slightly differently) and found your post.

You are THE MAN, It's 3:40 AM and .. well .. you know what it's like to be sitting in front of a server at this time trying to move 6 ISO's through tar, bla bla bla, long story. Bottom line you saved me a hell of a lot of time.

I appreciate it.

Vasili
 
Old 06-03-2005, 02:40 AM   #10
pracslipkerm
LQ Newbie
 
Registered: Mar 2005
Location: Sydney Australia
Distribution: Suse 9.1
Posts: 26

Rep: Reputation: 15
Thank You Apimente.br!!!!
I have just downloaded Suse 9.2 iso and was bemoaning the lack of a DVD burner - I was hoping to be able to mount the iso, I had no idea it was so simple .
Thanks Heaps !!!!! :-) :-) :-) :-)
 
Old 11-19-2005, 04:06 PM   #11
mykrob
Member
 
Registered: Jun 2004
Location: Jackson, TN
Distribution: Kubuntu Feisty
Posts: 606

Rep: Reputation: 31
so, how does one simply extract the contents of an ISO image by command line?

Thanks,
-myk
 
Old 03-26-2006, 12:24 AM   #12
smudge|lala
Member
 
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160

Rep: Reputation: 16
Working with filesystem images ISO BIN

Old post (by a couple of months), but if I add the solution, then somone else can figure out how to do it!

Mount the iso anywhere you like using the above command. You don't need to be root if you mount it in your home directory. Once mounted, it becomes an active filesystem, but of ISO9660, rather than ext2,3 VFat or Reiser format, for example. Change into this directory, and if you want to extract the contents, then simply copy or move the contents to another directory. The above command creates a 'mount point', a 'location' where a new filesystem can be mounted. It doesn't matter what type you, it could be gmail filesystme for all that matters.For this example it's an iso9660 because we're talking about mounting a iso9660.

Also check out the power of the dd command here, which also covers ISO management well.

Read the wiki for everything else.

Last edited by smudge|lala; 03-26-2006 at 12:05 PM.
 
Old 03-29-2006, 04:28 PM   #13
smudge|lala
Member
 
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160

Rep: Reputation: 16
Ironically, I can't seem to figure out how to umount it! I issued:

mount -t iso9660 /mnt/sdb1/images/CD1.iso /home/user/ISO_IMAGE_MNT/ -o loop

to mount it, and as it's not listed in fstab, I can't umount it knowing any of the methods I have in my small repertoire. Any tips please!
 
Old 11-21-2006, 04:14 PM   #14
zach014
LQ Newbie
 
Registered: Nov 2006
Distribution: Ubuntu
Posts: 16

Rep: Reputation: 0
I can't seem to not unmount it (on shutdown)
 
Old 05-09-2007, 09:30 PM   #15
rizalman_almasi
LQ Newbie
 
Registered: May 2007
Location: malaysia
Distribution: ubuntu
Posts: 3

Rep: Reputation: 0
ISO image

Hi,
i'm newbie in linux enviro. i have burn to cd a simulator with .iso. i'm using ubuntu on vmware server. i like to run the simulator on the ubuntu platform.how can i do it?
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Boot ISO image from hard disk? AlexV Linux - General 8 02-20-2009 07:34 AM
Boot an iso without a CD off a hard disk? boffin Linux - Software 9 12-31-2007 02:54 PM
Install from hard disk with ISO JermJHart Mandriva 1 11-24-2004 12:50 AM
making a ISO of my hard disk Bradless Linux - General 10 08-17-2004 11:46 AM
mount a .iso or extract a .iso behind user witout access to root easytarget Linux - Newbie 3 09-29-2002 05:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration