2

I installed MATLAB in ubuntu 14.04. When starting it, an error occurred as shown. It says there is no write permission.

matlab startup error

Zanna
  • 70,465

1 Answers1

1

This can happen if the ~/.matlab directory is owned by root. Make yourself owner of the directory:

sudo chown -R $USER: ~/.matlab

This is useful if you have tried to launch MATLAB with sudo or straight from the install.

Reference: Matlab not starting properly on Unix/Linux

Zanna
  • 70,465
Nisheet
  • 973