-3

I'm trying to mount an iso image on my Virtual Machine running QNX.

How do I do this?

I'm using VMWare Player. I've loaded the iso file under player > removable devices > cd/dvd > settings, but I can't find it in my QNX file system.

I'm new to QNX, and to Linux to which it is similar, but I've been able to find most of the Linux commands I will need. However, unless I can find the name of the cd drive, I can't mount it.

GreySage
  • 1,153
  • 19
  • 39

1 Answers1

3

If you use default QNX image then CD-ROM driver does not run automatically. There are two ways for use CD-ROM depending on bus: IDE and SATA. But for iso image, I mean not for use host CD-ROM, you can change the bus of CD-ROM device to IDE and then do these actions:

  1. Run the driver by

    devb-eide cdrom
    
  2. Mount your CD-ROM device by

    mount -t cd /dev/cd0 /cd
    
Dmitry Tabakov
  • 374
  • 1
  • 7
  • What does the -tcd option do? I also can't cd into the directory, although it claims to mount successfully. – GreySage Oct 09 '15 at 18:37
  • @GreySage, -tcd option means filesystem type = "cd", read **-t cd**. See `sloginfo` for investigation, there are many ways what this can be. – Dmitry Tabakov Oct 09 '15 at 20:39