2

I am attempting (and failing) to install MATLAB on Ubuntu 14.04 LTS. The guide given here is clear except that I cannot find the location of the mounted folder.

I downloaded an iso file from the web and it is sitting in my Downloads. I Right-Clicked it and opened it with Archive Mounter. It now appears as a folder on the left hand panel (with an eject option).

The next step for me would be to find the mounted folder from the terminal and run the install file, however I can't find any path to put in the terminal.

I have been using Linux for 2 days so sorry if this demonstrates a complete misunderstanding.

Matta
  • 145

1 Answers1

2

Mount the iso by command line:

sudo mount -o loop myIsoFile.iso /media/iso

then you will know were you mounted it.

Bruni
  • 10,542
  • Hi Bruni, I did that and the path I got was this: archive://file%253A%252F%252F%252Fhome%252Futher%252FDownloads%252FR2015a-glnxa64.iso/ which seems nonsensical to me. I put it in the terminal and it said it didn't exist. – Matta May 14 '15 at 13:04
  • @Matta just changed my answer to something that should work. – Bruni May 14 '15 at 13:14