LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-01-2005, 11:32 AM   #1
Bob Vila
LQ Newbie
 
Registered: Nov 2003
Location: USA
Distribution: Slackware 10.1 - Desktop & Fedora Core 3 - Laptop
Posts: 17

Rep: Reputation: 0
mounting .iso as a real cdrom...


I am trying to install and play Jedi Academy, but all i ever have with my laptop is the .iso images of the 2 cd's on my HD because carrying cds is kinda a hassle.

Is there anyway that I can mount the .iso file so as the system/loki installer/game thinks that it is a real cd?

i have tried mounting it like
Code:
mount -o loop jediacad_1_2.iso /media/cdrecorder
but it didn't work

do i need to edit fstab or something?

thanks
 
Old 06-01-2005, 11:37 AM   #2
slightcrazed
Member
 
Registered: May 2003
Location: Lisbon Falls, Maine
Distribution: RH 8.0, 9.0, FC2 - 4, Slack 9.0 - 10.2, Knoppix 3.4 - 4.0, LFS,
Posts: 789

Rep: Reputation: 30
You're installing this with Wine, I assume? I actually did it the same way you are saying, but I had to ammend my wine config file and make it look like I had 2 CDROMS (one for each disk) and point those 2 drives to folders where I mounted each CD. You shouldn't need to edit fstab at all.

Is there a loki installer for this game? If so I have never used it, so I can't help you there.

slight
 
Old 06-01-2005, 11:42 AM   #3
Bob Vila
LQ Newbie
 
Registered: Nov 2003
Location: USA
Distribution: Slackware 10.1 - Desktop & Fedora Core 3 - Laptop
Posts: 17

Original Poster
Rep: Reputation: 0
i am using cedega, but installing the game with the loki installer (http://liflg.org/?page=cat&catid=7).

i don't know where the cedega config file is, but i will try and find it and see what happens
 
Old 06-01-2005, 11:56 AM   #4
Bob Vila
LQ Newbie
 
Registered: Nov 2003
Location: USA
Distribution: Slackware 10.1 - Desktop & Fedora Core 3 - Laptop
Posts: 17

Original Poster
Rep: Reputation: 0
k, i edited my cedega config file, but it still didn't work :-\ i think that the loki installer is trying to install from a cdrom in fstab...
 
Old 06-01-2005, 02:29 PM   #5
slightcrazed
Member
 
Registered: May 2003
Location: Lisbon Falls, Maine
Distribution: RH 8.0, 9.0, FC2 - 4, Slack 9.0 - 10.2, Knoppix 3.4 - 4.0, LFS,
Posts: 789

Rep: Reputation: 30
possible.... you can always change it there, or make a symlink between /dev/cdrom and the directory where you mounted the .iso. That might work. :-)

slight
 
Old 06-01-2005, 04:07 PM   #6
Bob Vila
LQ Newbie
 
Registered: Nov 2003
Location: USA
Distribution: Slackware 10.1 - Desktop & Fedora Core 3 - Laptop
Posts: 17

Original Poster
Rep: Reputation: 0
i edited fstab to look something like this
Code:
/dev/loop0          /images/fakecd            auto           loop,defaults      0  0
and i was able to use the loki installer to install the game, but i still can't play the game from the image... any suggestions?
 
Old 06-01-2005, 04:39 PM   #7
slightcrazed
Member
 
Registered: May 2003
Location: Lisbon Falls, Maine
Distribution: RH 8.0, 9.0, FC2 - 4, Slack 9.0 - 10.2, Knoppix 3.4 - 4.0, LFS,
Posts: 789

Rep: Reputation: 30
It's asking for a CD in the drive to play the game? Honestly, I think I ended up having to find a no-cd crack for it. I don't like it as an option, but seeing as how I did buy the game I didn't feel that bad about it.

good luck m8.


slight
 
Old 06-02-2005, 11:09 PM   #8
Bob Vila
LQ Newbie
 
Registered: Nov 2003
Location: USA
Distribution: Slackware 10.1 - Desktop & Fedora Core 3 - Laptop
Posts: 17

Original Poster
Rep: Reputation: 0
thanks, hadn't thought of that

btw, have you had any problem loading mods on it? on Jedi Outcast, it kicks me out every time i try...
 
Old 06-03-2005, 09:27 AM   #9
slightcrazed
Member
 
Registered: May 2003
Location: Lisbon Falls, Maine
Distribution: RH 8.0, 9.0, FC2 - 4, Slack 9.0 - 10.2, Knoppix 3.4 - 4.0, LFS,
Posts: 789

Rep: Reputation: 30
Honestly, I haven't played in so long I don't remember. I moved on to Jedi Academy pretty quick after Jedi outcast.

slight
 
Old 06-03-2005, 10:55 AM   #10
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
Re: mounting .iso as a real cdrom...

Quote:
Originally posted by Bob Vila
I am trying to install and play Jedi Academy, but all i ever have with my laptop is the .iso images of the 2 cd's on my HD because carrying cds is kinda a hassle.

Is there anyway that I can mount the .iso file so as the system/loki installer/game thinks that it is a real cd?

i have tried mounting it like
Code:
mount -o loop jediacad_1_2.iso /media/cdrecorder
but it didn't work

do i need to edit fstab or something?

thanks
You forgot to tell it what filesystem to use:

mount -o loop -t iso9660 jediacad_1_2.iso /media/cdrecorde
 
Old 06-04-2005, 04:25 AM   #11
mcgrew
Member
 
Registered: May 2005
Location: West Virginia, US
Distribution: Gentoo
Posts: 56

Rep: Reputation: 21
Just a theory, but you might try making a symbolic link from /dev/cdrom to the actual iso file. might work. If it reads the file it should be exactly the same as a cdrom with the cd inside. To create an iso file all you need to do is type
Code:
cat /dev/cdrom > foobar.iso
(this works, I've done it)
so pointing the link to the iso file should work in theory.
 
Old 06-04-2005, 08:08 AM   #12
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
I don't think just adding a symbolic link to an iso file is going to work. Mounting an iso however does work quite nicely and I do it all the time with my Slackware CD isos.
 
  


Reply



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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CDROM mounting problem => /dev/cdrom is not a valid block device Vizy Linux - Hardware 8 11-04-2010 04:46 PM
Mounting an ISO image from a CD different than mounting from HD? NoTiG Linux - Software 4 08-03-2005 04:40 PM
can't mount cdrom (after mounting .iso once, using -o loop) cmbguy Linux - Newbie 4 03-20-2005 11:25 PM
mounting-umounting cdrom in KDE Real-Pain mickeyboa Fedora 1 06-19-2004 04:17 PM
need help real bad getting my cdrom and floppy to work dvdljns Slackware 13 09-30-2003 07:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 01:30 PM.

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