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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
01-14-2005, 05:43 AM
|
#1
|
LQ Newbie
Registered: Jan 2005
Location: Genova
Posts: 3
Rep:
|
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 05:46 AM.
|
|
|
01-14-2005, 06:05 AM
|
#2
|
Member
Registered: Aug 2003
Location: Sao Paulo - Brazil
Distribution: Manjaro
Posts: 157
Rep:
|
Do this:
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!
|
|
|
01-14-2005, 07:24 AM
|
#3
|
LQ Newbie
Registered: Jan 2005
Location: Genova
Posts: 3
Original Poster
Rep:
|
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?
|
|
|
01-14-2005, 03:21 PM
|
#4
|
Senior Member
Registered: Oct 2003
Posts: 3,057
Rep:
|
Try this...
mount -t iso9660 -o ro,loop=/dev/loop0 /home/ste/cd.iso /mnt/iso
|
|
|
01-26-2005, 12:37 PM
|
#5
|
Member
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160
Rep:
|
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-27-2005 at 12:04 AM.
|
|
|
01-30-2005, 09:19 AM
|
#6
|
LQ Newbie
Registered: Jan 2005
Location: Genova
Posts: 3
Original Poster
Rep:
|
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 09:20 AM.
|
|
|
01-30-2005, 09:56 AM
|
#7
|
Member
Registered: Dec 2003
Distribution: Gentoo / Sabayon / Suse
Posts: 245
Rep:
|
i have another suggestion for you, in case you'd like to work with a gui:
http://kiso.sourceforge.net/
|
|
|
04-19-2005, 01:25 AM
|
#8
|
Member
Registered: Mar 2003
Location: Colorado
Distribution: Fedora Core 4
Posts: 297
Rep:
|
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?
|
|
|
05-11-2005, 08:36 PM
|
#9
|
LQ Newbie
Registered: May 2005
Distribution: Red Hat Enterprise Linux 3, SuSE 9.2 Pro
Posts: 1
Rep:
|
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
|
|
|
06-03-2005, 03:40 AM
|
#10
|
LQ Newbie
Registered: Mar 2005
Location: Sydney Australia
Distribution: Suse 9.1
Posts: 26
Rep:
|
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 !!!!! :-) :-) :-) :-)
|
|
|
11-19-2005, 05:06 PM
|
#11
|
Member
Registered: Jun 2004
Location: Jackson, TN
Distribution: Kubuntu Feisty
Posts: 606
Rep:
|
so, how does one simply extract the contents of an ISO image by command line?
Thanks,
-myk
|
|
|
03-26-2006, 01:24 AM
|
#12
|
Member
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160
Rep:
|
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 01:05 PM.
|
|
|
03-29-2006, 05:28 PM
|
#13
|
Member
Registered: Jan 2004
Location: New Zealand
Distribution: Mint | Sabayon
Posts: 160
Rep:
|
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!
|
|
|
11-21-2006, 05:14 PM
|
#14
|
LQ Newbie
Registered: Nov 2006
Distribution: Ubuntu
Posts: 16
Rep:
|
I can't seem to not unmount it (on shutdown)
|
|
|
05-09-2007, 10:30 PM
|
#15
|
LQ Newbie
Registered: May 2007
Location: malaysia
Distribution: ubuntu
Posts: 3
Rep:
|
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?
|
|
|
All times are GMT -5. The time now is 06:28 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|