VOGONS

Common searches


Mounting directiories as CD-ROMS

Topic actions

First post, by Atrus

User metadata
Rank Newbie
Rank
Newbie

First of all, congratulations to the DOSBOX team for this fantastic project 😉

The mounting directories as cdrom feature, although not complete, is an EXCELLENT idea!The cool thing is that you can mount as cdroms even cd rom's directories! I haven't tried it yet, but i hope that DOSBOX supports DVD-ROM drives. If this is true then imagine this guys:
Put all 7 Phantasmagoria(for example) disks in a single DVD in separate directories and mount each of them as a cd rom drive. Then run the game from the DVD without the need to swap the disks anymore!(of course the game must support multiple cd-rom drives, i think Phantasmagoria does) 😁

Reply 3 of 29, by Dark Knight ez

User metadata
Rank Newbie
Rank
Newbie

why not make ISOs out of all the CDs, and burn those on a DVD.
you can then use a virtual cdrom program like virtual deamon to emulate them as if they were real.

in other words: the "CDs" keep their own label, their own security, and you don't need to mount a folder in dosbox, but an emulated cdrom-drive.

... // bda. very bda!
... // but only if you turn godo into csah.

Reply 4 of 29, by Atrus

User metadata
Rank Newbie
Rank
Newbie

I've never heard of this virtual daemon dark knight,so i'll give it a try, thx!
But this will work for windows games only i believe. There are some games that have many cd's and require DOS only, for example Ripper (6 cd's). (although DOSBOX doesn't run Ripper yet)

Reply 7 of 29, by Guest

User metadata

I've been reading the "read me" file that comes with the ltest release of this superb program.
I am confused as how to set up the virtual CD drive that Daemon Tool, another awesome program, has created.
Will someone kindly trype out a mount of the "G" drive for me, so that I can post it ito the config file?
I've easily gotten the C and A drives in there, but the Daemon drive is giving me fits!
Thanks much! 😎

Reply 9 of 29, by Dark Knight ez

User metadata
Rank Newbie
Rank
Newbie

yep, that's pretty much it.

g being a cdrom-drive in this case...
mount g g:\ -t cdrom

... // bda. very bda!
... // but only if you turn godo into csah.

Reply 10 of 29, by Silent Bob

User metadata
Rank Newbie
Rank
Newbie

I had some problems with BI2, which is copyprotected. Though the original-cd was in the drive the command
mount g g:\ -t cdrom
did not work (= the game did not work). Depending on the games you want to start you might need to connect the mounted directory with a "real" drive:
mount g g:\ -t cdrom -ioctl -usecd 0
This also works with virtual drives created by Daemon-Tools.

Reply 12 of 29, by MiniMax

User metadata
Rank Moderator
Rank
Moderator

How do you mount the CD-ROM?

Try reading this:

http://dosbox.sourceforge.net/wiki/index.php? … +find+its+CDROM

Perhaps it will help??

DOSBox 60 seconds guide | How to ask questions
_________________
Lenovo M58p | Core 2 Quad Q8400 @ 2.66 GHz | Radeon R7 240 | LG HL-DT-ST DVDRAM GH40N | Fedora 32

Reply 13 of 29, by Silent Bob

User metadata
Rank Newbie
Rank
Newbie

I got the same problem when installing Privateer from floppy disk. After replacing a disk with the next one the installation does not go on. It seems that it still "thinks" that the first disk is in the drive. Maybe it's the same for CD.
Unfortunatly I did not find a solution yet.

Reply 14 of 29, by MiniMax

User metadata
Rank Moderator
Rank
Moderator

Try CTRL-F4 and/or the rescan command.

DOSBox 60 seconds guide | How to ask questions
_________________
Lenovo M58p | Core 2 Quad Q8400 @ 2.66 GHz | Radeon R7 240 | LG HL-DT-ST DVDRAM GH40N | Fedora 32

Reply 15 of 29, by esteela

User metadata

thank you minimax for pointing out that help page, it's great info.

I have copied all files from the Phantasmagoria cd's into seperate directory's. but I still dont really understand how I can mount those directory's to let dosbox think they are cd's.

How can I mount those directories so I don't have to switch cd's?

Reply 16 of 29, by MiniMax

User metadata
Rank Moderator
Rank
Moderator

I am not sure - I have never used DOSBox with multi-CD games. It seems to me, that you have two options:

1. Use the real, physical CD's
1.1) When the game wants CD #2, eject CD #1.
1.2) Insert CD #2.
1.3) Wait for the drive to spin up and spin down (watch the lights).
1.4) Press CTRL-F4 (which should cause DOSBox to re-read the CD-info.
1.5) Tell the game (Phantasmagoria) that you have changed CD's.

2. Copy the CD's to your harddisk, in 2 separate directories
2.1) Mount the directories as 2 separate drives:

Z:\> mount D "C:\Some\Path\To\Dir\CD1" -t cdrom
Z:\> D:
D:\> dir

D:\> mount E "C:\Some\Path\To\Dir\CD2" -t cdrom
D:\> E:
E:\> dir

2.2) When the game wants CD #2, tell it to look at E: instead of D:

Perhaps you can include more details (screenshots?) of how the game is asking for CD 2?

Edit: Fixed an error in the mount command. -type should be -t.

Last edited by MiniMax on 2004-12-12, 00:49. Edited 2 times in total.

DOSBox 60 seconds guide | How to ask questions
_________________
Lenovo M58p | Core 2 Quad Q8400 @ 2.66 GHz | Radeon R7 240 | LG HL-DT-ST DVDRAM GH40N | Fedora 32

Reply 17 of 29, by Guest

User metadata

with this script the game runs:

mount c c:\
mount e c:\phan1\cd1 -type cdrom
c:
cd sierra
cd scarydos
phcd

but I have to mount more than one directory (because there are more cd's)
so I use this script:

mount c c:\
mount e c:\phan1\cd1 -type cdrom
mount d c:\phan1\cd2 -type cdrom
c:
cd sierra
cd scarydos
phcd

but dosbox won't mount to the letter "d".
how can I mount more than one directory?