Why am I unable to start my Student Version of MATLAB with the Documentation CD in my CD/DVD Drive on Linux on MATLAB R14SP1 and earlier versions?

1 view (last 30 days)
After a successful installation, MATLAB fails to launch as it is unable to locate the Documentation in the CD-ROM drive. Upon startup, the user receives the following error:
"Please insert Student Version Matlab disk into CDROM and restart
MATLAB."

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 22 Jun 2019
Edited: MathWorks Support Team on 21 Jun 2019
On some Linux systems, mounting the CD is done in a way that doesn’t allow the system to access the safedisc section of the CD-ROM, therefore MATLAB doesn’t start.
1. If your system requires that you have root priviledges to mount a CD-ROM drive, this command should work on most systems:
mount -t iso9660 /dev/cdrom /cdrom
2. To enable nonroot users to mount a CD-ROM drive, include the exec option in your /etc/fstab file as in the following example:
/dev/cdrom /cdrom iso9660 noauto,ro,user,exec 0 0
3. Some users have been able to get the documentation CD to be read successfully by adding the unhide option to their /etc/fstab as in the following example:
/dev/cdrom /cdrom iso9660 noauto,unhide,ro,user,exec 0 0

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!