UltraISO can't make a disk image

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

UltraISO can't make a disk image

Post by DOS4dinner »

Wine 1.1.10
Ubuntu 8.04

I downloaded the trial version of UltraISO from http://www.download.com/UltraISO-Premiu ... 77302.html

I need this to make a bin/cue image for an old DOS game, as no Linux program seems to be able to. (If someone can recommend me a substitue, that would be fantastic too)

Anywho, It installed perfectly and runs fine. It can find my CD drive and can read the CD. However, when I try to make any kind of image (iso, bin/cue, etc) it freezes at a 0% loading screen.

These are the only two lines sent to the terminal:

Code: Select all

fixme:win:LockWindowUpdate ((nil)), partial stub!
err:aspi:SCSI_OpenDevice Failed to open device /dev/sg0: Permission denied
What's wrong? The AppDB indicates that it should work.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

UltraISO can't make a disk image

Post by austin987 »

On Sat, Dec 13, 2008 at 3:28 PM, DOS4dinner <[email protected]> wrote:
Wine 1.1.10
Ubuntu 8.04

I downloaded the trial version of UltraISO from http://www.download.com/UltraISO-Premiu ... 77302.html

I need this to make a bin/cue image for an old DOS game, as no Linux program seems to be able to. (If someone can recommend me a substitue, that would be fantastic too)

Anywho, It installed perfectly and runs fine. It can find my CD drive and can read the CD. However, when I try to make any kind of image (iso, bin/cue, etc) it freezes at a 0% loading screen.

These are the only two lines sent to the terminal:


Code:
fixme:win:LockWindowUpdate ((nil)), partial stub!
err:aspi:SCSI_OpenDevice Failed to open device /dev/sg0: Permission denied
You probably lack read permissions on the raw device, looking at the log.

--
-Austin
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

Re: UltraISO can't make a disk image

Post by DOS4dinner »

austin987 wrote: You probably lack read permissions on the raw device, looking at the log.

--
-Austin
How do I fix it?
James McKenzie

UltraISO can't make a disk image

Post by James McKenzie »

DOS4dinner wrote:
austin987 wrote:
You probably lack read permissions on the raw device, looking at the log.

--
-Austin
How do I fix it?

chmod uog+W /dev/sg0

Maybe?

James Mckenzie
James McKenzie

UltraISO can't make a disk image

Post by James McKenzie »

DOS4dinner wrote:
austin987 wrote:
You probably lack read permissions on the raw device, looking at the log.

--
-Austin
How do I fix it?

chmod uog+wx /dev/sg0

Maybe?

James Mckenzie
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

Post by DOS4dinner »

Ran the command-it failed. I looked in wineconfig and found something...odd.

wineconfig says this:

D: /media/cdrom1
E: /media/disk
f: /cdrom0

However, I only have 2 CD drives. Is this normal?
James McKenzie

UltraISO can't make a disk image

Post by James McKenzie »

DOS4dinner wrote:
Ran the command-it failed. I looked in wineconfig and found something...odd.

wineconfig says this:

D: /media/cdrom1
E: /media/disk
f: /cdrom0

However, I only have 2 CD drives. Is this normal?
Yes. D: is your second CDROM drive and F: is the first. Do you have a
USB attached removable drive (aka Thumb Drive)? That would explain the
E: drive.

James McKenzie
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

Re: UltraISO can't make a disk image

Post by DOS4dinner »

James McKenzie wrote:Yes. D: is your second CDROM drive and F: is the first. Do you have a
USB attached removable drive (aka Thumb Drive)? That would explain the
E: drive.

James McKenzie
I checked E:--it was supposedly a floppy drive that does not exist. I removed from winecfg, but it made no difference.
James McKenzie

UltraISO can't make a disk image

Post by James McKenzie »

DOS4dinner wrote:
James McKenzie wrote:
Yes. D: is your second CDROM drive and F: is the first. Do you have a
USB attached removable drive (aka Thumb Drive)? That would explain the
E: drive.

James McKenzie
I checked E:--it was supposedly a floppy drive that does not exist. I removed from winecfg, but it made no difference.
Your computer's BIOS is reporting that the drive exists. You will have
to disable it there. Since there are so many different computer BIOS
configurations, this is outside of the scope of this project.

James McKenzie
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

Post by DOS4dinner »

Okay...but would this really affect whether or not UltraISO would work? All my other games that need a CD work just fine. I think something else must be wrong.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

DOS4dinner wrote:

Code: Select all

chmod uog+wx /dev/sg0
Ran the command-it failed.
It should be:

Code: Select all

sudo chmod a+rw /dev/sg0
On the side note what you need bin/cue image for? Can't you use standard iso?
DOS4dinner
Level 2
Level 2
Posts: 36
Joined: Thu Aug 07, 2008 3:50 pm

Post by DOS4dinner »

vitamin wrote:
DOS4dinner wrote:

Code: Select all

chmod uog+wx /dev/sg0
Ran the command-it failed.
It should be:

Code: Select all

sudo chmod a+rw /dev/sg0
On the side note what you need bin/cue image for? Can't you use standard iso?
Your command got rid of the error message, but it still doesn't work.

I can't use an iso because the game, Sonic CD, is mixed-mode, meaning it can be read as an audio and a data CD. Unfortunately, iso can only have data.

Any other ideas?
Locked