https://bugs.winehq.org/show_bug.cgi?id=56087
Olivier F. R. Dierick o.dierick@piezo-forte.be changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |o.dierick@piezo-forte.be
--- Comment #15 from Olivier F. R. Dierick o.dierick@piezo-forte.be --- Hello,
Not going into too much details for this one, I think Wine uses the directory name as the disk label for CD-ROM drive type.
Use ~/Thrillride as the directory to mount the ISO file instead of ~/cd and try again.
I strongly advise you to use a proper disk image mounting tool as it cares for this kind of things and allows Wine to detect virtual CD-ROM devices by itself.
On Debian, I use udisksctl to mount/unmount disk images. It's provided by the 'udisks2' package (also on Archlinux).
To mount a disk image: $ udisksctl loop-setup --file "path/to/image.iso"
The ISO image content is then located in /media/$USER/<disk label> If you run at least one wine command from there, Wine will detect and setup a CD-ROM drive letter for you. If there is no command to run on the CD-ROM, running 'wine --version' once from that directory is enough.
To unmount the disk image after use: $ udisksctl unmount -b "$(/sbin/losetup "path/to/image.iso")"
Regards.