MATLAB will not save any files PLEASE HELP MAC OSX
Show older comments
MATLAB will not save any files after I have put up my Firewall. I have tried everything. I contacted MathWorks and they could not help me. I have homework due Friday and I need to know what I have to do to get Matlab to save files again. I have already tried taking down the firewall and that does not work. I have gone so far as uninstall Matlab then reinstall and the files would save, but as soon as my Firewall went back up the problem persisted. PLEASE HELP PLEASE!
3 Comments
John D'Errico
on 26 Aug 2015
I have my firewall up on my Mac, and it works fine. (OSX 10.10.5)
Are you trying to save to a non-local drive, or are you using a networked MATLAB?
Walter Roberson
on 26 Aug 2015
What happens when you attempt to save files? And which directory are you attempting to save them in?
Kamania Ray
on 27 Aug 2015
Answers (1)
the cyclist
on 27 Aug 2015
0 votes
A Google search of "CS 1371" and "MATLAB" suggests you are at Georgia Tech. Can you use the technology support center there to help you?
5 Comments
Kamania Ray
on 27 Aug 2015
Steven Lord
on 27 Aug 2015
What happens when you CD to a different directory (let's try /tmp or /temp or wherever you put temporary files) and try to create a file there? Does it work or does it throw an error?
Walter Roberson
on 27 Aug 2015
Edited: Walter Roberson
on 27 Aug 2015
What happens if you use another method to create the file, such as going into Terminal (look in the Applications / Utilities folder), and at the prompt there, cd to the target directory and then "touch" or otherwise create the desired file. For example,
cd ~/MATLAB
touch newfile.m
echo > newfile2.m
While you are in that directory at the Terminal command window, please show
ls -led .
(The above is a command that ends in space followed by period; those are part of the command)
Kamania Ray
on 27 Aug 2015
Edited: Walter Roberson
on 27 Aug 2015
Walter Roberson
on 27 Aug 2015
Somehow you gained an Access Control List (ACL) on the directory. At the terminal window (as described above) cd to the directory you want to be able to save in to, and then command
chmod -a "group:everyone deny delete" .
where the period is part of the command. Then use
ls -led .
and see if any more entries show up. Once you get down to just something like
drwxr-xr-x 21 roberson staff 5406 13 Aug 00:07 .
with nothing like that "0: group:everyone deny delete" after that line, then all of the ACL have been removed.
It is plausible that your firewall is putting these kinds of ACLs in every time it is run, so you might end up having to do these kinds of commands again later, until you reconfigure the firewall.
Categories
Find more on Downloads in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!