Cannot mount Matlab 2018a

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I am using Ubuntu 18.04, and trying to moutn Matlab ISO using the following command:



sudo mount R2018a_glnxa64_dvd1.iso /mnt/cdrom -o loop


But terminal is responding back as:



mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.


I am not sure as to what this means and how to take it forward.










share|improve this question























  • Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:19














up vote
0
down vote

favorite












I am using Ubuntu 18.04, and trying to moutn Matlab ISO using the following command:



sudo mount R2018a_glnxa64_dvd1.iso /mnt/cdrom -o loop


But terminal is responding back as:



mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.


I am not sure as to what this means and how to take it forward.










share|improve this question























  • Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:19












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using Ubuntu 18.04, and trying to moutn Matlab ISO using the following command:



sudo mount R2018a_glnxa64_dvd1.iso /mnt/cdrom -o loop


But terminal is responding back as:



mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.


I am not sure as to what this means and how to take it forward.










share|improve this question















I am using Ubuntu 18.04, and trying to moutn Matlab ISO using the following command:



sudo mount R2018a_glnxa64_dvd1.iso /mnt/cdrom -o loop


But terminal is responding back as:



mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.


I am not sure as to what this means and how to take it forward.







loop-device matlab






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 15 at 7:59









RalfFriedl

3,7001523




3,7001523










asked Aug 15 at 7:46









Sayantan Datta

11




11











  • Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:19
















  • Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:19















Could you post output of the command: file R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:19




Could you post output of the command: file R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:19










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Create /mnt/cdrom directory first:



mkdir -p /mnt/cdrom


Afterwards mount the iso-image with absolute image path, for example /home/user/R2018a_glnxa64_dvd1.iso instead of just R2018a_glnxa64_dvd1.iso:



sudo mount -o loop /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


If the directory /mnt/cdrom exists, get more info about your iso-image:



file R2018a_glnxa64_dvd1.iso


and try to mount with explicit filesystem type, for example:



sudo mount -o loop -t iso9660 /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


Additionally read my answer at Askubuntu, possibly your image has a boot sector, then mount it with offset option which should be calculated first.






share|improve this answer






















  • Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:19











  • @SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:20










  • R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
    – Sayantan Datta
    Aug 15 at 8:22










  • @SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:26










  • So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:29











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f462685%2fcannot-mount-matlab-2018a%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













Create /mnt/cdrom directory first:



mkdir -p /mnt/cdrom


Afterwards mount the iso-image with absolute image path, for example /home/user/R2018a_glnxa64_dvd1.iso instead of just R2018a_glnxa64_dvd1.iso:



sudo mount -o loop /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


If the directory /mnt/cdrom exists, get more info about your iso-image:



file R2018a_glnxa64_dvd1.iso


and try to mount with explicit filesystem type, for example:



sudo mount -o loop -t iso9660 /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


Additionally read my answer at Askubuntu, possibly your image has a boot sector, then mount it with offset option which should be calculated first.






share|improve this answer






















  • Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:19











  • @SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:20










  • R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
    – Sayantan Datta
    Aug 15 at 8:22










  • @SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:26










  • So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:29















up vote
0
down vote













Create /mnt/cdrom directory first:



mkdir -p /mnt/cdrom


Afterwards mount the iso-image with absolute image path, for example /home/user/R2018a_glnxa64_dvd1.iso instead of just R2018a_glnxa64_dvd1.iso:



sudo mount -o loop /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


If the directory /mnt/cdrom exists, get more info about your iso-image:



file R2018a_glnxa64_dvd1.iso


and try to mount with explicit filesystem type, for example:



sudo mount -o loop -t iso9660 /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


Additionally read my answer at Askubuntu, possibly your image has a boot sector, then mount it with offset option which should be calculated first.






share|improve this answer






















  • Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:19











  • @SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:20










  • R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
    – Sayantan Datta
    Aug 15 at 8:22










  • @SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:26










  • So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:29













up vote
0
down vote










up vote
0
down vote









Create /mnt/cdrom directory first:



mkdir -p /mnt/cdrom


Afterwards mount the iso-image with absolute image path, for example /home/user/R2018a_glnxa64_dvd1.iso instead of just R2018a_glnxa64_dvd1.iso:



sudo mount -o loop /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


If the directory /mnt/cdrom exists, get more info about your iso-image:



file R2018a_glnxa64_dvd1.iso


and try to mount with explicit filesystem type, for example:



sudo mount -o loop -t iso9660 /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


Additionally read my answer at Askubuntu, possibly your image has a boot sector, then mount it with offset option which should be calculated first.






share|improve this answer














Create /mnt/cdrom directory first:



mkdir -p /mnt/cdrom


Afterwards mount the iso-image with absolute image path, for example /home/user/R2018a_glnxa64_dvd1.iso instead of just R2018a_glnxa64_dvd1.iso:



sudo mount -o loop /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


If the directory /mnt/cdrom exists, get more info about your iso-image:



file R2018a_glnxa64_dvd1.iso


and try to mount with explicit filesystem type, for example:



sudo mount -o loop -t iso9660 /home/user/R2018a_glnxa64_dvd1.iso /mnt/cdrom


Additionally read my answer at Askubuntu, possibly your image has a boot sector, then mount it with offset option which should be calculated first.







share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 15 at 8:30

























answered Aug 15 at 8:06









Bob

72017




72017











  • Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:19











  • @SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:20










  • R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
    – Sayantan Datta
    Aug 15 at 8:22










  • @SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:26










  • So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:29

















  • Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:19











  • @SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:20










  • R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
    – Sayantan Datta
    Aug 15 at 8:22










  • @SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
    – Bob
    Aug 15 at 8:26










  • So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
    – Sayantan Datta
    Aug 15 at 8:29
















Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
– Sayantan Datta
Aug 15 at 8:19





Hi. Thanks for the answer but it is giving me the same error: mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
– Sayantan Datta
Aug 15 at 8:19













@SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:20




@SayantanDatta Could you post output of the command: file R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:20












R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
– Sayantan Datta
Aug 15 at 8:22




R2018a_glnxa64_dvd1.iso: ISO 9660 CD-ROM filesystem data 'MATHWORKS_R2018A'
– Sayantan Datta
Aug 15 at 8:22












@SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:26




@SayantanDatta I have edited my answer. You have to add absolute path to image, for example: /home/user/R2018a_glnxa64_dvd1.iso - not just R2018a_glnxa64_dvd1.iso
– Bob
Aug 15 at 8:26












So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
– Sayantan Datta
Aug 15 at 8:29





So, I tried doing that and the error still persists - mount: /mnt/cdrom: failed to setup loop device for R2018a_glnxa64_dvd1.iso.
– Sayantan Datta
Aug 15 at 8:29


















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f462685%2fcannot-mount-matlab-2018a%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Christian Cage

How to properly install USB display driver for Fresco Logic FL2000DX on Ubuntu?