Results 1 to 10 of 14
I can't seem to figure out how to mount a virtual guide. I have a .Iso of a linux game but I can't get it either on a cd or ...
- 07-24-2007 #1Just Joined!
- Join Date
- Jul 2007
- Posts
- 11
How to do a virtual drive
I can't seem to figure out how to mount a virtual guide. I have a .Iso of a linux game but I can't get it either on a cd or figure out how to mount it to a virtual guide. Any help would be greatly appreciated.
- 07-24-2007 #2Linux Enthusiast
- Join Date
- Jul 2005
- Location
- Maryland
- Posts
- 521
I believe you are trying to mount an .iso image, or want to create a CD out of that image.
If so (in Ubuntu),
to mount image (assuming .iso is in your Home directory) try this:
(in the above command, replace "file.iso" with the name of your .iso file).Code:cd mkdir hd sudo mount -t iso9660 -o loop file.iso hd ls hd
To create a CD, use k3b. Install it if you do not have it:
Then right click on .iso image ==> open it with k3b ==> wait until Md5 Sum finishes calculating ==> Insert empty CD ==> click StartCode:sudo apt-get update sudo apt-get install k3b
- 07-24-2007 #3Just Joined!
- Join Date
- Jul 2007
- Posts
- 11
O.K. I have no idea how to do the code thing, complete newb to this, I just started using linux(ubuntu) about a month ago so still trying to learn.
- 07-24-2007 #4Just Joined!
- Join Date
- Aug 2006
- Posts
- 49
The code thing? You mean enter the code he gave you right?
Click Applications, accessories, terminal.
Type those commands into the terminal.
- 07-24-2007 #5
after opening terminal check yourself that you are in the same directory where your .iso file is located
then issuingwould create a directory named "hd"Code:mkdir hd
thenwould mount your .iso file on to "hd" directoryCode:sudo mount -t iso9660 -o loop file.iso hd
andwould list the filenames present in "hd" directoryCode:ls hd
life is the greatest opportunity that the nature had given you
- 07-24-2007 #6Just Joined!
- Join Date
- Jul 2007
- Posts
- 11
- 07-24-2007 #7Just Joined!
- Join Date
- Jul 2007
- Posts
- 11
ok figured it out, Veilen Dank
- 07-24-2007 #8Just Joined!
- Join Date
- Jul 2007
- Posts
- 11
one last question. How do I get it to run now? it says to do this:
Mount the Heroes III CD and change the current directory to where
it is mounted. Type 'sh setup.sh' to run the install script.
e.g. Log in as root:
mount /mnt/cdrom
cd /mnt/cdrom
sh setup.sh
but when i type the first lime into the terminal it gives me this message:
daffydd@Obergruppenfuhrer:~$ mount /mnt/cdrom
mount: can't find /mnt/cdrom in /etc/fstab or /etc/mtab
I feel so comtarded right now.
- 07-25-2007 #9
where did you mount the ISO? Better, just post the command you used to mount it. The command to run the game should look like this,
sh <where you mounted it>/setup.shPut your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 07-25-2007 #10Linux Enthusiast
- Join Date
- Jul 2005
- Location
- Maryland
- Posts
- 521
If you mounted the .iso image in "hd", then you need to:
Code:cd hd sh setup.sh


Reply With Quote

