Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ln: /usr/lib/libssl.dylib: Operation not permitted OSX

Tags:

macos

I'm trying to create a symbolic link to /usr/lib but I seems I have not permission, included with root. The system is return that the operations is not permitted.

With Yosemite I worked fine, but with El Capitan it broke :/

Anyone know what I can do?

like image 503
David Luque Avatar asked Oct 02 '15 15:10

David Luque


1 Answers

I had some issues using the linked subl command for Sublime text 3. It was the same issue you encountered, I believe.

Apparently, usr/local does not have the same controls on it. So instead of

ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl

as recommended by Sublime docs,

it was more along the lines of:

ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" usr/local/bin/subl
like image 145
notthehoff Avatar answered Nov 20 '22 21:11

notthehoff