Page 1 of 2

Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Mon Sep 03, 2018 1:57 am
by camjrp
The title says it all. I have the iso images of Red Aler, Dune 200 and Tiberian Dawn.
When i try to install all three games with the advanced install options, the installer can't fin any of the mounted images.
To mount them, im using Furious Iso Mount.
Thanks in advance

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Mon Sep 03, 2018 3:45 am
by Sleipnir
Try mounting the isos on /mount/cdrom.

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Mon Sep 03, 2018 8:51 pm
by camjrp
That is what im'doing
Do you recommend any app in particular

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Tue Sep 04, 2018 10:38 pm
by camjrp
Still can't make it work. Im pretty sure im using the right isos...

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Wed Sep 05, 2018 1:21 pm
by camjrp
anyone...?

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Wed Sep 05, 2018 4:35 pm
by Sleipnir
I'm not familiar with Furious Iso Mount or the XFCE window manager - I know others like Gnome can mount isos directly through the file explorer. Have you checked to see if XFCE has this functionality? Have you tried mounting from the commandline?

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Wed Sep 05, 2018 10:50 pm
by camjrp
Hi Sleipnir. Thanks for the answer
I tried to mount the iso using the terminal. Everything resulted ok, and the iso was mounted properly.
However, the Openra advanced installer still can't detect it :/

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Wed Sep 05, 2018 11:16 pm
by camjrp
Is there a way to indicate to the installer where to search?

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Thu Sep 06, 2018 2:29 am
by Sleipnir
Just to check - are you using the isos that were released as freeware (e.g. from https://cncnz.com/features/freeware-cla ... uer-games/), or something different?

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Thu Sep 06, 2018 10:22 pm
by camjrp
Yes, that are the ones that i'm using ;)

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Tue Sep 11, 2018 2:32 am
by camjrp
still can't manage to do it, i would appreciate some help here

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Tue Sep 11, 2018 5:10 pm
by Matt
Try installing gnome-disk-utility and use the context menu option to mount and dismount iso images.

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Thu Sep 13, 2018 12:57 am
by camjrp
ok i will

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Sun Sep 16, 2018 2:07 am
by camjrp
tried that option and does not work either, again... how can i point the installer where to search?

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

Posted: Sun Sep 23, 2018 7:24 pm
by vapre
./OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs seems to search each drive and after check if is of type cdrom.

similar:

drive_list.cs

Code: Select all

using System;
using System.IO;

public class DriveList
{
        static public void Main()
        {
                var dl =  DriveInfo.GetDrives();
                for (var i = 0; i < dl.Length; i++) {
                        var d = dl[i];
                        if (d.DriveType == DriveType.CDRom) {
                                Console.WriteLine(d);
                        }
                }
        }
}
# Compile
mono-scs drive_list.sc
# Run
mono drive_list.exe
# Should list your cdrom mount path at least.